
HTML - HyperText Markup Language (Linguagem de Marcação de Hipertexto);
Os arquivos .html podem ser visualizados em qualquer navegador (como Google Chrome, Safari, ou Mozilla Firefox);
O código pode ser escrito com ajuda de qualquer editor de texto. Uma página em HTML consiste em uma série de tags (ou elementos) que basicamente são os blocos de código para construção das páginas. Dessa forma, esses tags são a maneira com a qual o HTML faz a marcação dos conteúdos, criando a hierarquia e a estrutura do mesmo, dividido entre seções, parágrafos, cabeçalhos, entre outros;
A maioria dos elementos do documento HTML são compostos por uma estrutura de abertura e uma de fachamento, como <tag> e </tag>. Há também tags de estrutura única, como a tag <br/> que realiza uma quebra de linha;
Um documento HTML deve conter uma declaração informando o doctype, que no caso do HTML5, basta declarar com o elemento <!DOCTYPE html>;
As tags podem conter atributos, por exemplo: <a href="https://bit.ly/3Rkkjr0">;
Atributos especiais como class e id são muito comuns na hora de fazer raspagem. Esses atributos dão nomes aos elementos HTML, e os tornam mais fáceis de interagir;
Cada elemento pode ter várias classes, e uma classe pode ser compartilhada entre vários elementos;
Cada elemento pode ter apenas um id, e um id pode aparecer somente uma vez na página;
Classes e ids são opcionais e nem todos os elementos as terã;
<!DOCTYPE html>
<html lang='pt-br'>
<head>
<title> Um título qualquer </title>
</head>
<body>
<p> Olá mundo! </p>
<a href="https://bit.ly/3Rkkjr0">
Introdução ao Web Scraping
</a>
</body>
<html>
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p class="bold-paragraph">
Aqui temos um parágrafo
<a href="https://bit.ly/3Rkkjr0" id="learn-link">Introdução ao Web Scraping</a>
</p>
<p class="bold-paragraph extra-large">
Mais um parágrafo
<a href="https://bit.ly/3PcaZn9" class="extra-large">Expressões regulares</a>
</p>
</body>
</html>
| Tag | Descrição |
|---|---|
<head> |
para declararmos todas informações da página, como título, metadados, etc. |
<title> |
para definir o título |
<body> |
para declarar todos os elementos que irão compor o corpo da página |
<h1>, <h2>, ..., <h6> |
para definir títulos e subtítulos, variando de 1 a 6, sendo h1 o título mais importante e h6 o de menor importância |
<p> |
para definir um parágrafo |
<a> |
para definir links |
Uma lista completa de tags encontra-se disponível aqui.
| Tag | Descrição |
|---|---|
<header> |
para definir um cabeçalho |
<section> |
para definir uma seção |
<div> |
para definir uma divisão |
<table> |
para definir uma tabela |
<ol> |
para definir uma lista ordenada |
<ul> |
para definir uma lista não-ordenada |
<li> |
para definir o item de uma lista |
<img> |
para inserir imagens |

As tags têm os nomes normalmente utilizados de acordo com sua posição em relação a outras tags;
child (filha): Uma tag child é uma tag dentro de outra tag. Então, por exemplo a tag p acima é filha da tag body;
parent (pai): Uma tag parent é uma tag que tem outras tags dentro. Acima, a tag html é pai de head e body;
sibling (irmãos): uma tag sibling é aquela que está aninhada dentro do mesmo pai que outra tag. Por exemplo: head e body são irmãs, pois ambas estão dentro da tag html;
<!DOCTYPE html>
<html lang='pt-br'>
<head>
<title> Um título </title>
</head>
<body>
<p> Olá mundo! </p>
<a href="https://bit.ly/3Rkkjr0">
Introdução ao Web Scraping
</a>
</body>
<html>

Site do projeto https://pypi.org/project/beautifulsoup4/;
# Instalando BeautifulSoup
!pip install beautifulsoup4
/usr/lib/python3/dist-packages/secretstorage/dhcrypto.py:15: CryptographyDeprecationWarning: int_from_bytes is deprecated, use int.from_bytes instead from cryptography.utils import int_from_bytes /usr/lib/python3/dist-packages/secretstorage/util.py:19: CryptographyDeprecationWarning: int_from_bytes is deprecated, use int.from_bytes instead from cryptography.utils import int_from_bytes Defaulting to user installation because normal site-packages is not writeable Requirement already satisfied: beautifulsoup4 in /home/ffajardo/.local/lib/python3.8/site-packages (4.11.1) Requirement already satisfied: soupsieve>1.2 in /home/ffajardo/.local/lib/python3.8/site-packages (from beautifulsoup4) (2.3.2.post1)
Não é porque você sabe fazer que você deve fazer;
Aspectos legais e éticos sempre devem ser considerados antes de iniciar uma coleta de dados na Web;
Boa prática: sempre consulte o robots.txt de um site antes de iniciar uma coleta,
robots.txt em https://en.wikipedia.org/wiki/Robots_exclusion_standardrequests do Python;import requests
# Objetivo: Pegar o link da aula Web Scraping na página testeB.html
url = requests.get("https://bit.ly/3nKi5U4")
print(url.status_code)
200
print(url.content)
b'<!DOCTYPE html>\n<html>\n <head>\n </head>\n <body>\n <p class="bold-paragraph">\n Aqui temos um par\xc3\xa1grafo\n <a href="https://bit.ly/3Rkkjr0" id="learn-link">Introdu\xc3\xa7\xc3\xa3o ao Web Scraping</a>\n </p>\n <p class="bold-paragraph extra-large">\n Mais um par\xc3\xa1grafo\n <a href="https://bit.ly/3PcaZn9" class="extra-large">Express\xc3\xb5es regulares</a>\n </p>\n </body>\n</html>'
from bs4 import BeautifulSoup
# Exibe o conteúdo HTML da página, formatado corretamente.
soup = BeautifulSoup(url.content, 'html.parser')
print(soup.prettify())
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p class="bold-paragraph">
Aqui temos um parágrafo
<a href="https://bit.ly/3Rkkjr0" id="learn-link">
Introdução ao Web Scraping
</a>
</p>
<p class="bold-paragraph extra-large">
Mais um parágrafo
<a class="extra-large" href="https://bit.ly/3PcaZn9">
Expressões regulares
</a>
</p>
</body>
</html>
# Selecionando os elementos dos níveis superiores da página
print(soup.children, list(soup.children), sep="\n\n")
<list_iterator object at 0x7f0ef2851040>
['html', '\n', <html>
<head>
</head>
<body>
<p class="bold-paragraph">
Aqui temos um parágrafo
<a href="https://bit.ly/3Rkkjr0" id="learn-link">Introdução ao Web Scraping</a>
</p>
<p class="bold-paragraph extra-large">
Mais um parágrafo
<a class="extra-large" href="https://bit.ly/3PcaZn9">Expressões regulares</a>
</p>
</body>
</html>]
<!DOCTYPE html> e a tag <html>;
# Todos os elementos da lista são objetos bs4
print([type(item) for item in list(soup.children)])
[<class 'bs4.element.Doctype'>, <class 'bs4.element.NavigableString'>, <class 'bs4.element.Tag'>]
print(list(soup.children)[0])
html
list(soup.children)[1]
'\n'
html = list(soup.children)[2]
print(html)
<html>
<head>
</head>
<body>
<p class="bold-paragraph">
Aqui temos um parágrafo
<a href="https://bit.ly/3Rkkjr0" id="learn-link">Introdução ao Web Scraping</a>
</p>
<p class="bold-paragraph extra-large">
Mais um parágrafo
<a class="extra-large" href="https://bit.ly/3PcaZn9">Expressões regulares</a>
</p>
</body>
</html>
# A variável html também é um objeto bs4, então
# podemos aplicar o método children em html
print([type(item) for item in list(html.children)])
[<class 'bs4.element.NavigableString'>, <class 'bs4.element.Tag'>, <class 'bs4.element.NavigableString'>, <class 'bs4.element.Tag'>, <class 'bs4.element.NavigableString'>]
print([item for item in list(html.children)])
['\n', <head>
</head>, '\n', <body>
<p class="bold-paragraph">
Aqui temos um parágrafo
<a href="https://bit.ly/3Rkkjr0" id="learn-link">Introdução ao Web Scraping</a>
</p>
<p class="bold-paragraph extra-large">
Mais um parágrafo
<a class="extra-large" href="https://bit.ly/3PcaZn9">Expressões regulares</a>
</p>
</body>, '\n']
body = list(html.children)[3]
print(body)
<body>
<p class="bold-paragraph">
Aqui temos um parágrafo
<a href="https://bit.ly/3Rkkjr0" id="learn-link">Introdução ao Web Scraping</a>
</p>
<p class="bold-paragraph extra-large">
Mais um parágrafo
<a class="extra-large" href="https://bit.ly/3PcaZn9">Expressões regulares</a>
</p>
</body>
# A variável body também é um objeto bs4, então
# podemos aplicar o método children em html
print([type(item) for item in list(body.children)])
[<class 'bs4.element.NavigableString'>, <class 'bs4.element.Tag'>, <class 'bs4.element.NavigableString'>, <class 'bs4.element.Tag'>, <class 'bs4.element.NavigableString'>]
print([item for item in list(body.children)])
['\n', <p class="bold-paragraph">
Aqui temos um parágrafo
<a href="https://bit.ly/3Rkkjr0" id="learn-link">Introdução ao Web Scraping</a>
</p>, '\n', <p class="bold-paragraph extra-large">
Mais um parágrafo
<a class="extra-large" href="https://bit.ly/3PcaZn9">Expressões regulares</a>
</p>, '\n']
p = list(body.children)
print(list(p[1].children))
['\n Aqui temos um parágrafo\n ', <a href="https://bit.ly/3Rkkjr0" id="learn-link">Introdução ao Web Scraping</a>, '\n']
print(list(p[1].children)[1])
<a href="https://bit.ly/3Rkkjr0" id="learn-link">Introdução ao Web Scraping</a>
print(list(p[1].children)[1].get('href'), list(p[1].children)[1].get_text(), sep=' / ')
https://bit.ly/3Rkkjr0 / Introdução ao Web Scraping
from bs4 import BeautifulSoup
soup = BeautifulSoup(url.content, 'html.parser')
print(soup.prettify())
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p class="bold-paragraph">
Aqui temos um parágrafo
<a href="https://bit.ly/3Rkkjr0" id="learn-link">
Introdução ao Web Scraping
</a>
</p>
<p class="bold-paragraph extra-large">
Mais um parágrafo
<a class="extra-large" href="https://bit.ly/3PcaZn9">
Expressões regulares
</a>
</p>
</body>
</html>
print(soup.a)
<a href="https://bit.ly/3Rkkjr0" id="learn-link">Introdução ao Web Scraping</a>
# Mostra o texto
print(soup.a.get_text())
Introdução ao Web Scraping
# Mostra o atributo href
print(soup.a.get('href'))
https://bit.ly/3Rkkjr0
# Mostra todos os tags
print(soup.find_all('a'))
[<a href="https://bit.ly/3Rkkjr0" id="learn-link">Introdução ao Web Scraping</a>, <a class="extra-large" href="https://bit.ly/3PcaZn9">Expressões regulares</a>]
# Mostra atributo href para a 2a tag
print(soup.find_all('a')[1].get('href'))
https://bit.ly/3PcaZn9
# Mostra todos os atributos href
for link in soup.find_all('a'):
print(link.get('href'))
https://bit.ly/3Rkkjr0 https://bit.ly/3PcaZn9
print(soup.get_text())
Aqui temos um parágrafo
Introdução ao Web Scraping
Mais um parágrafo
Expressões regulares
print(soup.p)
<p class="bold-paragraph">
Aqui temos um parágrafo
<a href="https://bit.ly/3Rkkjr0" id="learn-link">Introdução ao Web Scraping</a>
</p>
# Acessando ao atributo class
print(soup.p['class'])
['bold-paragraph']
print(soup.find_all('p'))
[<p class="bold-paragraph">
Aqui temos um parágrafo
<a href="https://bit.ly/3Rkkjr0" id="learn-link">Introdução ao Web Scraping</a>
</p>, <p class="bold-paragraph extra-large">
Mais um parágrafo
<a class="extra-large" href="https://bit.ly/3PcaZn9">Expressões regulares</a>
</p>]
# Acessando ao atributo class da 2a tag
print(soup.find_all('p')[1]['class'])
['bold-paragraph', 'extra-large']
print(soup.find_all('p')[1].attrs)
{'class': ['bold-paragraph', 'extra-large']}
# Encontrando atributos
print(soup.find(id="learn-link"))
<a href="https://bit.ly/3Rkkjr0" id="learn-link">Introdução ao Web Scraping</a>
# Encontrando textos
print(soup.find(text="Introdução ao Web Scraping"))
Introdução ao Web Scraping
html_doc = """<html><head><title>The Dormouse's story</title></head>
<body>
<p class="title"><b>The Dormouse's story</b></p>
<p class="story">Once upon a time there were three little sisters; and their names were
<a href="http://example.com/elsie" class="sister" id="link1">Elsie</a>,
<a href="http://example.com/lacie" class="sister" id="link2">Lacie</a> and
<a href="http://example.com/tillie" class="sister" id="link3">Tillie</a>;
and they lived at the bottom of a well.</p>
<p class="story">...</p>
"""
soup = BeautifulSoup(html_doc, 'html.parser')
print(soup.title)
print(soup.title.name)
print(soup.title.string)
print(soup.title.parent.name)
<title>The Dormouse's story</title> title The Dormouse's story head
print(soup.contents)
[<html><head><title>The Dormouse's story</title></head> <body> <p class="title"><b>The Dormouse's story</b></p> <p class="story">Once upon a time there were three little sisters; and their names were <a class="sister" href="http://example.com/elsie" id="link1">Elsie</a>, <a class="sister" href="http://example.com/lacie" id="link2">Lacie</a> and <a class="sister" href="http://example.com/tillie" id="link3">Tillie</a>; and they lived at the bottom of a well.</p> <p class="story">...</p> </body></html>]
print(soup.contents[0].name)
html
print(soup.find(text="Tillie"))
Tillie
soup.find_all("p", {"class": "story"})
[<p class="story">Once upon a time there were three little sisters; and their names were <a class="sister" href="http://example.com/elsie" id="link1">Elsie</a>, <a class="sister" href="http://example.com/lacie" id="link2">Lacie</a> and <a class="sister" href="http://example.com/tillie" id="link3">Tillie</a>; and they lived at the bottom of a well.</p>, <p class="story">...</p>]
soup.select("p.story")
[<p class="story">Once upon a time there were three little sisters; and their names were <a class="sister" href="http://example.com/elsie" id="link1">Elsie</a>, <a class="sister" href="http://example.com/lacie" id="link2">Lacie</a> and <a class="sister" href="http://example.com/tillie" id="link3">Tillie</a>; and they lived at the bottom of a well.</p>, <p class="story">...</p>]
soup.find_all("a", {"class": "sister"})
[<a class="sister" href="http://example.com/elsie" id="link1">Elsie</a>, <a class="sister" href="http://example.com/lacie" id="link2">Lacie</a>, <a class="sister" href="http://example.com/tillie" id="link3">Tillie</a>]
soup.select("a.sister")
[<a class="sister" href="http://example.com/elsie" id="link1">Elsie</a>, <a class="sister" href="http://example.com/lacie" id="link2">Lacie</a>, <a class="sister" href="http://example.com/tillie" id="link3">Tillie</a>]
for name in soup.find_all("a", "sister"):
print(name.text)
Elsie Lacie Tillie
for name in soup.find_all("a"):
print(name.get('href'))
http://example.com/elsie http://example.com/lacie http://example.com/tillie
for name in soup.find_all("a"):
print(name.get('id'))
link1 link2 link3
import requests
from bs4 import BeautifulSoup
import pandas as pd
url = 'https://www.worldometers.info/coronavirus/'
site = requests.get(url)
print(site)
<Response [200]>
soup = BeautifulSoup(site.text, 'html.parser')
print(soup.prettify())
<!DOCTYPE html>
<!--[if IE 8]> <html lang="en" class="ie8"> <![endif]-->
<!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
<!--[if !IE]><!-->
<html lang="en">
<!--<![endif]-->
<head>
<meta charset="utf-8"/>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<title>
COVID Live - Coronavirus Statistics - Worldometer
</title>
<meta content="Live statistics and coronavirus news tracking the number of confirmed cases, recovered patients, tests, and death toll due to the COVID-19 coronavirus from Wuhan, China. Coronavirus counter with new cases, deaths, and number of tests per 1 Million population. Historical data and info. Daily charts, graphs, news and updates" name="description"/>
<link href="/favicon/favicon.ico" rel="shortcut icon" type="image/x-icon"/>
<link href="/favicon/apple-icon-57x57.png" rel="apple-touch-icon" sizes="57x57"/>
<link href="/favicon/apple-icon-60x60.png" rel="apple-touch-icon" sizes="60x60"/>
<link href="/favicon/apple-icon-72x72.png" rel="apple-touch-icon" sizes="72x72"/>
<link href="/favicon/apple-icon-76x76.png" rel="apple-touch-icon" sizes="76x76"/>
<link href="/favicon/apple-icon-114x114.png" rel="apple-touch-icon" sizes="114x114"/>
<link href="/favicon/apple-icon-120x120.png" rel="apple-touch-icon" sizes="120x120"/>
<link href="/favicon/apple-icon-144x144.png" rel="apple-touch-icon" sizes="144x144"/>
<link href="/favicon/apple-icon-152x152.png" rel="apple-touch-icon" sizes="152x152"/>
<link href="/favicon/apple-icon-180x180.png" rel="apple-touch-icon" sizes="180x180"/>
<link href="/favicon/android-icon-192x192.png" rel="icon" sizes="192x192" type="image/png"/>
<link href="/favicon/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png"/>
<link href="/favicon/favicon-96x96.png" rel="icon" sizes="96x96" type="image/png"/>
<link href="/favicon/favicon-16x16.png" rel="icon" sizes="16x16" type="image/png"/>
<link href="/favicon/manifest.json" rel="manifest"/>
<meta content="#ffffff" name="msapplication-TileColor"/>
<meta content="/favicon/ms-icon-144x144.png" name="msapplication-TileImage"/>
<meta content="#ffffff" name="theme-color"/>
<meta content="http://www.worldometers.info/img/worldometers-fb.jpg" property="og:image">
<link href="/css/bootstrap.min.css" rel="stylesheet"/>
<link href="/wm16.css" rel="stylesheet"/>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet"/>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script src="/js/jquery.min.js">
</script>
<script src="/js/bootstrap.min.js">
</script>
<script src="/js/ie10-viewport-bug-workaround.js">
</script>
<link href="https://cdn.datatables.net/1.10.19/css/dataTables.bootstrap.min.css" rel="stylesheet" type="text/css">
<script src="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js" type="text/javascript">
</script>
<script src="https://cdn.datatables.net/1.10.19/js/dataTables.bootstrap.min.js" type="text/javascript">
</script>
<script class="init" type="text/javascript">
$.extend( $.fn.dataTable.defaults, {
responsive: true
} );
$(document).ready(function() {
$('#example2').dataTable( {
"scrollCollapse": true,
"sDom": '<"bottom"flp><"clear">',
"paging": false
} );
} );
</script>
<script class="init" type="text/javascript">
$.extend( $.fn.dataTable.defaults, {
responsive: true
} );
$(document).ready(function() {
$('#table3').dataTable( {
"scrollCollapse": true,
"order": [[ 1, 'desc' ]],
"sDom": '<"bottom"flp><"clear">',
"paging": false
} );
} );
</script>
<script class="init" type="text/javascript">
$.extend( $.fn.dataTable.defaults, {
responsive: true
} );
$(document).ready(function() {
$('#example').dataTable( {
"scrollCollapse": true,
"searching": false,
"sDom": '<"top">rt<"bottom"flp><"clear">',
"paging": false
} );
} );
</script>
<script class="init" type="text/javascript">
$(document).ready(function() {
$('#popbycountry').dataTable();
} );
</script>
<script data-cfasync="false" type="text/javascript">
var freestar = freestar || {};
freestar.hitTime = Date.now();
freestar.queue = freestar.queue || [];
freestar.config = freestar.config || {};
freestar.debug = window.location.search.indexOf('fsdebug') === -1 ? false : true;
freestar.config.enabled_slots = [];
!function(a,b){var c=b.getElementsByTagName("script")[0],d=b.createElement("script"),e="https://a.pub.network/worldometers-info";e+=freestar.debug?"/qa/pubfig.min.js":"/pubfig.min.js",d.async=!0,d.src=e,c.parentNode.insertBefore(d,c)}(window,document);
</script>
</link>
</meta>
</head>
<body>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-1438574-2', 'auto');
ga('send', 'pageview');
</script>
<script async="" src="https://www.googletagmanager.com/gtag/js?id=UA-1438574-30">
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-1438574-30');
</script>
<link href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.css" rel="stylesheet" type="text/css">
<script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js">
</script>
<script>
window.addEventListener("load", function(){
window.cookieconsent.initialise({
"palette": {
"popup": {
"background": "#efefef",
"text": "#404040"
},
"button": {
"background": "#8ec760",
"text": "#ffffff"
}
},
"theme": "classic",
"content": {
"href": "http://www.worldometers.info/policy/"
}
})});
</script>
<style type="text/css">
.style1 {
color: #666666
}
</style>
<div class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<div class="logo">
<a class="navbar-brand" href="/">
<img border="0" src="/img/worldometers-logo.gif" title="Worldometer"/>
</a>
</div>
<button class="navbar-toggle" data-target="#navbar-main" data-toggle="collapse" type="button">
<span class="icon-bar">
</span>
<span class="icon-bar">
</span>
<span class="icon-bar">
</span>
</button>
</div>
<div class="navbar-collapse collapse" id="navbar-main">
<ul class="nav navbar-nav">
<li>
<a href="/coronavirus/">
<span style="color:#FF9900; font-weight:bold">
Coronavirus
</span>
</a>
</li>
<li>
<a href="/population/">
Population
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div style="text-align:left; margin-bottom:10px">
<script async="" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js">
</script>
<ins class="adsbygoogle" data-ad-client="ca-pub-3701697624350410" data-ad-slot="3287840995" style="display:inline-block;width:970px;height:90px">
</ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
</div>
<div class="row">
<div class="col-md-8">
<div class="content-inner">
<style>
.number-table {
font-size: 20px;
font-weight: bold
}
.number-table-main {
font-size: 24px;
font-weight: bold
}
</style>
<script src="/js/highcharts.js">
</script>
<style type="text/css">
.source {}
.style2 {
color: #FF0000
}
.style4 {
color: #FF0000;
font-weight: bold;
}
.style6 {
font-size: 12px;
color: #bbb;
font-weight: bold;
}
.source1 {
font-size: 12px;
color: #bbb;
}
.source1 {
font-size: 12px;
color: #bbb;
}
.source11 {
font-size: 12px;
color: #bbb;
}
.source111 {}
.source1111 {
font-size: 12px;
color: #bbb;
}
.new_badge {
position: absolute;
font-size: 12px;
top: -5px;
right: -26px;
background-color: #8ACA2B;
color: white;
padding-left: 4px;
padding-right: 4px;
padding-top: 2px;
padding-bottom: 2px;
border-radius: 4px;
;
}
.new_badge_link {
background-color: #8ACA2B;
color: white !important;
padding-left: 4px;
padding-right: 4px;
padding-top: 2px;
padding-bottom: 2px;
border-radius: 4px;
;
}
</style>
<div class="label-counter" id="page-top">
COVID-19 Coronavirus Pandemic
</div>
<div style="font-size:13px; color:#999; margin-top:5px; text-align:center">
Last updated: July 15, 2022, 01:33 GMT
</div>
<div style="margin-top:20px; text-align:center; font-size:14px">
<a class="new_badge_link" href="/coronavirus/weekly-trends/" style="display: inline-block; position:relative;">
Weekly Trends
</a>
-
<a href="/coronavirus/worldwide-graphs/">
Graphs
</a>
-
<a href="#countries">
Countries
</a>
-
<a href="#news">
News
</a>
</div>
<div id="maincounter-wrap" style="margin-top:15px">
<h1>
Coronavirus Cases:
</h1>
<div class="maincounter-number">
<span style="color:#aaa">
565,273,669
</span>
</div>
</div>
<div style="text-align:center ">
<a href="#countries">
view by country
</a>
</div>
<div id="maincounter-wrap" style="margin-top:15px">
<h1>
Deaths:
</h1>
<div class="maincounter-number">
<span>
6,382,055
</span>
</div>
</div>
<div id="maincounter-wrap" style="margin-top:15px;">
<h1>
Recovered:
</h1>
<div class="maincounter-number" style="color:#8ACA2B ">
<span>
536,840,424
</span>
</div>
</div>
<div style="margin-top:50px;">
</div>
<style>
.panel_flip {
position: relative;
height: 100%;
}
.panel_front {
height: inherit;
position: absolute;
top: 0;
-webkit-transform: rotateX(0deg) rotateY(0deg);
-moz-transform: rotateX(0deg) rotateY(0deg);
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-webkit-transition: all .4s ease-in-out;
-moz-transition: all .4s ease-in-out;
-ms-transition: all .4s ease-in-out;
-o-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
}
.panel_back {
height: inherit;
position: absolute;
top: 0;
-webkit-transform: rotateY(-180deg);
-moz-transform: rotateY(-180deg);
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-webkit-transition: all .4s ease-in-out;
-moz-transition: all .4s ease-in-out;
-ms-transition: all .4s ease-in-out;
-o-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
}
.panel_flip.flip .panel_front {
z-index: 900;
-webkit-transform: rotateY(180deg);
-moz-transform: rotateY(180deg);
}
.panel_flip.flip .panel_back {
z-index: 1000;
-webkit-transform: rotateX(0deg) rotateY(0deg);
-moz-transform: rotateX(0deg) rotateY(0deg);
}
.collapse_button {
position: absolute;
right: 10px;
pointer-events: none;
color: #70757a !important;
height: 24px;
width: 24px;
line-height: 24px;
}
.collapse_button svg {
display: block;
height: 100%;
width: 100%;
fill: currentColor;
}
.rotate_180 {
transform: rotate(180deg);
}
.panel_clickable {
cursor: pointer;
}
</style>
<script>
var do_not_slide = false;
$(function() {
$('.flip_cases_front').on('click', function() {
$(this).parent().parent().addClass('flip');
});
$('.flip_cases_back').on('click', function() {
$(this).parent().parent().removeClass('flip');
});
$('.collapse').on('show.bs.collapse', function(el) {
var collapse_button = $(el.target).parent().find('.collapse_button');
collapse_button.addClass('rotate_180');
if (do_not_slide) {
return;
}
do_not_slide = true;
if ($(el.target).attr('id') == 'panel_active') {
$('#panel_closed').collapse('show');
} else {
$('#panel_active').collapse('show');
}
do_not_slide = false;
});
$('.collapse').on('hide.bs.collapse', function(el) {
var collapse_button = $(el.target).parent().find('.collapse_button');
collapse_button.removeClass('rotate_180');
if (do_not_slide) {
return;
}
do_not_slide = true;
if ($(el.target).attr('id') == 'panel_active') {
$('#panel_closed').collapse('hide');
} else {
$('#panel_active').collapse('hide');
}
do_not_slide = false;
});
});
</script>
<div class="col-md-6">
<div class="panel panel-default">
<div aria-controls="panel_active" aria-expanded="false" class="panel_clickable panel-heading" data-toggle="collapse" href="#panel_active" style="text-align:center;position:relative;">
<span class="panel-title" style="font-size:18px; text-transform:uppercase; font-weight:100">
Active Cases
</span>
<span class="collapse_button">
<svg focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z">
</path>
</svg>
</span>
</div>
<div class="collapse" id="panel_active">
<div class="panel-body" style="text-align:center;min-height:220px;">
<div class="panel_flip">
<div class="panel_front" style="width:100%;height:100%;">
<div class="number-table-main">
22,051,190
</div>
<div style="font-size:13.5px">
Currently Infected Patients
</div>
<div style="padding-top:20px;position:relative;text-align:center; ">
<div style="float:left; text-align:center">
<span class="number-table" style="color:#8080FF">
22,012,281
</span>
(
<strong>
99.8
</strong>
%)
<div style="font-size:13px">
in Mild Condition
</div>
<br/>
</div>
<div style="float:right; text-align:center">
<span class="number-table" style="color:red ">
38,909
</span>
(
<strong>
0.2
</strong>
%)
<div style="font-size:13px">
Serious or Critical
</div>
<br/>
</div>
</div>
<a class="flip_cases_front" href="javascript: void(0);" style="clear: both;display: block;padding-top:20px;width:100%;">
Show Graph
</a>
</div>
<div class="panel_back" style="width:100%;height:100%;">
<div id="total-currently-infected-linear">
</div>
<script type="text/javascript">
Highcharts.setOptions({
lang: {
thousandsSep: ','
}
});
var y_labels = ['0', '20,000', '40,000', '60,000', '140', '180', '200', '240'];
Highcharts.chart('total-currently-infected-linear', {
chart: {
type: 'line',
height: (9 / 16 * 100) + '%'
},
title: {
text: null
},
/*subtitle: {
text: '(Number of Infected People)'
},*/
xAxis: {
categories: ["Jan 22, 2020","Jan 23, 2020","Jan 24, 2020","Jan 25, 2020","Jan 26, 2020","Jan 27, 2020","Jan 28, 2020","Jan 29, 2020","Jan 30, 2020","Jan 31, 2020","Feb 01, 2020","Feb 02, 2020","Feb 03, 2020","Feb 04, 2020","Feb 05, 2020","Feb 06, 2020","Feb 07, 2020","Feb 08, 2020","Feb 09, 2020","Feb 10, 2020","Feb 11, 2020","Feb 12, 2020","Feb 13, 2020","Feb 14, 2020","Feb 15, 2020","Feb 16, 2020","Feb 17, 2020","Feb 18, 2020","Feb 19, 2020","Feb 20, 2020","Feb 21, 2020","Feb 22, 2020","Feb 23, 2020","Feb 24, 2020","Feb 25, 2020","Feb 26, 2020","Feb 27, 2020","Feb 28, 2020","Feb 29, 2020","Mar 01, 2020","Mar 02, 2020","Mar 03, 2020","Mar 04, 2020","Mar 05, 2020","Mar 06, 2020","Mar 07, 2020","Mar 08, 2020","Mar 09, 2020","Mar 10, 2020","Mar 11, 2020","Mar 12, 2020","Mar 13, 2020","Mar 14, 2020","Mar 15, 2020","Mar 16, 2020","Mar 17, 2020","Mar 18, 2020","Mar 19, 2020","Mar 20, 2020","Mar 21, 2020","Mar 22, 2020","Mar 23, 2020","Mar 24, 2020","Mar 25, 2020","Mar 26, 2020","Mar 27, 2020","Mar 28, 2020","Mar 29, 2020","Mar 30, 2020","Mar 31, 2020","Apr 01, 2020","Apr 02, 2020","Apr 03, 2020","Apr 04, 2020","Apr 05, 2020","Apr 06, 2020","Apr 07, 2020","Apr 08, 2020","Apr 09, 2020","Apr 10, 2020","Apr 11, 2020","Apr 12, 2020","Apr 13, 2020","Apr 14, 2020","Apr 15, 2020","Apr 16, 2020","Apr 17, 2020","Apr 18, 2020","Apr 19, 2020","Apr 20, 2020","Apr 21, 2020","Apr 22, 2020","Apr 23, 2020","Apr 24, 2020","Apr 25, 2020","Apr 26, 2020","Apr 27, 2020","Apr 28, 2020","Apr 29, 2020","Apr 30, 2020","May 01, 2020","May 02, 2020","May 03, 2020","May 04, 2020","May 05, 2020","May 06, 2020","May 07, 2020","May 08, 2020","May 09, 2020","May 10, 2020","May 11, 2020","May 12, 2020","May 13, 2020","May 14, 2020","May 15, 2020","May 16, 2020","May 17, 2020","May 18, 2020","May 19, 2020","May 20, 2020","May 21, 2020","May 22, 2020","May 23, 2020","May 24, 2020","May 25, 2020","May 26, 2020","May 27, 2020","May 28, 2020","May 29, 2020","May 30, 2020","May 31, 2020","Jun 01, 2020","Jun 02, 2020","Jun 03, 2020","Jun 04, 2020","Jun 05, 2020","Jun 06, 2020","Jun 07, 2020","Jun 08, 2020","Jun 09, 2020","Jun 10, 2020","Jun 11, 2020","Jun 12, 2020","Jun 13, 2020","Jun 14, 2020","Jun 15, 2020","Jun 16, 2020","Jun 17, 2020","Jun 18, 2020","Jun 19, 2020","Jun 20, 2020","Jun 21, 2020","Jun 22, 2020","Jun 23, 2020","Jun 24, 2020","Jun 25, 2020","Jun 26, 2020","Jun 27, 2020","Jun 28, 2020","Jun 29, 2020","Jun 30, 2020","Jul 01, 2020","Jul 02, 2020","Jul 03, 2020","Jul 04, 2020","Jul 05, 2020","Jul 06, 2020","Jul 07, 2020","Jul 08, 2020","Jul 09, 2020","Jul 10, 2020","Jul 11, 2020","Jul 12, 2020","Jul 13, 2020","Jul 14, 2020","Jul 15, 2020","Jul 16, 2020","Jul 17, 2020","Jul 18, 2020","Jul 19, 2020","Jul 20, 2020","Jul 21, 2020","Jul 22, 2020","Jul 23, 2020","Jul 24, 2020","Jul 25, 2020","Jul 26, 2020","Jul 27, 2020","Jul 28, 2020","Jul 29, 2020","Jul 30, 2020","Jul 31, 2020","Aug 01, 2020","Aug 02, 2020","Aug 03, 2020","Aug 04, 2020","Aug 05, 2020","Aug 06, 2020","Aug 07, 2020","Aug 08, 2020","Aug 09, 2020","Aug 10, 2020","Aug 11, 2020","Aug 12, 2020","Aug 13, 2020","Aug 14, 2020","Aug 15, 2020","Aug 16, 2020","Aug 17, 2020","Aug 18, 2020","Aug 19, 2020","Aug 20, 2020","Aug 21, 2020","Aug 22, 2020","Aug 23, 2020","Aug 24, 2020","Aug 25, 2020","Aug 26, 2020","Aug 27, 2020","Aug 28, 2020","Aug 29, 2020","Aug 30, 2020","Aug 31, 2020","Sep 01, 2020","Sep 02, 2020","Sep 03, 2020","Sep 04, 2020","Sep 05, 2020","Sep 06, 2020","Sep 07, 2020","Sep 08, 2020","Sep 09, 2020","Sep 10, 2020","Sep 11, 2020","Sep 12, 2020","Sep 13, 2020","Sep 14, 2020","Sep 15, 2020","Sep 16, 2020","Sep 17, 2020","Sep 18, 2020","Sep 19, 2020","Sep 20, 2020","Sep 21, 2020","Sep 22, 2020","Sep 23, 2020","Sep 24, 2020","Sep 25, 2020","Sep 26, 2020","Sep 27, 2020","Sep 28, 2020","Sep 29, 2020","Sep 30, 2020","Oct 01, 2020","Oct 02, 2020","Oct 03, 2020","Oct 04, 2020","Oct 05, 2020","Oct 06, 2020","Oct 07, 2020","Oct 08, 2020","Oct 09, 2020","Oct 10, 2020","Oct 11, 2020","Oct 12, 2020","Oct 13, 2020","Oct 14, 2020","Oct 15, 2020","Oct 16, 2020","Oct 17, 2020","Oct 18, 2020","Oct 19, 2020","Oct 20, 2020","Oct 21, 2020","Oct 22, 2020","Oct 23, 2020","Oct 24, 2020","Oct 25, 2020","Oct 26, 2020","Oct 27, 2020","Oct 28, 2020","Oct 29, 2020","Oct 30, 2020","Oct 31, 2020","Nov 01, 2020","Nov 02, 2020","Nov 03, 2020","Nov 04, 2020","Nov 05, 2020","Nov 06, 2020","Nov 07, 2020","Nov 08, 2020","Nov 09, 2020","Nov 10, 2020","Nov 11, 2020","Nov 12, 2020","Nov 13, 2020","Nov 14, 2020","Nov 15, 2020","Nov 16, 2020","Nov 17, 2020","Nov 18, 2020","Nov 19, 2020","Nov 20, 2020","Nov 21, 2020","Nov 22, 2020","Nov 23, 2020","Nov 24, 2020","Nov 25, 2020","Nov 26, 2020","Nov 27, 2020","Nov 28, 2020","Nov 29, 2020","Nov 30, 2020","Dec 01, 2020","Dec 02, 2020","Dec 03, 2020","Dec 04, 2020","Dec 05, 2020","Dec 06, 2020","Dec 07, 2020","Dec 08, 2020","Dec 09, 2020","Dec 10, 2020","Dec 11, 2020","Dec 12, 2020","Dec 13, 2020","Dec 14, 2020","Dec 15, 2020","Dec 16, 2020","Dec 17, 2020","Dec 18, 2020","Dec 19, 2020","Dec 20, 2020","Dec 21, 2020","Dec 22, 2020","Dec 23, 2020","Dec 24, 2020","Dec 25, 2020","Dec 26, 2020","Dec 27, 2020","Dec 28, 2020","Dec 29, 2020","Dec 30, 2020","Dec 31, 2020","Jan 01, 2021","Jan 02, 2021","Jan 03, 2021","Jan 04, 2021","Jan 05, 2021","Jan 06, 2021","Jan 07, 2021","Jan 08, 2021","Jan 09, 2021","Jan 10, 2021","Jan 11, 2021","Jan 12, 2021","Jan 13, 2021","Jan 14, 2021","Jan 15, 2021","Jan 16, 2021","Jan 17, 2021","Jan 18, 2021","Jan 19, 2021","Jan 20, 2021","Jan 21, 2021","Jan 22, 2021","Jan 23, 2021","Jan 24, 2021","Jan 25, 2021","Jan 26, 2021","Jan 27, 2021","Jan 28, 2021","Jan 29, 2021","Jan 30, 2021","Jan 31, 2021","Feb 01, 2021","Feb 02, 2021","Feb 03, 2021","Feb 04, 2021","Feb 05, 2021","Feb 06, 2021","Feb 07, 2021","Feb 08, 2021","Feb 09, 2021","Feb 10, 2021","Feb 11, 2021","Feb 12, 2021","Feb 13, 2021","Feb 14, 2021","Feb 15, 2021","Feb 16, 2021","Feb 17, 2021","Feb 18, 2021","Feb 19, 2021","Feb 20, 2021","Feb 21, 2021","Feb 22, 2021","Feb 23, 2021","Feb 24, 2021","Feb 25, 2021","Feb 26, 2021","Feb 27, 2021","Feb 28, 2021","Mar 01, 2021","Mar 02, 2021","Mar 03, 2021","Mar 04, 2021","Mar 05, 2021","Mar 06, 2021","Mar 07, 2021","Mar 08, 2021","Mar 09, 2021","Mar 10, 2021","Mar 11, 2021","Mar 12, 2021","Mar 13, 2021","Mar 14, 2021","Mar 15, 2021","Mar 16, 2021","Mar 17, 2021","Mar 18, 2021","Mar 19, 2021","Mar 20, 2021","Mar 21, 2021","Mar 22, 2021","Mar 23, 2021","Mar 24, 2021","Mar 25, 2021","Mar 26, 2021","Mar 27, 2021","Mar 28, 2021","Mar 29, 2021","Mar 30, 2021","Mar 31, 2021","Apr 01, 2021","Apr 02, 2021","Apr 03, 2021","Apr 04, 2021","Apr 05, 2021","Apr 06, 2021","Apr 07, 2021","Apr 08, 2021","Apr 09, 2021","Apr 10, 2021","Apr 11, 2021","Apr 12, 2021","Apr 13, 2021","Apr 14, 2021","Apr 15, 2021","Apr 16, 2021","Apr 17, 2021","Apr 18, 2021","Apr 19, 2021","Apr 20, 2021","Apr 21, 2021","Apr 22, 2021","Apr 23, 2021","Apr 24, 2021","Apr 25, 2021","Apr 26, 2021","Apr 27, 2021","Apr 28, 2021","Apr 29, 2021","Apr 30, 2021","May 01, 2021","May 02, 2021","May 03, 2021","May 04, 2021","May 05, 2021","May 06, 2021","May 07, 2021","May 08, 2021","May 09, 2021","May 10, 2021","May 11, 2021","May 12, 2021","May 13, 2021","May 14, 2021","May 15, 2021","May 16, 2021","May 17, 2021","May 18, 2021","May 19, 2021","May 20, 2021","May 21, 2021","May 22, 2021","May 23, 2021","May 24, 2021","May 25, 2021","May 26, 2021","May 27, 2021","May 28, 2021","May 29, 2021","May 30, 2021","May 31, 2021","Jun 01, 2021","Jun 02, 2021","Jun 03, 2021","Jun 04, 2021","Jun 05, 2021","Jun 06, 2021","Jun 07, 2021","Jun 08, 2021","Jun 09, 2021","Jun 10, 2021","Jun 11, 2021","Jun 12, 2021","Jun 13, 2021","Jun 14, 2021","Jun 15, 2021","Jun 16, 2021","Jun 17, 2021","Jun 18, 2021","Jun 19, 2021","Jun 20, 2021","Jun 21, 2021","Jun 22, 2021","Jun 23, 2021","Jun 24, 2021","Jun 25, 2021","Jun 26, 2021","Jun 27, 2021","Jun 28, 2021","Jun 29, 2021","Jun 30, 2021","Jul 01, 2021","Jul 02, 2021","Jul 03, 2021","Jul 04, 2021","Jul 05, 2021","Jul 06, 2021","Jul 07, 2021","Jul 08, 2021","Jul 09, 2021","Jul 10, 2021","Jul 11, 2021","Jul 12, 2021","Jul 13, 2021","Jul 14, 2021","Jul 15, 2021","Jul 16, 2021","Jul 17, 2021","Jul 18, 2021","Jul 19, 2021","Jul 20, 2021","Jul 21, 2021","Jul 22, 2021","Jul 23, 2021","Jul 24, 2021","Jul 25, 2021","Jul 26, 2021","Jul 27, 2021","Jul 28, 2021","Jul 29, 2021","Jul 30, 2021","Jul 31, 2021","Aug 01, 2021","Aug 02, 2021","Aug 03, 2021","Aug 04, 2021","Aug 05, 2021","Aug 06, 2021","Aug 07, 2021","Aug 08, 2021","Aug 09, 2021","Aug 10, 2021","Aug 11, 2021","Aug 12, 2021","Aug 13, 2021","Aug 14, 2021","Aug 15, 2021","Aug 16, 2021","Aug 17, 2021","Aug 18, 2021","Aug 19, 2021","Aug 20, 2021","Aug 21, 2021","Aug 22, 2021","Aug 23, 2021","Aug 24, 2021","Aug 25, 2021","Aug 26, 2021","Aug 27, 2021","Aug 28, 2021","Aug 29, 2021","Aug 30, 2021","Aug 31, 2021","Sep 01, 2021","Sep 02, 2021","Sep 03, 2021","Sep 04, 2021","Sep 05, 2021","Sep 06, 2021","Sep 07, 2021","Sep 08, 2021","Sep 09, 2021","Sep 10, 2021","Sep 11, 2021","Sep 12, 2021","Sep 13, 2021","Sep 14, 2021","Sep 15, 2021","Sep 16, 2021","Sep 17, 2021","Sep 18, 2021","Sep 19, 2021","Sep 20, 2021","Sep 21, 2021","Sep 22, 2021","Sep 23, 2021","Sep 24, 2021","Sep 25, 2021","Sep 26, 2021","Sep 27, 2021","Sep 28, 2021","Sep 29, 2021","Sep 30, 2021","Oct 01, 2021","Oct 02, 2021","Oct 03, 2021","Oct 04, 2021","Oct 05, 2021","Oct 06, 2021","Oct 07, 2021","Oct 08, 2021","Oct 09, 2021","Oct 10, 2021","Oct 11, 2021","Oct 12, 2021","Oct 13, 2021","Oct 14, 2021","Oct 15, 2021","Oct 16, 2021","Oct 17, 2021","Oct 18, 2021","Oct 19, 2021","Oct 20, 2021","Oct 21, 2021","Oct 22, 2021","Oct 23, 2021","Oct 24, 2021","Oct 25, 2021","Oct 26, 2021","Oct 27, 2021","Oct 28, 2021","Oct 29, 2021","Oct 30, 2021","Oct 31, 2021","Nov 01, 2021","Nov 02, 2021","Nov 03, 2021","Nov 04, 2021","Nov 05, 2021","Nov 06, 2021","Nov 07, 2021","Nov 08, 2021","Nov 09, 2021","Nov 10, 2021","Nov 11, 2021","Nov 12, 2021","Nov 13, 2021","Nov 14, 2021","Nov 15, 2021","Nov 16, 2021","Nov 17, 2021","Nov 18, 2021","Nov 19, 2021","Nov 20, 2021","Nov 21, 2021","Nov 22, 2021","Nov 23, 2021","Nov 24, 2021","Nov 25, 2021","Nov 26, 2021","Nov 27, 2021","Nov 28, 2021","Nov 29, 2021","Nov 30, 2021","Dec 01, 2021","Dec 02, 2021","Dec 03, 2021","Dec 04, 2021","Dec 05, 2021","Dec 06, 2021","Dec 07, 2021","Dec 08, 2021","Dec 09, 2021","Dec 10, 2021","Dec 11, 2021","Dec 12, 2021","Dec 13, 2021","Dec 14, 2021","Dec 15, 2021","Dec 16, 2021","Dec 17, 2021","Dec 18, 2021","Dec 19, 2021","Dec 20, 2021","Dec 21, 2021","Dec 22, 2021","Dec 23, 2021","Dec 24, 2021","Dec 25, 2021","Dec 26, 2021","Dec 27, 2021","Dec 28, 2021","Dec 29, 2021","Dec 30, 2021","Dec 31, 2021","Jan 01, 2022","Jan 02, 2022","Jan 03, 2022","Jan 04, 2022","Jan 05, 2022","Jan 06, 2022","Jan 07, 2022","Jan 08, 2022","Jan 09, 2022","Jan 10, 2022","Jan 11, 2022","Jan 12, 2022","Jan 13, 2022","Jan 14, 2022","Jan 15, 2022","Jan 16, 2022","Jan 17, 2022","Jan 18, 2022","Jan 19, 2022","Jan 20, 2022","Jan 21, 2022","Jan 22, 2022","Jan 23, 2022","Jan 24, 2022","Jan 25, 2022","Jan 26, 2022","Jan 27, 2022","Jan 28, 2022","Jan 29, 2022","Jan 30, 2022","Jan 31, 2022","Feb 01, 2022","Feb 02, 2022","Feb 03, 2022","Feb 04, 2022","Feb 05, 2022","Feb 06, 2022","Feb 07, 2022","Feb 08, 2022","Feb 09, 2022","Feb 10, 2022","Feb 11, 2022","Feb 12, 2022","Feb 13, 2022","Feb 14, 2022","Feb 15, 2022","Feb 16, 2022","Feb 17, 2022","Feb 18, 2022","Feb 19, 2022","Feb 20, 2022","Feb 21, 2022","Feb 22, 2022","Feb 23, 2022","Feb 24, 2022","Feb 25, 2022","Feb 26, 2022","Feb 27, 2022","Feb 28, 2022","Mar 01, 2022","Mar 02, 2022","Mar 03, 2022","Mar 04, 2022","Mar 05, 2022","Mar 06, 2022","Mar 07, 2022","Mar 08, 2022","Mar 09, 2022","Mar 10, 2022","Mar 11, 2022","Mar 12, 2022","Mar 13, 2022","Mar 14, 2022","Mar 15, 2022","Mar 16, 2022","Mar 17, 2022","Mar 18, 2022","Mar 19, 2022","Mar 20, 2022","Mar 21, 2022","Mar 22, 2022","Mar 23, 2022","Mar 24, 2022","Mar 25, 2022","Mar 26, 2022","Mar 27, 2022","Mar 28, 2022","Mar 29, 2022","Mar 30, 2022","Mar 31, 2022","Apr 01, 2022","Apr 02, 2022","Apr 03, 2022","Apr 04, 2022","Apr 05, 2022","Apr 06, 2022","Apr 07, 2022","Apr 08, 2022","Apr 09, 2022","Apr 10, 2022","Apr 11, 2022","Apr 12, 2022","Apr 13, 2022","Apr 14, 2022","Apr 15, 2022","Apr 16, 2022","Apr 17, 2022","Apr 18, 2022","Apr 19, 2022","Apr 20, 2022","Apr 21, 2022","Apr 22, 2022","Apr 23, 2022","Apr 24, 2022","Apr 25, 2022","Apr 26, 2022","Apr 27, 2022","Apr 28, 2022","Apr 29, 2022","Apr 30, 2022","May 01, 2022","May 02, 2022","May 03, 2022","May 04, 2022","May 05, 2022","May 06, 2022","May 07, 2022","May 08, 2022","May 09, 2022","May 10, 2022","May 11, 2022","May 12, 2022","May 13, 2022","May 14, 2022","May 15, 2022","May 16, 2022","May 17, 2022","May 18, 2022","May 19, 2022","May 20, 2022","May 21, 2022","May 22, 2022","May 23, 2022","May 24, 2022","May 25, 2022","May 26, 2022","May 27, 2022","May 28, 2022","May 29, 2022","May 30, 2022","May 31, 2022","Jun 01, 2022","Jun 02, 2022","Jun 03, 2022","Jun 04, 2022","Jun 05, 2022","Jun 06, 2022","Jun 07, 2022","Jun 08, 2022","Jun 09, 2022","Jun 10, 2022","Jun 11, 2022","Jun 12, 2022","Jun 13, 2022","Jun 14, 2022","Jun 15, 2022","Jun 16, 2022","Jun 17, 2022","Jun 18, 2022","Jun 19, 2022","Jun 20, 2022","Jun 21, 2022","Jun 22, 2022","Jun 23, 2022","Jun 24, 2022","Jun 25, 2022","Jun 26, 2022","Jun 27, 2022","Jun 28, 2022","Jun 29, 2022","Jun 30, 2022","Jul 01, 2022","Jul 02, 2022","Jul 03, 2022","Jul 04, 2022","Jul 05, 2022","Jul 06, 2022","Jul 07, 2022","Jul 08, 2022","Jul 09, 2022","Jul 10, 2022","Jul 11, 2022","Jul 12, 2022","Jul 13, 2022","Jul 14, 2022"]
},
yAxis: {
title: {
text: 'Currently Infected',
enabled: false
}
/*tickInterval: 20000,*/
/*categories: [0,50000],
labels: {
format: "{value:,.%0f}"
}*/
/*labels: {
step: 15
}*/
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'middle',
enabled: false
},
credits: {
enabled: false
},
plotOptions: {
line: {
marker: {
enabled: false
}
}
},
series: [{
name: 'Currently Infected',
color: '#00DDDD',
lineWidth: 5,
data: [970,1198,1650,2325,3086,4835,6244,7948,9873,11891,14387,17010,20061,23676,27065,29787,32633,34623,36892,38630,39831,52684,56916,58067,58716,59333,59527,59431,58044,56789,55363,54548,52673,51115,49330,47679,45364,44214,43477,43240,42819,43233,43758,45929,48879,52007,55542,60801,66845,76321,88257,102574,116431,133189,151384,171717,196051,224655,258734,287396,319891,358526,396205,438573,488018,541711,594920,640768,684930,739525,792073,840287,894745,945595,986370,1032088,1073279,1115622,1160150,1211581,1247605,1278854,1309165,1329435,1365153,1388984,1428226,1457460,1476902,1513537,1541931,1574923,1609157,1614863,1644510,1673397,1693340,1719290,1749971,1781940,1816612,1839334,1870064,1892110,1914743,1938541,1975295,2009475,2020280,2035222,2053146,2063138,2074693,2110710,2137292,2167154,2189866,2215211,2240266,2263477,2291720,2264235,2289416,2304979,2312389,2316704,2336727,2347865,2385131,2411908,2389491,2416813,2409278,2358295,2393573,2430105,2466338,2514322,2529935,2570311,2556604,2569866,2607657,2619010,2647617,2669554,2691935,2706170,2733464,2784391,2814532,2826561,2871681,2900950,2926641,3006899,3054699,3121736,3180463,3221567,3263376,3325820,3332671,3407677,3462732,3547543,3609405,3612317,3656265,3725855,3815676,3884638,3976341,4054974,4131325,4182685,4186023,4251468,4325563,4418944,4447775,4482098,4519633,4595928,4691549,4755637,4832860,4859331,4883948,4941935,4984450,5039906,5119967,5181696,5166938,5180316,5212233,5289126,5371434,5448132,5425875,5414713,5414761,5438651,5490948,5541660,5606429,5578467,5540231,5529363,5545490,5583077,5639174,5684674,5702295,5632960,5622029,5617638,5653298,5718145,5753558,5758436,5759063,5747237,5770173,5815019,5835132,5886715,5891598,5850584,5838588,5836571,5867538,5918782,5958960,5964966,5941595,5940887,5961200,6009343,6007794,6042593,6031538,5968641,5943017,5948265,5985358,6033413,6069692,6077678,6053978,6047805,6059535,6111719,6180804,6233967,6236813,6235086,6248858,6312611,6394345,6471555,6591833,6616423,6615580,6659737,6730246,6842275,6946087,7083702,7168436,7236808,7335272,7456925,7637336,7848643,8046012,8200058,8277942,8437012,8630077,8868678,9120243,9337100,9496971,9623270,9784071,9983870,10244161,10510155,10791556,10998601,11128988,11317867,11572534,11602970,11847215,12030616,12186909,12241223,12261512,12394980,12558239,12738421,12864557,12944691,12967224,13030401,13002953,13106476,13127414,13195302,13224004,13147550,13144268,13165425,13268987,13385939,13466220,13537631,13497111,13513006,13547397,13637841,13706172,13814250,13896171,13863507,13886890,13964564,14097560,14276557,14373532,14469267,14402432,14418942,14503932,14603040,14668835,14597964,14548638,14437228,14424233,14556418,14753394,14930778,14941343,15007151,14856306,15004394,15189819,15447993,15750991,15975440,16140925,16136770,16207564,16390145,16492032,16598069,16717193,16743884,16630007,16509869,16510800,16547015,16603806,16650085,16635085,16421037,16316729,16326900,16211794,16178756,16123547,16044757,15723895,15533619,15381820,15236864,15150495,15013183,14842317,14579798,14336918,14106259,13965674,13818940,13678410,13475326,13203050,12973799,12806654,12641463,12500307,12340058,12182083,11941188,11760247,11657176,11564046,11487149,11370205,11250005,11069935,10936507,10917121,10848309,10822317,10747681,10715976,10542579,10449928,10464854,10472966,10508353,10540845,10541164,10457517,10434984,10505648,10536320,10640350,10738020,10795408,10697432,10642110,10690101,10795411,10959580,11113162,11216827,11184042,11204781,11325898,11502921,11684936,11777682,11859026,11822627,11847615,11946417,12131088,12349271,12519190,12625382,12621864,12712867,12878611,13077394,13268706,13448326,13505709,13467748,13533056,13642574,13788608,13942220,14023606,14097301,13970057,13962352,14009249,14082756,14107273,14075307,14044997,13881372,13772347,13766215,13760231,13789303,13725810,13640559,13418470,13278763,13158044,13067026,12943321,12777203,12588529,12281726,12018951,11867904,11715630,11577172,11424974,11280264,10982040,10759522,10587874,10443502,10294150,10138295,9983097,9736822,9475936,9297289,9189763,9089697,8948377,8797358,8526019,8326175,8198255,8122471,8073373,7913666,7826992,7662692,7560032,7503899,7480590,7449099,7412328,7366541,7247477,7201256,7225356,7295453,7356206,7351968,7364483,7313837,7275891,7295779,7355723,7423232,7472009,7504061,7466954,7482686,7567745,7681126,7799322,7882673,7908687,7896988,8004749,8187165,8396697,8610711,8780639,8908620,8948360,9087134,9237047,9399764,9549954,9732458,9887871,9925964,10069643,10287003,10528931,10770161,10958192,11111815,11173469,11324080,11559502,11786926,12008590,12163675,12271382,12255433,12311303,12415343,12548203,12757500,12873197,12939080,12899213,12983601,13118974,13311692,13510001,13626735,13708170,13652739,13713001,13866790,14029586,14208020,14308843,14371090,14315418,14338597,14384675,14495867,14626955,14642798,14641627,14521301,14453556,14412419,14298211,14283829,14288970,14244513,14060315,13952736,13915562,13944693,13967536,13925320,13847336,13671645,13606329,13555693,13533390,13556348,13504679,13429153,13276797,13142255,13066266,13034697,12990716,12889948,12765211,12526012,12419752,12338526,12315567,12258535,12219175,12146201,12027502,11911381,11883436,11900962,11903069,11888409,11848363,11739031,11686906,11710912,11756259,11766335,11770523,11751478,11643920,11647939,11665712,11743693,11795577,11840146,11855703,11808526,11805836,11817557,11910842,12007751,12073305,12090918,12035709,12074092,12170900,12310510,12397658,12464743,12506635,12498718,12561099,12683303,12854500,12999340,13094820,13160824,13217369,13326990,13466588,13623249,13754630,13843253,13910618,13916523,14020400,14209229,14453547,14672500,14851681,14975407,14968857,15089720,15223419,15389128,15562078,15651318,15735444,15637511,15704820,15894985,16103348,16246724,16405348,16524828,16519092,16661319,16988066,17434173,17913305,18335053,18523234,18873335,19441691,20437184,21796902,23174693,24418938,25151834,25935470,27329216,29265155,31151176,33094216,35015582,36698045,37701818,39482598,41543377,43400137,45307884,46917803,48339261,49102330,50123032,51680472,53501572,55343877,57003833,58112855,58272249,59183344,60384054,61270350,62304232,62825229,63169439,62364315,61833159,62199567,62547534,62641551,62446993,62105802,61025254,60427222,59919422,59534005,58843970,58226749,57355226,55654277,54544601,53604515,52692107,51809120,50901083,49852792,48184609,46868307,45876575,44959284,43993172,43072932,42176271,40879553,39859427,39137446,38424590,37911424,37472517,36910695,36149988,35632088,35456117,35274894,35231694,35085651,34992997,34479417,34478387,34614831,35071186,35233288,35424377,35453625,35103272,35144594,35408885,35608481,35706597,35764559,35487674,34966043,34929345,34972834,34817678,34746279,34403390,33926725,32917785,32171895,31720124,31266695,30942455,30422241,29812868,28794127,28065664,27593974,27050376,26716510,26114923,25495342,24487476,23475983,23059550,22617080,22265666,21976134,21537577,20662850,20143564,19704046,19305610,19053547,18788995,18480676,17907276,17568314,17401958,17257949,17145124,17034229,17002748,16695254,16537174,16486670,16489085,16763310,16908952,16932047,17041272,17127725,17198377,17269503,17277550,17259091,17136394,16837135,16705801,16632457,16631253,16553023,16564294,16477687,16325047,16221647,16201532,16258303,16285659,16350699,16232157,16093418,15976972,16026741,16160251,16271225,16284173,16299091,16152710,16153116,16214801,16415492,16444446,16563548,16579612,16356770,16523460,16752797,17083019,17368833,17651886,17734985,17742554,17873396,18290456,18695784,19154533,19440744,19510839,19419380,19652007,20117258,20522081,20994459,21335834,21470640,21250996,21425907,21730290,22005689] }],
responsive: {
rules: [{
condition: {
maxWidth: 800
},
chartOptions: {
legend: {
layout: 'horizontal',
align: 'center',
verticalAlign: 'bottom'
}
}
}]
}
});
</script>
<a class="flip_cases_back" href="javascript: void(0);" style="clear: both;width:100%;">
Show Statistics
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="panel panel-default">
<div aria-controls="panel_closed" aria-expanded="false" class="panel-heading panel_clickable" data-toggle="collapse" href="#panel_closed" style="text-align:center;position:relative;">
<span class="panel-title" style="font-size:18px; text-transform:uppercase; font-weight:100">
Closed Cases
</span>
<span class="collapse_button">
<svg focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z">
</path>
</svg>
</span>
</div>
<div class="collapse" id="panel_closed">
<div class="panel-body" style="text-align:center;min-height:220px;">
<div class="panel_flip">
<div class="panel_front" style="width:100%;height:100%;">
<div class="number-table-main">
543,222,479
</div>
<div style="font-size:13.5px">
Cases which had an outcome:
</div>
<div style="padding-top:20px ">
<div style="float:left; text-align:center">
<span class="number-table" style="color:#8ACA2B">
536,840,424
</span>
(
<strong>
99
</strong>
%)
<div style="font-size:13px">
Recovered / Discharged
</div>
<br/>
</div>
<div style="float:right; text-align:center">
<span class="number-table">
6,382,055
</span>
(
<strong>
1
</strong>
%)
<div style="font-size:13px">
Deaths
</div>
<br/>
</div>
</div>
<a class="flip_cases_front" href="javascript: void(0);" style="clear: both;display: block;padding-top:20px;width:100%;">
Show Graph
</a>
</div>
<div class="panel_back" style="width:100%;height:100%;">
<div id="deaths-cured-outcome-small">
</div>
<script type="text/javascript">
Highcharts.chart('deaths-cured-outcome-small', {
chart: {
type: 'line',
height: (9 / 16 * 100) + '%'
},
title: {
text: ''
},
tooltip: {
pointFormat: '{series.name}: <b>{point.y:.2f}%</b>'
},
/* subtitle: {
text: '(Cumulative total deaths and recoveries over cumulative number of closed cases)'
},*/
xAxis: {
categories: ["Feb 02, 2020","Feb 03, 2020","Feb 04, 2020","Feb 05, 2020","Feb 06, 2020","Feb 07, 2020","Feb 08, 2020","Feb 09, 2020","Feb 10, 2020","Feb 11, 2020","Feb 12, 2020","Feb 13, 2020","Feb 14, 2020","Feb 15, 2020","Feb 16, 2020","Feb 17, 2020","Feb 18, 2020","Feb 19, 2020","Feb 20, 2020","Feb 21, 2020","Feb 22, 2020","Feb 23, 2020","Feb 24, 2020","Feb 25, 2020","Feb 26, 2020","Feb 27, 2020","Feb 28, 2020","Feb 29, 2020","Mar 01, 2020","Mar 02, 2020","Mar 03, 2020","Mar 04, 2020","Mar 05, 2020","Mar 06, 2020","Mar 07, 2020","Mar 08, 2020","Mar 09, 2020","Mar 10, 2020","Mar 11, 2020","Mar 12, 2020","Mar 13, 2020","Mar 14, 2020","Mar 15, 2020","Mar 16, 2020","Mar 17, 2020","Mar 18, 2020","Mar 19, 2020","Mar 20, 2020","Mar 21, 2020","Mar 22, 2020","Mar 23, 2020","Mar 24, 2020","Mar 25, 2020","Mar 26, 2020","Mar 27, 2020","Mar 28, 2020","Mar 29, 2020","Mar 30, 2020","Mar 31, 2020","Apr 01, 2020","Apr 02, 2020","Apr 03, 2020","Apr 04, 2020","Apr 05, 2020","Apr 06, 2020","Apr 07, 2020","Apr 08, 2020","Apr 09, 2020","Apr 10, 2020","Apr 11, 2020","Apr 12, 2020","Apr 13, 2020","Apr 14, 2020","Apr 15, 2020","Apr 16, 2020","Apr 17, 2020","Apr 18, 2020","Apr 19, 2020","Apr 20, 2020","Apr 21, 2020","Apr 22, 2020","Apr 23, 2020","Apr 24, 2020","Apr 25, 2020","Apr 26, 2020","Apr 27, 2020","Apr 28, 2020","Apr 29, 2020","Apr 30, 2020","May 01, 2020","May 02, 2020","May 03, 2020","May 04, 2020","May 05, 2020","May 06, 2020","May 07, 2020","May 08, 2020","May 09, 2020","May 10, 2020","May 11, 2020","May 12, 2020","May 13, 2020","May 14, 2020","May 15, 2020","May 16, 2020","May 17, 2020","May 18, 2020","May 19, 2020","May 20, 2020","May 21, 2020","May 22, 2020","May 23, 2020","May 24, 2020","May 25, 2020","May 26, 2020","May 27, 2020","May 28, 2020","May 29, 2020","May 30, 2020","May 31, 2020","Jun 01, 2020","Jun 02, 2020","Jun 03, 2020","Jun 04, 2020","Jun 05, 2020","Jun 06, 2020","Jun 07, 2020","Jun 08, 2020","Jun 09, 2020","Jun 10, 2020","Jun 11, 2020","Jun 12, 2020","Jun 13, 2020","Jun 14, 2020","Jun 15, 2020","Jun 16, 2020","Jun 17, 2020","Jun 18, 2020","Jun 19, 2020","Jun 20, 2020","Jun 21, 2020","Jun 22, 2020","Jun 23, 2020","Jun 24, 2020","Jun 25, 2020","Jun 26, 2020","Jun 27, 2020","Jun 28, 2020","Jun 29, 2020","Jun 30, 2020","Jul 01, 2020","Jul 02, 2020","Jul 03, 2020","Jul 04, 2020","Jul 05, 2020","Jul 06, 2020","Jul 07, 2020","Jul 08, 2020","Jul 09, 2020","Jul 10, 2020","Jul 11, 2020","Jul 12, 2020","Jul 13, 2020","Jul 14, 2020","Jul 15, 2020","Jul 16, 2020","Jul 17, 2020","Jul 18, 2020","Jul 19, 2020","Jul 20, 2020","Jul 21, 2020","Jul 22, 2020","Jul 23, 2020","Jul 24, 2020","Jul 25, 2020","Jul 26, 2020","Jul 27, 2020","Jul 28, 2020","Jul 29, 2020","Jul 30, 2020","Jul 31, 2020","Aug 01, 2020","Aug 02, 2020","Aug 03, 2020","Aug 04, 2020","Aug 05, 2020","Aug 06, 2020","Aug 07, 2020","Aug 08, 2020","Aug 09, 2020","Aug 10, 2020","Aug 11, 2020","Aug 12, 2020","Aug 13, 2020","Aug 14, 2020","Aug 15, 2020","Aug 16, 2020","Aug 17, 2020","Aug 18, 2020","Aug 19, 2020","Aug 20, 2020","Aug 21, 2020","Aug 22, 2020","Aug 23, 2020","Aug 24, 2020","Aug 25, 2020","Aug 26, 2020","Aug 27, 2020","Aug 28, 2020","Aug 29, 2020","Aug 30, 2020","Aug 31, 2020","Sep 01, 2020","Sep 02, 2020","Sep 03, 2020","Sep 04, 2020","Sep 05, 2020","Sep 06, 2020","Sep 07, 2020","Sep 08, 2020","Sep 09, 2020","Sep 10, 2020","Sep 11, 2020","Sep 12, 2020","Sep 13, 2020","Sep 14, 2020","Sep 15, 2020","Sep 16, 2020","Sep 17, 2020","Sep 18, 2020","Sep 19, 2020","Sep 20, 2020","Sep 21, 2020","Sep 22, 2020","Sep 23, 2020","Sep 24, 2020","Sep 25, 2020","Sep 26, 2020","Sep 27, 2020","Sep 28, 2020","Sep 29, 2020","Sep 30, 2020","Oct 01, 2020","Oct 02, 2020","Oct 03, 2020","Oct 04, 2020","Oct 05, 2020","Oct 06, 2020","Oct 07, 2020","Oct 08, 2020","Oct 09, 2020","Oct 10, 2020","Oct 11, 2020","Oct 12, 2020","Oct 13, 2020","Oct 14, 2020","Oct 15, 2020","Oct 16, 2020","Oct 17, 2020","Oct 18, 2020","Oct 19, 2020","Oct 20, 2020","Oct 21, 2020","Oct 22, 2020","Oct 23, 2020","Oct 24, 2020","Oct 25, 2020","Oct 26, 2020","Oct 27, 2020","Oct 28, 2020","Oct 29, 2020","Oct 30, 2020","Oct 31, 2020","Nov 01, 2020","Nov 02, 2020","Nov 03, 2020","Nov 04, 2020","Nov 05, 2020","Nov 06, 2020","Nov 07, 2020","Nov 08, 2020","Nov 09, 2020","Nov 10, 2020","Nov 11, 2020","Nov 12, 2020","Nov 13, 2020","Nov 14, 2020","Nov 15, 2020","Nov 16, 2020","Nov 17, 2020","Nov 18, 2020","Nov 19, 2020","Nov 20, 2020","Nov 21, 2020","Nov 22, 2020","Nov 23, 2020","Nov 24, 2020","Nov 25, 2020","Nov 26, 2020","Nov 27, 2020","Nov 28, 2020","Nov 29, 2020","Nov 30, 2020","Dec 01, 2020","Dec 02, 2020","Dec 03, 2020","Dec 04, 2020","Dec 05, 2020","Dec 06, 2020","Dec 07, 2020","Dec 08, 2020","Dec 09, 2020","Dec 10, 2020","Dec 11, 2020","Dec 12, 2020","Dec 13, 2020","Dec 14, 2020","Dec 15, 2020","Dec 16, 2020","Dec 17, 2020","Dec 18, 2020","Dec 19, 2020","Dec 20, 2020","Dec 21, 2020","Dec 22, 2020","Dec 23, 2020","Dec 24, 2020","Dec 25, 2020","Dec 26, 2020","Dec 27, 2020","Dec 28, 2020","Dec 29, 2020","Dec 30, 2020","Dec 31, 2020","Jan 01, 2021","Jan 02, 2021","Jan 03, 2021","Jan 04, 2021","Jan 05, 2021","Jan 06, 2021","Jan 07, 2021","Jan 08, 2021","Jan 09, 2021","Jan 10, 2021","Jan 11, 2021","Jan 12, 2021","Jan 13, 2021","Jan 14, 2021","Jan 15, 2021","Jan 16, 2021","Jan 17, 2021","Jan 18, 2021","Jan 19, 2021","Jan 20, 2021","Jan 21, 2021","Jan 22, 2021","Jan 23, 2021","Jan 24, 2021","Jan 25, 2021","Jan 26, 2021","Jan 27, 2021","Jan 28, 2021","Jan 29, 2021","Jan 30, 2021","Jan 31, 2021","Feb 01, 2021","Feb 02, 2021","Feb 03, 2021","Feb 04, 2021","Feb 05, 2021","Feb 06, 2021","Feb 07, 2021","Feb 08, 2021","Feb 09, 2021","Feb 10, 2021","Feb 11, 2021","Feb 12, 2021","Feb 13, 2021","Feb 14, 2021","Feb 15, 2021","Feb 16, 2021","Feb 17, 2021","Feb 18, 2021","Feb 19, 2021","Feb 20, 2021","Feb 21, 2021","Feb 22, 2021","Feb 23, 2021","Feb 24, 2021","Feb 25, 2021","Feb 26, 2021","Feb 27, 2021","Feb 28, 2021","Mar 01, 2021","Mar 02, 2021","Mar 03, 2021","Mar 04, 2021","Mar 05, 2021","Mar 06, 2021","Mar 07, 2021","Mar 08, 2021","Mar 09, 2021","Mar 10, 2021","Mar 11, 2021","Mar 12, 2021","Mar 13, 2021","Mar 14, 2021","Mar 15, 2021","Mar 16, 2021","Mar 17, 2021","Mar 18, 2021","Mar 19, 2021","Mar 20, 2021","Mar 21, 2021","Mar 22, 2021","Mar 23, 2021","Mar 24, 2021","Mar 25, 2021","Mar 26, 2021","Mar 27, 2021","Mar 28, 2021","Mar 29, 2021","Mar 30, 2021","Mar 31, 2021","Apr 01, 2021","Apr 02, 2021","Apr 03, 2021","Apr 04, 2021","Apr 05, 2021","Apr 06, 2021","Apr 07, 2021","Apr 08, 2021","Apr 09, 2021","Apr 10, 2021","Apr 11, 2021","Apr 12, 2021","Apr 13, 2021","Apr 14, 2021","Apr 15, 2021","Apr 16, 2021","Apr 17, 2021","Apr 18, 2021","Apr 19, 2021","Apr 20, 2021","Apr 21, 2021","Apr 22, 2021","Apr 23, 2021","Apr 24, 2021","Apr 25, 2021","Apr 26, 2021","Apr 27, 2021","Apr 28, 2021","Apr 29, 2021","Apr 30, 2021","May 01, 2021","May 02, 2021","May 03, 2021","May 04, 2021","May 05, 2021","May 06, 2021","May 07, 2021","May 08, 2021","May 09, 2021","May 10, 2021","May 11, 2021","May 12, 2021","May 13, 2021","May 14, 2021","May 15, 2021","May 16, 2021","May 17, 2021","May 18, 2021","May 19, 2021","May 20, 2021","May 21, 2021","May 22, 2021","May 23, 2021","May 24, 2021","May 25, 2021","May 26, 2021","May 27, 2021","May 28, 2021","May 29, 2021","May 30, 2021","May 31, 2021","Jun 01, 2021","Jun 02, 2021","Jun 03, 2021","Jun 04, 2021","Jun 05, 2021","Jun 06, 2021","Jun 07, 2021","Jun 08, 2021","Jun 09, 2021","Jun 10, 2021","Jun 11, 2021","Jun 12, 2021","Jun 13, 2021","Jun 14, 2021","Jun 15, 2021","Jun 16, 2021","Jun 17, 2021","Jun 18, 2021","Jun 19, 2021","Jun 20, 2021","Jun 21, 2021","Jun 22, 2021","Jun 23, 2021","Jun 24, 2021","Jun 25, 2021","Jun 26, 2021","Jun 27, 2021","Jun 28, 2021","Jun 29, 2021","Jun 30, 2021","Jul 01, 2021","Jul 02, 2021","Jul 03, 2021","Jul 04, 2021","Jul 05, 2021","Jul 06, 2021","Jul 07, 2021","Jul 08, 2021","Jul 09, 2021","Jul 10, 2021","Jul 11, 2021","Jul 12, 2021","Jul 13, 2021","Jul 14, 2021","Jul 15, 2021","Jul 16, 2021","Jul 17, 2021","Jul 18, 2021","Jul 19, 2021","Jul 20, 2021","Jul 21, 2021","Jul 22, 2021","Jul 23, 2021","Jul 24, 2021","Jul 25, 2021","Jul 26, 2021","Jul 27, 2021","Jul 28, 2021","Jul 29, 2021","Jul 30, 2021","Jul 31, 2021","Aug 01, 2021","Aug 02, 2021","Aug 03, 2021","Aug 04, 2021","Aug 05, 2021","Aug 06, 2021","Aug 07, 2021","Aug 08, 2021","Aug 09, 2021","Aug 10, 2021","Aug 11, 2021","Aug 12, 2021","Aug 13, 2021","Aug 14, 2021","Aug 15, 2021","Aug 16, 2021","Aug 17, 2021","Aug 18, 2021","Aug 19, 2021","Aug 20, 2021","Aug 21, 2021","Aug 22, 2021","Aug 23, 2021","Aug 24, 2021","Aug 25, 2021","Aug 26, 2021","Aug 27, 2021","Aug 28, 2021","Aug 29, 2021","Aug 30, 2021","Aug 31, 2021","Sep 01, 2021","Sep 02, 2021","Sep 03, 2021","Sep 04, 2021","Sep 05, 2021","Sep 06, 2021","Sep 07, 2021","Sep 08, 2021","Sep 09, 2021","Sep 10, 2021","Sep 11, 2021","Sep 12, 2021","Sep 13, 2021","Sep 14, 2021","Sep 15, 2021","Sep 16, 2021","Sep 17, 2021","Sep 18, 2021","Sep 19, 2021","Sep 20, 2021","Sep 21, 2021","Sep 22, 2021","Sep 23, 2021","Sep 24, 2021","Sep 25, 2021","Sep 26, 2021","Sep 27, 2021","Sep 28, 2021","Sep 29, 2021","Sep 30, 2021","Oct 01, 2021","Oct 02, 2021","Oct 03, 2021","Oct 04, 2021","Oct 05, 2021","Oct 06, 2021","Oct 07, 2021","Oct 08, 2021","Oct 09, 2021","Oct 10, 2021","Oct 11, 2021","Oct 12, 2021","Oct 13, 2021","Oct 14, 2021","Oct 15, 2021","Oct 16, 2021","Oct 17, 2021","Oct 18, 2021","Oct 19, 2021","Oct 20, 2021","Oct 21, 2021","Oct 22, 2021","Oct 23, 2021","Oct 24, 2021","Oct 25, 2021","Oct 26, 2021","Oct 27, 2021","Oct 28, 2021","Oct 29, 2021","Oct 30, 2021","Oct 31, 2021","Nov 01, 2021","Nov 02, 2021","Nov 03, 2021","Nov 04, 2021","Nov 05, 2021","Nov 06, 2021","Nov 07, 2021","Nov 08, 2021","Nov 09, 2021","Nov 10, 2021","Nov 11, 2021","Nov 12, 2021","Nov 13, 2021","Nov 14, 2021","Nov 15, 2021","Nov 16, 2021","Nov 17, 2021","Nov 18, 2021","Nov 19, 2021","Nov 20, 2021","Nov 21, 2021","Nov 22, 2021","Nov 23, 2021","Nov 24, 2021","Nov 25, 2021","Nov 26, 2021","Nov 27, 2021","Nov 28, 2021","Nov 29, 2021","Nov 30, 2021","Dec 01, 2021","Dec 02, 2021","Dec 03, 2021","Dec 04, 2021","Dec 05, 2021","Dec 06, 2021","Dec 07, 2021","Dec 08, 2021","Dec 09, 2021","Dec 10, 2021","Dec 11, 2021","Dec 12, 2021","Dec 13, 2021","Dec 14, 2021","Dec 15, 2021","Dec 16, 2021","Dec 17, 2021","Dec 18, 2021","Dec 19, 2021","Dec 20, 2021","Dec 21, 2021","Dec 22, 2021","Dec 23, 2021","Dec 24, 2021","Dec 25, 2021","Dec 26, 2021","Dec 27, 2021","Dec 28, 2021","Dec 29, 2021","Dec 30, 2021","Dec 31, 2021","Jan 01, 2022","Jan 02, 2022","Jan 03, 2022","Jan 04, 2022","Jan 05, 2022","Jan 06, 2022","Jan 07, 2022","Jan 08, 2022","Jan 09, 2022","Jan 10, 2022","Jan 11, 2022","Jan 12, 2022","Jan 13, 2022","Jan 14, 2022","Jan 15, 2022","Jan 16, 2022","Jan 17, 2022","Jan 18, 2022","Jan 19, 2022","Jan 20, 2022","Jan 21, 2022","Jan 22, 2022","Jan 23, 2022","Jan 24, 2022","Jan 25, 2022","Jan 26, 2022","Jan 27, 2022","Jan 28, 2022","Jan 29, 2022","Jan 30, 2022","Jan 31, 2022","Feb 01, 2022","Feb 02, 2022","Feb 03, 2022","Feb 04, 2022","Feb 05, 2022","Feb 06, 2022","Feb 07, 2022","Feb 08, 2022","Feb 09, 2022","Feb 10, 2022","Feb 11, 2022","Feb 12, 2022","Feb 13, 2022","Feb 14, 2022","Feb 15, 2022","Feb 16, 2022","Feb 17, 2022","Feb 18, 2022","Feb 19, 2022","Feb 20, 2022","Feb 21, 2022","Feb 22, 2022","Feb 23, 2022","Feb 24, 2022","Feb 25, 2022","Feb 26, 2022","Feb 27, 2022","Feb 28, 2022","Mar 01, 2022","Mar 02, 2022","Mar 03, 2022","Mar 04, 2022","Mar 05, 2022","Mar 06, 2022","Mar 07, 2022","Mar 08, 2022","Mar 09, 2022","Mar 10, 2022","Mar 11, 2022","Mar 12, 2022","Mar 13, 2022","Mar 14, 2022","Mar 15, 2022","Mar 16, 2022","Mar 17, 2022","Mar 18, 2022","Mar 19, 2022","Mar 20, 2022","Mar 21, 2022","Mar 22, 2022","Mar 23, 2022","Mar 24, 2022","Mar 25, 2022","Mar 26, 2022","Mar 27, 2022","Mar 28, 2022","Mar 29, 2022","Mar 30, 2022","Mar 31, 2022","Apr 01, 2022","Apr 02, 2022","Apr 03, 2022","Apr 04, 2022","Apr 05, 2022","Apr 06, 2022","Apr 07, 2022","Apr 08, 2022","Apr 09, 2022","Apr 10, 2022","Apr 11, 2022","Apr 12, 2022","Apr 13, 2022","Apr 14, 2022","Apr 15, 2022","Apr 16, 2022","Apr 17, 2022","Apr 18, 2022","Apr 19, 2022","Apr 20, 2022","Apr 21, 2022","Apr 22, 2022","Apr 23, 2022","Apr 24, 2022","Apr 25, 2022","Apr 26, 2022","Apr 27, 2022","Apr 28, 2022","Apr 29, 2022","Apr 30, 2022","May 01, 2022","May 02, 2022","May 03, 2022","May 04, 2022","May 05, 2022","May 06, 2022","May 07, 2022","May 08, 2022","May 09, 2022","May 10, 2022","May 11, 2022","May 12, 2022","May 13, 2022","May 14, 2022","May 15, 2022","May 16, 2022","May 17, 2022","May 18, 2022","May 19, 2022","May 20, 2022","May 21, 2022","May 22, 2022","May 23, 2022","May 24, 2022","May 25, 2022","May 26, 2022","May 27, 2022","May 28, 2022","May 29, 2022","May 30, 2022","May 31, 2022","Jun 01, 2022","Jun 02, 2022","Jun 03, 2022","Jun 04, 2022","Jun 05, 2022","Jun 06, 2022","Jun 07, 2022","Jun 08, 2022","Jun 09, 2022","Jun 10, 2022","Jun 11, 2022","Jun 12, 2022","Jun 13, 2022","Jun 14, 2022","Jun 15, 2022","Jun 16, 2022","Jun 17, 2022","Jun 18, 2022","Jun 19, 2022","Jun 20, 2022","Jun 21, 2022","Jun 22, 2022","Jun 23, 2022","Jun 24, 2022","Jun 25, 2022","Jun 26, 2022","Jun 27, 2022","Jun 28, 2022","Jun 29, 2022","Jun 30, 2022","Jul 01, 2022","Jul 02, 2022","Jul 03, 2022","Jul 04, 2022","Jul 05, 2022","Jul 06, 2022","Jul 07, 2022","Jul 08, 2022","Jul 09, 2022","Jul 10, 2022","Jul 11, 2022","Jul 12, 2022","Jul 13, 2022","Jul 14, 2022"] },
yAxis: {
title: {
text: 'Percent (%)',
enabled: false
},
labels: {
format: "{value}%"
},
max: 100
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'middle',
enabled: false
},
credits: {
enabled: false
},
plotOptions: {
line :{
marker: {
enabled: false
}
}
},
series: [{
name: 'Death Rate',
color: '#FF9900',
lineWidth: 5,
data: [42.27000000000000312638803734444081783294677734375,40.24000000000000198951966012828052043914794921875,35.53999999999999914734871708787977695465087890625,32.82000000000000028421709430404007434844970703125,29.260000000000001563194018672220408916473388671875,26,23.530000000000001136868377216160297393798828125,21.760000000000001563194018672220408916473388671875,20.3299999999999982946974341757595539093017578125,19.030000000000001136868377216160297393798828125,17.559999999999998721023075631819665431976318359375,17.030000000000001136868377216160297393798828125,15.82000000000000028421709430404007434844970703125,14.9900000000000002131628207280300557613372802734375,14.0099999999999997868371792719699442386627197265625,12.9199999999999999289457264239899814128875732421875,12.199999999999999289457264239899814128875732421875,11.5600000000000004973799150320701301097869873046875,10.8699999999999992184029906638897955417633056640625,10.199999999999999289457264239899814128875732421875,9.839999999999999857891452847979962825775146484375,9.519999999999999573674358543939888477325439453125,8.9900000000000002131628207280300557613372802734375,8.46000000000000085265128291212022304534912109375,7.88999999999999968025576890795491635799407958984375,7.29000000000000003552713678800500929355621337890625,6.92999999999999971578290569595992565155029296875,6.5999999999999996447286321199499070644378662109375,6.3499999999999996447286321199499070644378662109375,6.11000000000000031974423109204508364200592041015625,5.92999999999999971578290569595992565155029296875,5.80999999999999960920149533194489777088165283203125,5.7599999999999997868371792719699442386627197265625,5.7400000000000002131628207280300557613372802734375,5.660000000000000142108547152020037174224853515625,5.79999999999999982236431605997495353221893310546875,5.92999999999999971578290569595992565155029296875,6.0800000000000000710542735760100185871124267578125,6.37000000000000010658141036401502788066864013671875,6.6699999999999999289457264239899814128875732421875,7.03000000000000024868995751603506505489349365234375,7.230000000000000426325641456060111522674560546875,7.87999999999999989341858963598497211933135986328125,8.410000000000000142108547152020037174224853515625,9.0099999999999997868371792719699442386627197265625,9.7200000000000006394884621840901672840118408203125,10.449999999999999289457264239899814128875732421875,11.339999999999999857891452847979962825775146484375,12.3300000000000000710542735760100185871124267578125,13.3699999999999992184029906638897955417633056640625,14.5,15.449999999999999289457264239899814128875732421875,16.39999999999999857891452847979962825775146484375,17.030000000000001136868377216160297393798828125,17.800000000000000710542735760100185871124267578125,18.480000000000000426325641456060111522674560546875,18.879999999999999005240169935859739780426025390625,19.17999999999999971578290569595992565155029296875,19.35000000000000142108547152020037174224853515625,19.46000000000000085265128291212022304534912109375,19.550000000000000710542735760100185871124267578125,19.5,19.510000000000001563194018672220408916473388671875,19.3299999999999982946974341757595539093017578125,19.410000000000000142108547152020037174224853515625,19.17999999999999971578290569595992565155029296875,18.78999999999999914734871708787977695465087890625,18.629999999999999005240169935859739780426025390625,18.550000000000000710542735760100185871124267578125,18.160000000000000142108547152020037174224853515625,17.89999999999999857891452847979962825775146484375,17.660000000000000142108547152020037174224853515625,17.280000000000001136868377216160297393798828125,17.219999999999998863131622783839702606201171875,16.780000000000001136868377216160297393798828125,16.780000000000001136868377216160297393798828125,16.519999999999999573674358543939888477325439453125,16.14999999999999857891452847979962825775146484375,16.07000000000000028421709430404007434844970703125,15.96000000000000085265128291212022304534912109375,15.8499999999999996447286321199499070644378662109375,15.7200000000000006394884621840901672840118408203125,15.1500000000000003552713678800500929355621337890625,14.96000000000000085265128291212022304534912109375,14.82000000000000028421709430404007434844970703125,14.699999999999999289457264239899814128875732421875,14.6400000000000005684341886080801486968994140625,14.53999999999999914734871708787977695465087890625,14.42999999999999971578290569595992565155029296875,14.3100000000000004973799150320701301097869873046875,14.17999999999999971578290569595992565155029296875,14.050000000000000710542735760100185871124267578125,13.9199999999999999289457264239899814128875732421875,13.800000000000000710542735760100185871124267578125,13.67999999999999971578290569595992565155029296875,13.589999999999999857891452847979962825775146484375,13.480000000000000426325641456060111522674560546875,13.269999999999999573674358543939888477325439453125,13.1300000000000007815970093361102044582366943359375,13.03999999999999914734871708787977695465087890625,12.8699999999999992184029906638897955417633056640625,12.67999999999999971578290569595992565155029296875,12.5999999999999996447286321199499070644378662109375,12.46000000000000085265128291212022304534912109375,12.339999999999999857891452847979962825775146484375,12.230000000000000426325641456060111522674560546875,12.1099999999999994315658113919198513031005859375,11.9900000000000002131628207280300557613372802734375,11.839999999999999857891452847979962825775146484375,11.71000000000000085265128291212022304534912109375,11.3900000000000005684341886080801486968994140625,11.269999999999999573674358543939888477325439453125,11.1099999999999994315658113919198513031005859375,10.980000000000000426325641456060111522674560546875,10.8300000000000000710542735760100185871124267578125,10.7200000000000006394884621840901672840118408203125,10.53999999999999914734871708787977695465087890625,10.42999999999999971578290569595992565155029296875,10.28999999999999914734871708787977695465087890625,10.0600000000000004973799150320701301097869873046875,9.980000000000000426325641456060111522674560546875,9.8100000000000004973799150320701301097869873046875,9.5600000000000004973799150320701301097869873046875,9.4700000000000006394884621840901672840118408203125,9.3900000000000005684341886080801486968994140625,9.3100000000000004973799150320701301097869873046875,9.269999999999999573674358543939888477325439453125,9.17999999999999971578290569595992565155029296875,9.1400000000000005684341886080801486968994140625,8.980000000000000426325641456060111522674560546875,8.8699999999999992184029906638897955417633056640625,8.78999999999999914734871708787977695465087890625,8.6899999999999995026200849679298698902130126953125,8.6099999999999994315658113919198513031005859375,8.53999999999999914734871708787977695465087890625,8.480000000000000426325641456060111522674560546875,8.3800000000000007815970093361102044582366943359375,8.32000000000000028421709430404007434844970703125,8.230000000000000426325641456060111522674560546875,8.1400000000000005684341886080801486968994140625,8.0600000000000004973799150320701301097869873046875,8,7.9199999999999999289457264239899814128875732421875,7.8300000000000000710542735760100185871124267578125,7.79000000000000003552713678800500929355621337890625,7.70000000000000017763568394002504646778106689453125,7.6500000000000003552713678800500929355621337890625,7.589999999999999857891452847979962825775146484375,7.53000000000000024868995751603506505489349365234375,7.46999999999999975131004248396493494510650634765625,7.4000000000000003552713678800500929355621337890625,7.28000000000000024868995751603506505489349365234375,7.21999999999999975131004248396493494510650634765625,7.160000000000000142108547152020037174224853515625,7.12999999999999989341858963598497211933135986328125,7.089999999999999857891452847979962825775146484375,6.9900000000000002131628207280300557613372802734375,6.910000000000000142108547152020037174224853515625,6.86000000000000031974423109204508364200592041015625,6.80999999999999960920149533194489777088165283203125,6.7599999999999997868371792719699442386627197265625,6.730000000000000426325641456060111522674560546875,6.70000000000000017763568394002504646778106689453125,6.660000000000000142108547152020037174224853515625,6.5999999999999996447286321199499070644378662109375,6.5,6.45000000000000017763568394002504646778106689453125,6.410000000000000142108547152020037174224853515625,6.37999999999999989341858963598497211933135986328125,6.32000000000000028421709430404007434844970703125,6.2599999999999997868371792719699442386627197265625,6.19000000000000039079850466805510222911834716796875,6.13999999999999968025576890795491635799407958984375,6.089999999999999857891452847979962825775146484375,6.04000000000000003552713678800500929355621337890625,6.0099999999999997868371792719699442386627197265625,5.95999999999999996447286321199499070644378662109375,5.9000000000000003552713678800500929355621337890625,5.8499999999999996447286321199499070644378662109375,5.79000000000000003552713678800500929355621337890625,5.7400000000000002131628207280300557613372802734375,5.70000000000000017763568394002504646778106689453125,5.6699999999999999289457264239899814128875732421875,5.62000000000000010658141036401502788066864013671875,5.57000000000000028421709430404007434844970703125,5.53000000000000024868995751603506505489349365234375,5.5,5.46999999999999975131004248396493494510650634765625,5.42999999999999971578290569595992565155029296875,5.37999999999999989341858963598497211933135986328125,5.339999999999999857891452847979962825775146484375,5.28000000000000024868995751603506505489349365234375,5.2400000000000002131628207280300557613372802734375,5.20000000000000017763568394002504646778106689453125,5.1699999999999999289457264239899814128875732421875,5.13999999999999968025576890795491635799407958984375,5.089999999999999857891452847979962825775146484375,5.04999999999999982236431605997495353221893310546875,5.0099999999999997868371792719699442386627197265625,4.96999999999999975131004248396493494510650634765625,4.95000000000000017763568394002504646778106689453125,4.9199999999999999289457264239899814128875732421875,4.9000000000000003552713678800500929355621337890625,4.87000000000000010658141036401502788066864013671875,4.82000000000000028421709430404007434844970703125,4.79000000000000003552713678800500929355621337890625,4.75,4.71999999999999975131004248396493494510650634765625,4.70000000000000017763568394002504646778106689453125,4.6699999999999999289457264239899814128875732421875,4.6500000000000003552713678800500929355621337890625,4.61000000000000031974423109204508364200592041015625,4.5800000000000000710542735760100185871124267578125,4.54999999999999982236431605997495353221893310546875,4.53000000000000024868995751603506505489349365234375,4.5,4.46999999999999975131004248396493494510650634765625,4.45000000000000017763568394002504646778106689453125,4.4199999999999999289457264239899814128875732421875,4.38999999999999968025576890795491635799407958984375,4.36000000000000031974423109204508364200592041015625,4.3300000000000000710542735760100185871124267578125,4.30999999999999960920149533194489777088165283203125,4.28000000000000024868995751603506505489349365234375,4.2599999999999997868371792719699442386627197265625,4.230000000000000426325641456060111522674560546875,4.20000000000000017763568394002504646778106689453125,4.17999999999999971578290569595992565155029296875,4.160000000000000142108547152020037174224853515625,4.12000000000000010658141036401502788066864013671875,4.0999999999999996447286321199499070644378662109375,4.0800000000000000710542735760100185871124267578125,4.04000000000000003552713678800500929355621337890625,4.019999999999999573674358543939888477325439453125,3.9900000000000002131628207280300557613372802734375,3.970000000000000195399252334027551114559173583984375,3.95000000000000017763568394002504646778106689453125,3.930000000000000159872115546022541821002960205078125,3.910000000000000142108547152020037174224853515625,3.890000000000000124344978758017532527446746826171875,3.87000000000000010658141036401502788066864013671875,3.850000000000000088817841970012523233890533447265625,3.8300000000000000710542735760100185871124267578125,3.810000000000000053290705182007513940334320068359375,3.79999999999999982236431605997495353221893310546875,3.779999999999999804600747665972448885440826416015625,3.7599999999999997868371792719699442386627197265625,3.7400000000000002131628207280300557613372802734375,3.729999999999999982236431605997495353221893310546875,3.70999999999999996447286321199499070644378662109375,3.70000000000000017763568394002504646778106689453125,3.680000000000000159872115546022541821002960205078125,3.6699999999999999289457264239899814128875732421875,3.649999999999999911182158029987476766109466552734375,3.62999999999999989341858963598497211933135986328125,3.62000000000000010658141036401502788066864013671875,3.600000000000000088817841970012523233890533447265625,3.589999999999999857891452847979962825775146484375,3.5800000000000000710542735760100185871124267578125,3.560000000000000053290705182007513940334320068359375,3.54999999999999982236431605997495353221893310546875,3.54000000000000003552713678800500929355621337890625,3.529999999999999804600747665972448885440826416015625,3.5099999999999997868371792719699442386627197265625,3.5,3.4900000000000002131628207280300557613372802734375,3.479999999999999982236431605997495353221893310546875,3.45999999999999996447286321199499070644378662109375,3.45000000000000017763568394002504646778106689453125,3.439999999999999946709294817992486059665679931640625,3.430000000000000159872115546022541821002960205078125,3.4199999999999999289457264239899814128875732421875,3.4199999999999999289457264239899814128875732421875,3.399999999999999911182158029987476766109466552734375,3.390000000000000124344978758017532527446746826171875,3.37999999999999989341858963598497211933135986328125,3.37999999999999989341858963598497211933135986328125,3.37000000000000010658141036401502788066864013671875,3.359999999999999875655021241982467472553253173828125,3.350000000000000088817841970012523233890533447265625,3.339999999999999857891452847979962825775146484375,3.339999999999999857891452847979962825775146484375,3.3300000000000000710542735760100185871124267578125,3.319999999999999840127884453977458178997039794921875,3.29999999999999982236431605997495353221893310546875,3.29000000000000003552713678800500929355621337890625,3.279999999999999804600747665972448885440826416015625,3.270000000000000017763568394002504646778106689453125,3.2599999999999997868371792719699442386627197265625,3.2400000000000002131628207280300557613372802734375,3.229999999999999982236431605997495353221893310546875,3.220000000000000195399252334027551114559173583984375,3.20999999999999996447286321199499070644378662109375,3.20000000000000017763568394002504646778106689453125,3.189999999999999946709294817992486059665679931640625,3.1699999999999999289457264239899814128875732421875,3.160000000000000142108547152020037174224853515625,3.140000000000000124344978758017532527446746826171875,3.12999999999999989341858963598497211933135986328125,3.12000000000000010658141036401502788066864013671875,3.109999999999999875655021241982467472553253173828125,3.089999999999999857891452847979962825775146484375,3.0800000000000000710542735760100185871124267578125,3.069999999999999840127884453977458178997039794921875,3.04999999999999982236431605997495353221893310546875,3.04000000000000003552713678800500929355621337890625,3.029999999999999804600747665972448885440826416015625,3.020000000000000017763568394002504646778106689453125,3.0099999999999997868371792719699442386627197265625,3,2.9900000000000002131628207280300557613372802734375,2.979999999999999982236431605997495353221893310546875,2.970000000000000195399252334027551114559173583984375,2.95999999999999996447286321199499070644378662109375,2.95000000000000017763568394002504646778106689453125,2.939999999999999946709294817992486059665679931640625,2.930000000000000159872115546022541821002960205078125,2.9199999999999999289457264239899814128875732421875,2.910000000000000142108547152020037174224853515625,2.910000000000000142108547152020037174224853515625,2.899999999999999911182158029987476766109466552734375,2.890000000000000124344978758017532527446746826171875,2.890000000000000124344978758017532527446746826171875,2.87999999999999989341858963598497211933135986328125,2.87000000000000010658141036401502788066864013671875,2.859999999999999875655021241982467472553253173828125,2.859999999999999875655021241982467472553253173828125,2.850000000000000088817841970012523233890533447265625,2.839999999999999857891452847979962825775146484375,2.8300000000000000710542735760100185871124267578125,2.819999999999999840127884453977458178997039794921875,2.819999999999999840127884453977458178997039794921875,2.810000000000000053290705182007513940334320068359375,2.810000000000000053290705182007513940334320068359375,2.810000000000000053290705182007513940334320068359375,2.79999999999999982236431605997495353221893310546875,2.79000000000000003552713678800500929355621337890625,2.779999999999999804600747665972448885440826416015625,2.779999999999999804600747665972448885440826416015625,2.770000000000000017763568394002504646778106689453125,2.770000000000000017763568394002504646778106689453125,2.770000000000000017763568394002504646778106689453125,2.770000000000000017763568394002504646778106689453125,2.770000000000000017763568394002504646778106689453125,2.7599999999999997868371792719699442386627197265625,2.7599999999999997868371792719699442386627197265625,2.7599999999999997868371792719699442386627197265625,2.7599999999999997868371792719699442386627197265625,2.75,2.75,2.75,2.7400000000000002131628207280300557613372802734375,2.7400000000000002131628207280300557613372802734375,2.7400000000000002131628207280300557613372802734375,2.7400000000000002131628207280300557613372802734375,2.7400000000000002131628207280300557613372802734375,2.729999999999999982236431605997495353221893310546875,2.729999999999999982236431605997495353221893310546875,2.720000000000000195399252334027551114559173583984375,2.720000000000000195399252334027551114559173583984375,2.720000000000000195399252334027551114559173583984375,2.720000000000000195399252334027551114559173583984375,2.720000000000000195399252334027551114559173583984375,2.720000000000000195399252334027551114559173583984375,2.70999999999999996447286321199499070644378662109375,2.70000000000000017763568394002504646778106689453125,2.70000000000000017763568394002504646778106689453125,2.70000000000000017763568394002504646778106689453125,2.689999999999999946709294817992486059665679931640625,2.689999999999999946709294817992486059665679931640625,2.689999999999999946709294817992486059665679931640625,2.680000000000000159872115546022541821002960205078125,2.6699999999999999289457264239899814128875732421875,2.6699999999999999289457264239899814128875732421875,2.660000000000000142108547152020037174224853515625,2.660000000000000142108547152020037174224853515625,2.660000000000000142108547152020037174224853515625,2.649999999999999911182158029987476766109466552734375,2.649999999999999911182158029987476766109466552734375,2.640000000000000124344978758017532527446746826171875,2.640000000000000124344978758017532527446746826171875,2.62999999999999989341858963598497211933135986328125,2.62999999999999989341858963598497211933135986328125,2.62999999999999989341858963598497211933135986328125,2.62000000000000010658141036401502788066864013671875,2.609999999999999875655021241982467472553253173828125,2.609999999999999875655021241982467472553253173828125,2.600000000000000088817841970012523233890533447265625,2.600000000000000088817841970012523233890533447265625,2.600000000000000088817841970012523233890533447265625,2.589999999999999857891452847979962825775146484375,2.589999999999999857891452847979962825775146484375,2.5800000000000000710542735760100185871124267578125,2.5800000000000000710542735760100185871124267578125,2.5800000000000000710542735760100185871124267578125,2.569999999999999840127884453977458178997039794921875,2.569999999999999840127884453977458178997039794921875,2.569999999999999840127884453977458178997039794921875,2.560000000000000053290705182007513940334320068359375,2.560000000000000053290705182007513940334320068359375,2.560000000000000053290705182007513940334320068359375,2.54999999999999982236431605997495353221893310546875,2.54999999999999982236431605997495353221893310546875,2.54999999999999982236431605997495353221893310546875,2.54999999999999982236431605997495353221893310546875,2.54999999999999982236431605997495353221893310546875,2.54000000000000003552713678800500929355621337890625,2.54000000000000003552713678800500929355621337890625,2.54000000000000003552713678800500929355621337890625,2.54000000000000003552713678800500929355621337890625,2.529999999999999804600747665972448885440826416015625,2.529999999999999804600747665972448885440826416015625,2.529999999999999804600747665972448885440826416015625,2.529999999999999804600747665972448885440826416015625,2.520000000000000017763568394002504646778106689453125,2.520000000000000017763568394002504646778106689453125,2.520000000000000017763568394002504646778106689453125,2.5099999999999997868371792719699442386627197265625,2.5099999999999997868371792719699442386627197265625,2.5099999999999997868371792719699442386627197265625,2.5099999999999997868371792719699442386627197265625,2.5099999999999997868371792719699442386627197265625,2.5099999999999997868371792719699442386627197265625,2.5099999999999997868371792719699442386627197265625,2.5,2.5,2.5,2.5,2.4900000000000002131628207280300557613372802734375,2.4900000000000002131628207280300557613372802734375,2.4900000000000002131628207280300557613372802734375,2.4900000000000002131628207280300557613372802734375,2.4900000000000002131628207280300557613372802734375,2.4900000000000002131628207280300557613372802734375,2.479999999999999982236431605997495353221893310546875,2.479999999999999982236431605997495353221893310546875,2.479999999999999982236431605997495353221893310546875,2.479999999999999982236431605997495353221893310546875,2.470000000000000195399252334027551114559173583984375,2.470000000000000195399252334027551114559173583984375,2.470000000000000195399252334027551114559173583984375,2.45999999999999996447286321199499070644378662109375,2.45999999999999996447286321199499070644378662109375,2.45999999999999996447286321199499070644378662109375,2.45000000000000017763568394002504646778106689453125,2.45000000000000017763568394002504646778106689453125,2.45000000000000017763568394002504646778106689453125,2.439999999999999946709294817992486059665679931640625,2.439999999999999946709294817992486059665679931640625,2.430000000000000159872115546022541821002960205078125,2.430000000000000159872115546022541821002960205078125,2.430000000000000159872115546022541821002960205078125,2.4199999999999999289457264239899814128875732421875,2.4199999999999999289457264239899814128875732421875,2.410000000000000142108547152020037174224853515625,2.410000000000000142108547152020037174224853515625,2.399999999999999911182158029987476766109466552734375,2.399999999999999911182158029987476766109466552734375,2.399999999999999911182158029987476766109466552734375,2.390000000000000124344978758017532527446746826171875,2.390000000000000124344978758017532527446746826171875,2.37999999999999989341858963598497211933135986328125,2.37999999999999989341858963598497211933135986328125,2.37000000000000010658141036401502788066864013671875,2.37000000000000010658141036401502788066864013671875,2.359999999999999875655021241982467472553253173828125,2.359999999999999875655021241982467472553253173828125,2.359999999999999875655021241982467472553253173828125,2.350000000000000088817841970012523233890533447265625,2.350000000000000088817841970012523233890533447265625,2.339999999999999857891452847979962825775146484375,2.339999999999999857891452847979962825775146484375,2.339999999999999857891452847979962825775146484375,2.3300000000000000710542735760100185871124267578125,2.3300000000000000710542735760100185871124267578125,2.3300000000000000710542735760100185871124267578125,2.3300000000000000710542735760100185871124267578125,2.319999999999999840127884453977458178997039794921875,2.319999999999999840127884453977458178997039794921875,2.319999999999999840127884453977458178997039794921875,2.310000000000000053290705182007513940334320068359375,2.310000000000000053290705182007513940334320068359375,2.310000000000000053290705182007513940334320068359375,2.310000000000000053290705182007513940334320068359375,2.29999999999999982236431605997495353221893310546875,2.29999999999999982236431605997495353221893310546875,2.29999999999999982236431605997495353221893310546875,2.29999999999999982236431605997495353221893310546875,2.29000000000000003552713678800500929355621337890625,2.29000000000000003552713678800500929355621337890625,2.29000000000000003552713678800500929355621337890625,2.29000000000000003552713678800500929355621337890625,2.29000000000000003552713678800500929355621337890625,2.279999999999999804600747665972448885440826416015625,2.279999999999999804600747665972448885440826416015625,2.279999999999999804600747665972448885440826416015625,2.279999999999999804600747665972448885440826416015625,2.279999999999999804600747665972448885440826416015625,2.279999999999999804600747665972448885440826416015625,2.279999999999999804600747665972448885440826416015625,2.279999999999999804600747665972448885440826416015625,2.279999999999999804600747665972448885440826416015625,2.279999999999999804600747665972448885440826416015625,2.279999999999999804600747665972448885440826416015625,2.270000000000000017763568394002504646778106689453125,2.270000000000000017763568394002504646778106689453125,2.270000000000000017763568394002504646778106689453125,2.270000000000000017763568394002504646778106689453125,2.270000000000000017763568394002504646778106689453125,2.270000000000000017763568394002504646778106689453125,2.270000000000000017763568394002504646778106689453125,2.270000000000000017763568394002504646778106689453125,2.270000000000000017763568394002504646778106689453125,2.270000000000000017763568394002504646778106689453125,2.270000000000000017763568394002504646778106689453125,2.270000000000000017763568394002504646778106689453125,2.270000000000000017763568394002504646778106689453125,2.270000000000000017763568394002504646778106689453125,2.270000000000000017763568394002504646778106689453125,2.270000000000000017763568394002504646778106689453125,2.270000000000000017763568394002504646778106689453125,2.270000000000000017763568394002504646778106689453125,2.270000000000000017763568394002504646778106689453125,2.270000000000000017763568394002504646778106689453125,2.270000000000000017763568394002504646778106689453125,2.270000000000000017763568394002504646778106689453125,2.270000000000000017763568394002504646778106689453125,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.270000000000000017763568394002504646778106689453125,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.2599999999999997868371792719699442386627197265625,2.25,2.25,2.25,2.25,2.25,2.25,2.25,2.2400000000000002131628207280300557613372802734375,2.2400000000000002131628207280300557613372802734375,2.2400000000000002131628207280300557613372802734375,2.2400000000000002131628207280300557613372802734375,2.2400000000000002131628207280300557613372802734375,2.2400000000000002131628207280300557613372802734375,2.2400000000000002131628207280300557613372802734375,2.2400000000000002131628207280300557613372802734375,2.2400000000000002131628207280300557613372802734375,2.229999999999999982236431605997495353221893310546875,2.229999999999999982236431605997495353221893310546875,2.229999999999999982236431605997495353221893310546875,2.229999999999999982236431605997495353221893310546875,2.229999999999999982236431605997495353221893310546875,2.229999999999999982236431605997495353221893310546875,2.229999999999999982236431605997495353221893310546875,2.220000000000000195399252334027551114559173583984375,2.220000000000000195399252334027551114559173583984375,2.220000000000000195399252334027551114559173583984375,2.220000000000000195399252334027551114559173583984375,2.220000000000000195399252334027551114559173583984375,2.220000000000000195399252334027551114559173583984375,2.20999999999999996447286321199499070644378662109375,2.20999999999999996447286321199499070644378662109375,2.20999999999999996447286321199499070644378662109375,2.20999999999999996447286321199499070644378662109375,2.20000000000000017763568394002504646778106689453125,2.20000000000000017763568394002504646778106689453125,2.20000000000000017763568394002504646778106689453125,2.20000000000000017763568394002504646778106689453125,2.20000000000000017763568394002504646778106689453125,2.189999999999999946709294817992486059665679931640625,2.189999999999999946709294817992486059665679931640625,2.189999999999999946709294817992486059665679931640625,2.189999999999999946709294817992486059665679931640625,2.189999999999999946709294817992486059665679931640625,2.180000000000000159872115546022541821002960205078125,2.180000000000000159872115546022541821002960205078125,2.180000000000000159872115546022541821002960205078125,2.180000000000000159872115546022541821002960205078125,2.180000000000000159872115546022541821002960205078125,2.180000000000000159872115546022541821002960205078125,2.1699999999999999289457264239899814128875732421875,2.1699999999999999289457264239899814128875732421875,2.1699999999999999289457264239899814128875732421875,2.1699999999999999289457264239899814128875732421875,2.1699999999999999289457264239899814128875732421875,2.1699999999999999289457264239899814128875732421875,2.160000000000000142108547152020037174224853515625,2.160000000000000142108547152020037174224853515625,2.160000000000000142108547152020037174224853515625,2.160000000000000142108547152020037174224853515625,2.160000000000000142108547152020037174224853515625,2.149999999999999911182158029987476766109466552734375,2.149999999999999911182158029987476766109466552734375,2.149999999999999911182158029987476766109466552734375,2.149999999999999911182158029987476766109466552734375,2.149999999999999911182158029987476766109466552734375,2.149999999999999911182158029987476766109466552734375,2.149999999999999911182158029987476766109466552734375,2.140000000000000124344978758017532527446746826171875,2.140000000000000124344978758017532527446746826171875,2.140000000000000124344978758017532527446746826171875,2.140000000000000124344978758017532527446746826171875,2.140000000000000124344978758017532527446746826171875,2.140000000000000124344978758017532527446746826171875,2.140000000000000124344978758017532527446746826171875,2.140000000000000124344978758017532527446746826171875,2.140000000000000124344978758017532527446746826171875,2.12999999999999989341858963598497211933135986328125,2.12999999999999989341858963598497211933135986328125,2.12999999999999989341858963598497211933135986328125,2.12999999999999989341858963598497211933135986328125,2.12999999999999989341858963598497211933135986328125,2.12999999999999989341858963598497211933135986328125,2.12999999999999989341858963598497211933135986328125,2.12999999999999989341858963598497211933135986328125,2.12999999999999989341858963598497211933135986328125,2.12999999999999989341858963598497211933135986328125,2.12999999999999989341858963598497211933135986328125,2.12999999999999989341858963598497211933135986328125,2.12999999999999989341858963598497211933135986328125,2.12000000000000010658141036401502788066864013671875,2.12000000000000010658141036401502788066864013671875,2.12000000000000010658141036401502788066864013671875,2.12000000000000010658141036401502788066864013671875,2.12000000000000010658141036401502788066864013671875,2.12000000000000010658141036401502788066864013671875,2.12000000000000010658141036401502788066864013671875,2.12000000000000010658141036401502788066864013671875,2.12000000000000010658141036401502788066864013671875,2.12000000000000010658141036401502788066864013671875,2.109999999999999875655021241982467472553253173828125,2.109999999999999875655021241982467472553253173828125,2.109999999999999875655021241982467472553253173828125,2.109999999999999875655021241982467472553253173828125,2.109999999999999875655021241982467472553253173828125,2.109999999999999875655021241982467472553253173828125,2.109999999999999875655021241982467472553253173828125,2.109999999999999875655021241982467472553253173828125,2.109999999999999875655021241982467472553253173828125,2.109999999999999875655021241982467472553253173828125,2.100000000000000088817841970012523233890533447265625,2.100000000000000088817841970012523233890533447265625,2.100000000000000088817841970012523233890533447265625,2.100000000000000088817841970012523233890533447265625,2.100000000000000088817841970012523233890533447265625,2.100000000000000088817841970012523233890533447265625,2.100000000000000088817841970012523233890533447265625,2.100000000000000088817841970012523233890533447265625,2.100000000000000088817841970012523233890533447265625,2.089999999999999857891452847979962825775146484375,2.089999999999999857891452847979962825775146484375,2.089999999999999857891452847979962825775146484375,2.089999999999999857891452847979962825775146484375,2.089999999999999857891452847979962825775146484375,2.089999999999999857891452847979962825775146484375,2.089999999999999857891452847979962825775146484375,2.0800000000000000710542735760100185871124267578125,2.0800000000000000710542735760100185871124267578125,2.0800000000000000710542735760100185871124267578125,2.0800000000000000710542735760100185871124267578125,2.0800000000000000710542735760100185871124267578125,2.0800000000000000710542735760100185871124267578125,2.069999999999999840127884453977458178997039794921875,2.069999999999999840127884453977458178997039794921875,2.069999999999999840127884453977458178997039794921875,2.069999999999999840127884453977458178997039794921875,2.060000000000000053290705182007513940334320068359375,2.060000000000000053290705182007513940334320068359375,2.060000000000000053290705182007513940334320068359375,2.060000000000000053290705182007513940334320068359375,2.060000000000000053290705182007513940334320068359375,2.04999999999999982236431605997495353221893310546875,2.04999999999999982236431605997495353221893310546875,2.04999999999999982236431605997495353221893310546875,2.04999999999999982236431605997495353221893310546875,2.04000000000000003552713678800500929355621337890625,2.04000000000000003552713678800500929355621337890625,2.04000000000000003552713678800500929355621337890625,2.029999999999999804600747665972448885440826416015625,2.029999999999999804600747665972448885440826416015625,2.029999999999999804600747665972448885440826416015625,2.020000000000000017763568394002504646778106689453125,2.020000000000000017763568394002504646778106689453125,2.020000000000000017763568394002504646778106689453125,2.0099999999999997868371792719699442386627197265625,2.0099999999999997868371792719699442386627197265625,2,1.9899999999999999911182158029987476766109466552734375,1.9899999999999999911182158029987476766109466552734375,1.979999999999999982236431605997495353221893310546875,1.9699999999999999733546474089962430298328399658203125,1.9699999999999999733546474089962430298328399658203125,1.95999999999999996447286321199499070644378662109375,1.939999999999999946709294817992486059665679931640625,1.9299999999999999378275106209912337362766265869140625,1.9199999999999999289457264239899814128875732421875,1.9099999999999999200639422269887290894985198974609375,1.899999999999999911182158029987476766109466552734375,1.8899999999999999023003738329862244427204132080078125,1.87999999999999989341858963598497211933135986328125,1.87000000000000010658141036401502788066864013671875,1.8600000000000000976996261670137755572795867919921875,1.8400000000000000799360577730112709105014801025390625,1.8300000000000000710542735760100185871124267578125,1.8200000000000000621724893790087662637233734130859375,1.810000000000000053290705182007513940334320068359375,1.79000000000000003552713678800500929355621337890625,1.7800000000000000266453525910037569701671600341796875,1.770000000000000017763568394002504646778106689453125,1.75,1.7399999999999999911182158029987476766109466552734375,1.729999999999999982236431605997495353221893310546875,1.7199999999999999733546474089962430298328399658203125,1.70999999999999996447286321199499070644378662109375,1.6999999999999999555910790149937383830547332763671875,1.6799999999999999378275106209912337362766265869140625,1.6699999999999999289457264239899814128875732421875,1.6599999999999999200639422269887290894985198974609375,1.649999999999999911182158029987476766109466552734375,1.6399999999999999023003738329862244427204132080078125,1.62999999999999989341858963598497211933135986328125,1.62000000000000010658141036401502788066864013671875,1.6100000000000000976996261670137755572795867919921875,1.600000000000000088817841970012523233890533447265625,1.5900000000000000799360577730112709105014801025390625,1.5800000000000000710542735760100185871124267578125,1.5700000000000000621724893790087662637233734130859375,1.560000000000000053290705182007513940334320068359375,1.5500000000000000444089209850062616169452667236328125,1.54000000000000003552713678800500929355621337890625,1.54000000000000003552713678800500929355621337890625,1.5300000000000000266453525910037569701671600341796875,1.520000000000000017763568394002504646778106689453125,1.5100000000000000088817841970012523233890533447265625,1.5100000000000000088817841970012523233890533447265625,1.5,1.4899999999999999911182158029987476766109466552734375,1.479999999999999982236431605997495353221893310546875,1.479999999999999982236431605997495353221893310546875,1.4699999999999999733546474089962430298328399658203125,1.4699999999999999733546474089962430298328399658203125,1.45999999999999996447286321199499070644378662109375,1.45999999999999996447286321199499070644378662109375,1.4499999999999999555910790149937383830547332763671875,1.439999999999999946709294817992486059665679931640625,1.439999999999999946709294817992486059665679931640625,1.439999999999999946709294817992486059665679931640625,1.4299999999999999378275106209912337362766265869140625,1.4299999999999999378275106209912337362766265869140625,1.4199999999999999289457264239899814128875732421875,1.4199999999999999289457264239899814128875732421875,1.4099999999999999200639422269887290894985198974609375,1.4099999999999999200639422269887290894985198974609375,1.4099999999999999200639422269887290894985198974609375,1.399999999999999911182158029987476766109466552734375,1.399999999999999911182158029987476766109466552734375,1.3899999999999999023003738329862244427204132080078125,1.3899999999999999023003738329862244427204132080078125,1.3899999999999999023003738329862244427204132080078125,1.37999999999999989341858963598497211933135986328125,1.37999999999999989341858963598497211933135986328125,1.37999999999999989341858963598497211933135986328125,1.37000000000000010658141036401502788066864013671875,1.37000000000000010658141036401502788066864013671875,1.3600000000000000976996261670137755572795867919921875,1.3600000000000000976996261670137755572795867919921875,1.3600000000000000976996261670137755572795867919921875,1.350000000000000088817841970012523233890533447265625,1.350000000000000088817841970012523233890533447265625,1.3400000000000000799360577730112709105014801025390625,1.3400000000000000799360577730112709105014801025390625,1.3300000000000000710542735760100185871124267578125,1.3300000000000000710542735760100185871124267578125,1.3300000000000000710542735760100185871124267578125,1.3200000000000000621724893790087662637233734130859375,1.3200000000000000621724893790087662637233734130859375,1.3200000000000000621724893790087662637233734130859375,1.310000000000000053290705182007513940334320068359375,1.310000000000000053290705182007513940334320068359375,1.310000000000000053290705182007513940334320068359375,1.3000000000000000444089209850062616169452667236328125,1.3000000000000000444089209850062616169452667236328125,1.3000000000000000444089209850062616169452667236328125,1.29000000000000003552713678800500929355621337890625,1.29000000000000003552713678800500929355621337890625,1.29000000000000003552713678800500929355621337890625,1.2800000000000000266453525910037569701671600341796875,1.2800000000000000266453525910037569701671600341796875,1.2800000000000000266453525910037569701671600341796875,1.2800000000000000266453525910037569701671600341796875,1.2800000000000000266453525910037569701671600341796875,1.270000000000000017763568394002504646778106689453125,1.270000000000000017763568394002504646778106689453125,1.270000000000000017763568394002504646778106689453125,1.270000000000000017763568394002504646778106689453125,1.2600000000000000088817841970012523233890533447265625,1.2600000000000000088817841970012523233890533447265625,1.2600000000000000088817841970012523233890533447265625,1.2600000000000000088817841970012523233890533447265625,1.2600000000000000088817841970012523233890533447265625,1.2600000000000000088817841970012523233890533447265625,1.25,1.25,1.25,1.25,1.25,1.25,1.25,1.25,1.2399999999999999911182158029987476766109466552734375,1.2399999999999999911182158029987476766109466552734375,1.2399999999999999911182158029987476766109466552734375,1.2399999999999999911182158029987476766109466552734375,1.2399999999999999911182158029987476766109466552734375,1.2399999999999999911182158029987476766109466552734375,1.2399999999999999911182158029987476766109466552734375,1.229999999999999982236431605997495353221893310546875,1.229999999999999982236431605997495353221893310546875,1.229999999999999982236431605997495353221893310546875,1.229999999999999982236431605997495353221893310546875,1.229999999999999982236431605997495353221893310546875,1.229999999999999982236431605997495353221893310546875,1.2199999999999999733546474089962430298328399658203125,1.2199999999999999733546474089962430298328399658203125,1.2199999999999999733546474089962430298328399658203125,1.2199999999999999733546474089962430298328399658203125,1.2199999999999999733546474089962430298328399658203125,1.2199999999999999733546474089962430298328399658203125,1.2199999999999999733546474089962430298328399658203125,1.2199999999999999733546474089962430298328399658203125,1.2199999999999999733546474089962430298328399658203125,1.20999999999999996447286321199499070644378662109375,1.20999999999999996447286321199499070644378662109375,1.20999999999999996447286321199499070644378662109375,1.20999999999999996447286321199499070644378662109375,1.20999999999999996447286321199499070644378662109375,1.20999999999999996447286321199499070644378662109375,1.20999999999999996447286321199499070644378662109375,1.20999999999999996447286321199499070644378662109375,1.20999999999999996447286321199499070644378662109375,1.20999999999999996447286321199499070644378662109375,1.1999999999999999555910790149937383830547332763671875,1.1999999999999999555910790149937383830547332763671875,1.1999999999999999555910790149937383830547332763671875,1.1999999999999999555910790149937383830547332763671875,1.1999999999999999555910790149937383830547332763671875,1.1999999999999999555910790149937383830547332763671875,1.1999999999999999555910790149937383830547332763671875,1.1999999999999999555910790149937383830547332763671875,1.1999999999999999555910790149937383830547332763671875,1.1999999999999999555910790149937383830547332763671875,1.1999999999999999555910790149937383830547332763671875,1.189999999999999946709294817992486059665679931640625,1.189999999999999946709294817992486059665679931640625,1.189999999999999946709294817992486059665679931640625,1.189999999999999946709294817992486059665679931640625,1.189999999999999946709294817992486059665679931640625,1.189999999999999946709294817992486059665679931640625,1.189999999999999946709294817992486059665679931640625,1.189999999999999946709294817992486059665679931640625,1.189999999999999946709294817992486059665679931640625,1.1799999999999999378275106209912337362766265869140625,1.1799999999999999378275106209912337362766265869140625,1.1799999999999999378275106209912337362766265869140625,1.1799999999999999378275106209912337362766265869140625,1.1799999999999999378275106209912337362766265869140625,1.1799999999999999378275106209912337362766265869140625,1.1799999999999999378275106209912337362766265869140625,1.1799999999999999378275106209912337362766265869140625,1.1799999999999999378275106209912337362766265869140625,1.1699999999999999289457264239899814128875732421875] },
{
name: 'Recovery Rate',
color: '#8ACA2B',
lineWidth: 5,
data: [57.72999999999999687361196265555918216705322265625,59.75999999999999801048033987171947956085205078125,64.4599999999999937472239253111183643341064453125,67.18000000000000682121026329696178436279296875,70.7399999999999948840923025272786617279052734375,74,76.469999999999998863131622783839702606201171875,78.2399999999999948840923025272786617279052734375,79.6700000000000017053025658242404460906982421875,80.969999999999998863131622783839702606201171875,82.43999999999999772626324556767940521240234375,82.969999999999998863131622783839702606201171875,84.18000000000000682121026329696178436279296875,85.0100000000000051159076974727213382720947265625,85.9899999999999948840923025272786617279052734375,87.0799999999999982946974341757595539093017578125,87.7999999999999971578290569595992565155029296875,88.43999999999999772626324556767940521240234375,89.1299999999999954525264911353588104248046875,89.7999999999999971578290569595992565155029296875,90.159999999999996589394868351519107818603515625,90.4800000000000039790393202565610408782958984375,91.0100000000000051159076974727213382720947265625,91.5400000000000062527760746888816356658935546875,92.1099999999999994315658113919198513031005859375,92.7099999999999937472239253111183643341064453125,93.06999999999999317878973670303821563720703125,93.400000000000005684341886080801486968994140625,93.650000000000005684341886080801486968994140625,93.8900000000000005684341886080801486968994140625,94.06999999999999317878973670303821563720703125,94.18999999999999772626324556767940521240234375,94.2399999999999948840923025272786617279052734375,94.2600000000000051159076974727213382720947265625,94.340000000000003410605131648480892181396484375,94.2000000000000028421709430404007434844970703125,94.06999999999999317878973670303821563720703125,93.9200000000000017053025658242404460906982421875,93.6299999999999954525264911353588104248046875,93.3299999999999982946974341757595539093017578125,92.969999999999998863131622783839702606201171875,92.7699999999999960209606797434389591217041015625,92.1200000000000045474735088646411895751953125,91.590000000000003410605131648480892181396484375,90.9899999999999948840923025272786617279052734375,90.280000000000001136868377216160297393798828125,89.5499999999999971578290569595992565155029296875,88.659999999999996589394868351519107818603515625,87.6700000000000017053025658242404460906982421875,86.6299999999999954525264911353588104248046875,85.5,84.5499999999999971578290569595992565155029296875,83.599999999999994315658113919198513031005859375,82.969999999999998863131622783839702606201171875,82.2000000000000028421709430404007434844970703125,81.5199999999999960209606797434389591217041015625,81.1200000000000045474735088646411895751953125,80.81999999999999317878973670303821563720703125,80.650000000000005684341886080801486968994140625,80.5400000000000062527760746888816356658935546875,80.4500000000000028421709430404007434844970703125,80.5,80.4899999999999948840923025272786617279052734375,80.6700000000000017053025658242404460906982421875,80.590000000000003410605131648480892181396484375,80.81999999999999317878973670303821563720703125,81.2099999999999937472239253111183643341064453125,81.3700000000000045474735088646411895751953125,81.4500000000000028421709430404007434844970703125,81.840000000000003410605131648480892181396484375,82.099999999999994315658113919198513031005859375,82.340000000000003410605131648480892181396484375,82.719999999999998863131622783839702606201171875,82.780000000000001136868377216160297393798828125,83.219999999999998863131622783839702606201171875,83.219999999999998863131622783839702606201171875,83.4800000000000039790393202565610408782958984375,83.849999999999994315658113919198513031005859375,83.93000000000000682121026329696178436279296875,84.0400000000000062527760746888816356658935546875,84.150000000000005684341886080801486968994140625,84.280000000000001136868377216160297393798828125,84.849999999999994315658113919198513031005859375,85.0400000000000062527760746888816356658935546875,85.18000000000000682121026329696178436279296875,85.2999999999999971578290569595992565155029296875,85.3599999999999994315658113919198513031005859375,85.4599999999999937472239253111183643341064453125,85.56999999999999317878973670303821563720703125,85.68999999999999772626324556767940521240234375,85.81999999999999317878973670303821563720703125,85.9500000000000028421709430404007434844970703125,86.0799999999999982946974341757595539093017578125,86.2000000000000028421709430404007434844970703125,86.31999999999999317878973670303821563720703125,86.409999999999996589394868351519107818603515625,86.5199999999999960209606797434389591217041015625,86.7300000000000039790393202565610408782958984375,86.8700000000000045474735088646411895751953125,86.9599999999999937472239253111183643341064453125,87.1299999999999954525264911353588104248046875,87.31999999999999317878973670303821563720703125,87.400000000000005684341886080801486968994140625,87.5400000000000062527760746888816356658935546875,87.659999999999996589394868351519107818603515625,87.7699999999999960209606797434389591217041015625,87.8900000000000005684341886080801486968994140625,88.0100000000000051159076974727213382720947265625,88.159999999999996589394868351519107818603515625,88.2900000000000062527760746888816356658935546875,88.6099999999999994315658113919198513031005859375,88.7300000000000039790393202565610408782958984375,88.8900000000000005684341886080801486968994140625,89.0199999999999960209606797434389591217041015625,89.1700000000000017053025658242404460906982421875,89.280000000000001136868377216160297393798828125,89.4599999999999937472239253111183643341064453125,89.56999999999999317878973670303821563720703125,89.7099999999999937472239253111183643341064453125,89.93999999999999772626324556767940521240234375,90.0199999999999960209606797434389591217041015625,90.18999999999999772626324556767940521240234375,90.43999999999999772626324556767940521240234375,90.530000000000001136868377216160297393798828125,90.6099999999999994315658113919198513031005859375,90.68999999999999772626324556767940521240234375,90.7300000000000039790393202565610408782958984375,90.81999999999999317878973670303821563720703125,90.8599999999999994315658113919198513031005859375,91.0199999999999960209606797434389591217041015625,91.1299999999999954525264911353588104248046875,91.2099999999999937472239253111183643341064453125,91.31000000000000227373675443232059478759765625,91.3900000000000005684341886080801486968994140625,91.4599999999999937472239253111183643341064453125,91.5199999999999960209606797434389591217041015625,91.6200000000000045474735088646411895751953125,91.68000000000000682121026329696178436279296875,91.7699999999999960209606797434389591217041015625,91.8599999999999994315658113919198513031005859375,91.93999999999999772626324556767940521240234375,92,92.0799999999999982946974341757595539093017578125,92.1700000000000017053025658242404460906982421875,92.2099999999999937472239253111183643341064453125,92.2999999999999971578290569595992565155029296875,92.349999999999994315658113919198513031005859375,92.409999999999996589394868351519107818603515625,92.469999999999998863131622783839702606201171875,92.530000000000001136868377216160297393798828125,92.599999999999994315658113919198513031005859375,92.719999999999998863131622783839702606201171875,92.780000000000001136868377216160297393798828125,92.840000000000003410605131648480892181396484375,92.8700000000000045474735088646411895751953125,92.909999999999996589394868351519107818603515625,93.0100000000000051159076974727213382720947265625,93.090000000000003410605131648480892181396484375,93.1400000000000005684341886080801486968994140625,93.18999999999999772626324556767940521240234375,93.2399999999999948840923025272786617279052734375,93.2699999999999960209606797434389591217041015625,93.2999999999999971578290569595992565155029296875,93.340000000000003410605131648480892181396484375,93.400000000000005684341886080801486968994140625,93.5,93.5499999999999971578290569595992565155029296875,93.590000000000003410605131648480892181396484375,93.6200000000000045474735088646411895751953125,93.68000000000000682121026329696178436279296875,93.7399999999999948840923025272786617279052734375,93.81000000000000227373675443232059478759765625,93.8599999999999994315658113919198513031005859375,93.909999999999996589394868351519107818603515625,93.9599999999999937472239253111183643341064453125,93.9899999999999948840923025272786617279052734375,94.0400000000000062527760746888816356658935546875,94.099999999999994315658113919198513031005859375,94.150000000000005684341886080801486968994140625,94.2099999999999937472239253111183643341064453125,94.2600000000000051159076974727213382720947265625,94.2999999999999971578290569595992565155029296875,94.3299999999999982946974341757595539093017578125,94.3799999999999954525264911353588104248046875,94.43000000000000682121026329696178436279296875,94.469999999999998863131622783839702606201171875,94.5,94.530000000000001136868377216160297393798828125,94.56999999999999317878973670303821563720703125,94.6200000000000045474735088646411895751953125,94.659999999999996589394868351519107818603515625,94.719999999999998863131622783839702606201171875,94.7600000000000051159076974727213382720947265625,94.7999999999999971578290569595992565155029296875,94.8299999999999982946974341757595539093017578125,94.8599999999999994315658113919198513031005859375,94.909999999999996589394868351519107818603515625,94.9500000000000028421709430404007434844970703125,94.9899999999999948840923025272786617279052734375,95.030000000000001136868377216160297393798828125,95.0499999999999971578290569595992565155029296875,95.0799999999999982946974341757595539093017578125,95.099999999999994315658113919198513031005859375,95.1299999999999954525264911353588104248046875,95.18000000000000682121026329696178436279296875,95.2099999999999937472239253111183643341064453125,95.25,95.280000000000001136868377216160297393798828125,95.2999999999999971578290569595992565155029296875,95.3299999999999982946974341757595539093017578125,95.349999999999994315658113919198513031005859375,95.3900000000000005684341886080801486968994140625,95.4200000000000017053025658242404460906982421875,95.4500000000000028421709430404007434844970703125,95.469999999999998863131622783839702606201171875,95.5,95.530000000000001136868377216160297393798828125,95.5499999999999971578290569595992565155029296875,95.5799999999999982946974341757595539093017578125,95.6099999999999994315658113919198513031005859375,95.6400000000000005684341886080801486968994140625,95.6700000000000017053025658242404460906982421875,95.68999999999999772626324556767940521240234375,95.719999999999998863131622783839702606201171875,95.7399999999999948840923025272786617279052734375,95.7699999999999960209606797434389591217041015625,95.7999999999999971578290569595992565155029296875,95.81999999999999317878973670303821563720703125,95.840000000000003410605131648480892181396484375,95.8799999999999954525264911353588104248046875,95.900000000000005684341886080801486968994140625,95.9200000000000017053025658242404460906982421875,95.9599999999999937472239253111183643341064453125,95.9800000000000039790393202565610408782958984375,96.0100000000000051159076974727213382720947265625,96.030000000000001136868377216160297393798828125,96.0499999999999971578290569595992565155029296875,96.06999999999999317878973670303821563720703125,96.090000000000003410605131648480892181396484375,96.1099999999999994315658113919198513031005859375,96.1299999999999954525264911353588104248046875,96.150000000000005684341886080801486968994140625,96.1700000000000017053025658242404460906982421875,96.18999999999999772626324556767940521240234375,96.2000000000000028421709430404007434844970703125,96.219999999999998863131622783839702606201171875,96.2399999999999948840923025272786617279052734375,96.2600000000000051159076974727213382720947265625,96.2699999999999960209606797434389591217041015625,96.2900000000000062527760746888816356658935546875,96.2999999999999971578290569595992565155029296875,96.31999999999999317878973670303821563720703125,96.3299999999999982946974341757595539093017578125,96.349999999999994315658113919198513031005859375,96.3700000000000045474735088646411895751953125,96.3799999999999954525264911353588104248046875,96.400000000000005684341886080801486968994140625,96.409999999999996589394868351519107818603515625,96.4200000000000017053025658242404460906982421875,96.43999999999999772626324556767940521240234375,96.4500000000000028421709430404007434844970703125,96.4599999999999937472239253111183643341064453125,96.469999999999998863131622783839702606201171875,96.4899999999999948840923025272786617279052734375,96.5,96.5100000000000051159076974727213382720947265625,96.5199999999999960209606797434389591217041015625,96.5400000000000062527760746888816356658935546875,96.5499999999999971578290569595992565155029296875,96.56000000000000227373675443232059478759765625,96.56999999999999317878973670303821563720703125,96.5799999999999982946974341757595539093017578125,96.5799999999999982946974341757595539093017578125,96.599999999999994315658113919198513031005859375,96.6099999999999994315658113919198513031005859375,96.6200000000000045474735088646411895751953125,96.6200000000000045474735088646411895751953125,96.6299999999999954525264911353588104248046875,96.6400000000000005684341886080801486968994140625,96.650000000000005684341886080801486968994140625,96.659999999999996589394868351519107818603515625,96.659999999999996589394868351519107818603515625,96.6700000000000017053025658242404460906982421875,96.68000000000000682121026329696178436279296875,96.7000000000000028421709430404007434844970703125,96.7099999999999937472239253111183643341064453125,96.719999999999998863131622783839702606201171875,96.7300000000000039790393202565610408782958984375,96.7399999999999948840923025272786617279052734375,96.7600000000000051159076974727213382720947265625,96.7699999999999960209606797434389591217041015625,96.780000000000001136868377216160297393798828125,96.7900000000000062527760746888816356658935546875,96.7999999999999971578290569595992565155029296875,96.81000000000000227373675443232059478759765625,96.8299999999999982946974341757595539093017578125,96.840000000000003410605131648480892181396484375,96.8599999999999994315658113919198513031005859375,96.8700000000000045474735088646411895751953125,96.8799999999999954525264911353588104248046875,96.8900000000000005684341886080801486968994140625,96.909999999999996589394868351519107818603515625,96.9200000000000017053025658242404460906982421875,96.93000000000000682121026329696178436279296875,96.9500000000000028421709430404007434844970703125,96.9599999999999937472239253111183643341064453125,96.969999999999998863131622783839702606201171875,96.9800000000000039790393202565610408782958984375,96.9899999999999948840923025272786617279052734375,97,97.0100000000000051159076974727213382720947265625,97.0199999999999960209606797434389591217041015625,97.030000000000001136868377216160297393798828125,97.0400000000000062527760746888816356658935546875,97.0499999999999971578290569595992565155029296875,97.06000000000000227373675443232059478759765625,97.06999999999999317878973670303821563720703125,97.0799999999999982946974341757595539093017578125,97.090000000000003410605131648480892181396484375,97.090000000000003410605131648480892181396484375,97.099999999999994315658113919198513031005859375,97.1099999999999994315658113919198513031005859375,97.1099999999999994315658113919198513031005859375,97.1200000000000045474735088646411895751953125,97.1299999999999954525264911353588104248046875,97.1400000000000005684341886080801486968994140625,97.1400000000000005684341886080801486968994140625,97.150000000000005684341886080801486968994140625,97.159999999999996589394868351519107818603515625,97.1700000000000017053025658242404460906982421875,97.18000000000000682121026329696178436279296875,97.18000000000000682121026329696178436279296875,97.18999999999999772626324556767940521240234375,97.18999999999999772626324556767940521240234375,97.18999999999999772626324556767940521240234375,97.2000000000000028421709430404007434844970703125,97.2099999999999937472239253111183643341064453125,97.219999999999998863131622783839702606201171875,97.219999999999998863131622783839702606201171875,97.2300000000000039790393202565610408782958984375,97.2300000000000039790393202565610408782958984375,97.2300000000000039790393202565610408782958984375,97.2300000000000039790393202565610408782958984375,97.2300000000000039790393202565610408782958984375,97.2399999999999948840923025272786617279052734375,97.2399999999999948840923025272786617279052734375,97.2399999999999948840923025272786617279052734375,97.2399999999999948840923025272786617279052734375,97.25,97.25,97.25,97.2600000000000051159076974727213382720947265625,97.2600000000000051159076974727213382720947265625,97.2600000000000051159076974727213382720947265625,97.2600000000000051159076974727213382720947265625,97.2600000000000051159076974727213382720947265625,97.2699999999999960209606797434389591217041015625,97.2699999999999960209606797434389591217041015625,97.280000000000001136868377216160297393798828125,97.280000000000001136868377216160297393798828125,97.280000000000001136868377216160297393798828125,97.280000000000001136868377216160297393798828125,97.280000000000001136868377216160297393798828125,97.280000000000001136868377216160297393798828125,97.2900000000000062527760746888816356658935546875,97.2999999999999971578290569595992565155029296875,97.2999999999999971578290569595992565155029296875,97.2999999999999971578290569595992565155029296875,97.31000000000000227373675443232059478759765625,97.31000000000000227373675443232059478759765625,97.31000000000000227373675443232059478759765625,97.31999999999999317878973670303821563720703125,97.3299999999999982946974341757595539093017578125,97.3299999999999982946974341757595539093017578125,97.340000000000003410605131648480892181396484375,97.340000000000003410605131648480892181396484375,97.340000000000003410605131648480892181396484375,97.349999999999994315658113919198513031005859375,97.349999999999994315658113919198513031005859375,97.3599999999999994315658113919198513031005859375,97.3599999999999994315658113919198513031005859375,97.3700000000000045474735088646411895751953125,97.3700000000000045474735088646411895751953125,97.3700000000000045474735088646411895751953125,97.3799999999999954525264911353588104248046875,97.3900000000000005684341886080801486968994140625,97.3900000000000005684341886080801486968994140625,97.400000000000005684341886080801486968994140625,97.400000000000005684341886080801486968994140625,97.400000000000005684341886080801486968994140625,97.409999999999996589394868351519107818603515625,97.409999999999996589394868351519107818603515625,97.4200000000000017053025658242404460906982421875,97.4200000000000017053025658242404460906982421875,97.4200000000000017053025658242404460906982421875,97.43000000000000682121026329696178436279296875,97.43000000000000682121026329696178436279296875,97.43000000000000682121026329696178436279296875,97.43999999999999772626324556767940521240234375,97.43999999999999772626324556767940521240234375,97.43999999999999772626324556767940521240234375,97.4500000000000028421709430404007434844970703125,97.4500000000000028421709430404007434844970703125,97.4500000000000028421709430404007434844970703125,97.4500000000000028421709430404007434844970703125,97.4500000000000028421709430404007434844970703125,97.4599999999999937472239253111183643341064453125,97.4599999999999937472239253111183643341064453125,97.4599999999999937472239253111183643341064453125,97.4599999999999937472239253111183643341064453125,97.469999999999998863131622783839702606201171875,97.469999999999998863131622783839702606201171875,97.469999999999998863131622783839702606201171875,97.469999999999998863131622783839702606201171875,97.4800000000000039790393202565610408782958984375,97.4800000000000039790393202565610408782958984375,97.4800000000000039790393202565610408782958984375,97.4899999999999948840923025272786617279052734375,97.4899999999999948840923025272786617279052734375,97.4899999999999948840923025272786617279052734375,97.4899999999999948840923025272786617279052734375,97.4899999999999948840923025272786617279052734375,97.4899999999999948840923025272786617279052734375,97.4899999999999948840923025272786617279052734375,97.5,97.5,97.5,97.5,97.5100000000000051159076974727213382720947265625,97.5100000000000051159076974727213382720947265625,97.5100000000000051159076974727213382720947265625,97.5100000000000051159076974727213382720947265625,97.5100000000000051159076974727213382720947265625,97.5100000000000051159076974727213382720947265625,97.5199999999999960209606797434389591217041015625,97.5199999999999960209606797434389591217041015625,97.5199999999999960209606797434389591217041015625,97.5199999999999960209606797434389591217041015625,97.530000000000001136868377216160297393798828125,97.530000000000001136868377216160297393798828125,97.530000000000001136868377216160297393798828125,97.5400000000000062527760746888816356658935546875,97.5400000000000062527760746888816356658935546875,97.5400000000000062527760746888816356658935546875,97.5499999999999971578290569595992565155029296875,97.5499999999999971578290569595992565155029296875,97.5499999999999971578290569595992565155029296875,97.56000000000000227373675443232059478759765625,97.56000000000000227373675443232059478759765625,97.56999999999999317878973670303821563720703125,97.56999999999999317878973670303821563720703125,97.56999999999999317878973670303821563720703125,97.5799999999999982946974341757595539093017578125,97.5799999999999982946974341757595539093017578125,97.590000000000003410605131648480892181396484375,97.590000000000003410605131648480892181396484375,97.599999999999994315658113919198513031005859375,97.599999999999994315658113919198513031005859375,97.599999999999994315658113919198513031005859375,97.6099999999999994315658113919198513031005859375,97.6099999999999994315658113919198513031005859375,97.6200000000000045474735088646411895751953125,97.6200000000000045474735088646411895751953125,97.6299999999999954525264911353588104248046875,97.6299999999999954525264911353588104248046875,97.6400000000000005684341886080801486968994140625,97.6400000000000005684341886080801486968994140625,97.6400000000000005684341886080801486968994140625,97.650000000000005684341886080801486968994140625,97.650000000000005684341886080801486968994140625,97.659999999999996589394868351519107818603515625,97.659999999999996589394868351519107818603515625,97.659999999999996589394868351519107818603515625,97.6700000000000017053025658242404460906982421875,97.6700000000000017053025658242404460906982421875,97.6700000000000017053025658242404460906982421875,97.6700000000000017053025658242404460906982421875,97.68000000000000682121026329696178436279296875,97.68000000000000682121026329696178436279296875,97.68000000000000682121026329696178436279296875,97.68999999999999772626324556767940521240234375,97.68999999999999772626324556767940521240234375,97.68999999999999772626324556767940521240234375,97.68999999999999772626324556767940521240234375,97.7000000000000028421709430404007434844970703125,97.7000000000000028421709430404007434844970703125,97.7000000000000028421709430404007434844970703125,97.7000000000000028421709430404007434844970703125,97.7099999999999937472239253111183643341064453125,97.7099999999999937472239253111183643341064453125,97.7099999999999937472239253111183643341064453125,97.7099999999999937472239253111183643341064453125,97.7099999999999937472239253111183643341064453125,97.719999999999998863131622783839702606201171875,97.719999999999998863131622783839702606201171875,97.719999999999998863131622783839702606201171875,97.719999999999998863131622783839702606201171875,97.719999999999998863131622783839702606201171875,97.719999999999998863131622783839702606201171875,97.719999999999998863131622783839702606201171875,97.719999999999998863131622783839702606201171875,97.719999999999998863131622783839702606201171875,97.719999999999998863131622783839702606201171875,97.719999999999998863131622783839702606201171875,97.7300000000000039790393202565610408782958984375,97.7300000000000039790393202565610408782958984375,97.7300000000000039790393202565610408782958984375,97.7300000000000039790393202565610408782958984375,97.7300000000000039790393202565610408782958984375,97.7300000000000039790393202565610408782958984375,97.7300000000000039790393202565610408782958984375,97.7300000000000039790393202565610408782958984375,97.7300000000000039790393202565610408782958984375,97.7300000000000039790393202565610408782958984375,97.7300000000000039790393202565610408782958984375,97.7300000000000039790393202565610408782958984375,97.7300000000000039790393202565610408782958984375,97.7300000000000039790393202565610408782958984375,97.7300000000000039790393202565610408782958984375,97.7300000000000039790393202565610408782958984375,97.7300000000000039790393202565610408782958984375,97.7300000000000039790393202565610408782958984375,97.7300000000000039790393202565610408782958984375,97.7300000000000039790393202565610408782958984375,97.7300000000000039790393202565610408782958984375,97.7300000000000039790393202565610408782958984375,97.7300000000000039790393202565610408782958984375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.7300000000000039790393202565610408782958984375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.7399999999999948840923025272786617279052734375,97.75,97.75,97.75,97.75,97.75,97.75,97.75,97.7600000000000051159076974727213382720947265625,97.7600000000000051159076974727213382720947265625,97.7600000000000051159076974727213382720947265625,97.7600000000000051159076974727213382720947265625,97.7600000000000051159076974727213382720947265625,97.7600000000000051159076974727213382720947265625,97.7600000000000051159076974727213382720947265625,97.7600000000000051159076974727213382720947265625,97.7600000000000051159076974727213382720947265625,97.7699999999999960209606797434389591217041015625,97.7699999999999960209606797434389591217041015625,97.7699999999999960209606797434389591217041015625,97.7699999999999960209606797434389591217041015625,97.7699999999999960209606797434389591217041015625,97.7699999999999960209606797434389591217041015625,97.7699999999999960209606797434389591217041015625,97.780000000000001136868377216160297393798828125,97.780000000000001136868377216160297393798828125,97.780000000000001136868377216160297393798828125,97.780000000000001136868377216160297393798828125,97.780000000000001136868377216160297393798828125,97.780000000000001136868377216160297393798828125,97.7900000000000062527760746888816356658935546875,97.7900000000000062527760746888816356658935546875,97.7900000000000062527760746888816356658935546875,97.7900000000000062527760746888816356658935546875,97.7999999999999971578290569595992565155029296875,97.7999999999999971578290569595992565155029296875,97.7999999999999971578290569595992565155029296875,97.7999999999999971578290569595992565155029296875,97.7999999999999971578290569595992565155029296875,97.81000000000000227373675443232059478759765625,97.81000000000000227373675443232059478759765625,97.81000000000000227373675443232059478759765625,97.81000000000000227373675443232059478759765625,97.81000000000000227373675443232059478759765625,97.81999999999999317878973670303821563720703125,97.81999999999999317878973670303821563720703125,97.81999999999999317878973670303821563720703125,97.81999999999999317878973670303821563720703125,97.81999999999999317878973670303821563720703125,97.81999999999999317878973670303821563720703125,97.8299999999999982946974341757595539093017578125,97.8299999999999982946974341757595539093017578125,97.8299999999999982946974341757595539093017578125,97.8299999999999982946974341757595539093017578125,97.8299999999999982946974341757595539093017578125,97.8299999999999982946974341757595539093017578125,97.840000000000003410605131648480892181396484375,97.840000000000003410605131648480892181396484375,97.840000000000003410605131648480892181396484375,97.840000000000003410605131648480892181396484375,97.840000000000003410605131648480892181396484375,97.849999999999994315658113919198513031005859375,97.849999999999994315658113919198513031005859375,97.849999999999994315658113919198513031005859375,97.849999999999994315658113919198513031005859375,97.849999999999994315658113919198513031005859375,97.849999999999994315658113919198513031005859375,97.849999999999994315658113919198513031005859375,97.8599999999999994315658113919198513031005859375,97.8599999999999994315658113919198513031005859375,97.8599999999999994315658113919198513031005859375,97.8599999999999994315658113919198513031005859375,97.8599999999999994315658113919198513031005859375,97.8599999999999994315658113919198513031005859375,97.8599999999999994315658113919198513031005859375,97.8599999999999994315658113919198513031005859375,97.8599999999999994315658113919198513031005859375,97.8700000000000045474735088646411895751953125,97.8700000000000045474735088646411895751953125,97.8700000000000045474735088646411895751953125,97.8700000000000045474735088646411895751953125,97.8700000000000045474735088646411895751953125,97.8700000000000045474735088646411895751953125,97.8700000000000045474735088646411895751953125,97.8700000000000045474735088646411895751953125,97.8700000000000045474735088646411895751953125,97.8700000000000045474735088646411895751953125,97.8700000000000045474735088646411895751953125,97.8700000000000045474735088646411895751953125,97.8700000000000045474735088646411895751953125,97.8799999999999954525264911353588104248046875,97.8799999999999954525264911353588104248046875,97.8799999999999954525264911353588104248046875,97.8799999999999954525264911353588104248046875,97.8799999999999954525264911353588104248046875,97.8799999999999954525264911353588104248046875,97.8799999999999954525264911353588104248046875,97.8799999999999954525264911353588104248046875,97.8799999999999954525264911353588104248046875,97.8799999999999954525264911353588104248046875,97.8900000000000005684341886080801486968994140625,97.8900000000000005684341886080801486968994140625,97.8900000000000005684341886080801486968994140625,97.8900000000000005684341886080801486968994140625,97.8900000000000005684341886080801486968994140625,97.8900000000000005684341886080801486968994140625,97.8900000000000005684341886080801486968994140625,97.8900000000000005684341886080801486968994140625,97.8900000000000005684341886080801486968994140625,97.8900000000000005684341886080801486968994140625,97.900000000000005684341886080801486968994140625,97.900000000000005684341886080801486968994140625,97.900000000000005684341886080801486968994140625,97.900000000000005684341886080801486968994140625,97.900000000000005684341886080801486968994140625,97.900000000000005684341886080801486968994140625,97.900000000000005684341886080801486968994140625,97.900000000000005684341886080801486968994140625,97.900000000000005684341886080801486968994140625,97.909999999999996589394868351519107818603515625,97.909999999999996589394868351519107818603515625,97.909999999999996589394868351519107818603515625,97.909999999999996589394868351519107818603515625,97.909999999999996589394868351519107818603515625,97.909999999999996589394868351519107818603515625,97.909999999999996589394868351519107818603515625,97.9200000000000017053025658242404460906982421875,97.9200000000000017053025658242404460906982421875,97.9200000000000017053025658242404460906982421875,97.9200000000000017053025658242404460906982421875,97.9200000000000017053025658242404460906982421875,97.9200000000000017053025658242404460906982421875,97.93000000000000682121026329696178436279296875,97.93000000000000682121026329696178436279296875,97.93000000000000682121026329696178436279296875,97.93000000000000682121026329696178436279296875,97.93999999999999772626324556767940521240234375,97.93999999999999772626324556767940521240234375,97.93999999999999772626324556767940521240234375,97.93999999999999772626324556767940521240234375,97.93999999999999772626324556767940521240234375,97.9500000000000028421709430404007434844970703125,97.9500000000000028421709430404007434844970703125,97.9500000000000028421709430404007434844970703125,97.9500000000000028421709430404007434844970703125,97.9599999999999937472239253111183643341064453125,97.9599999999999937472239253111183643341064453125,97.9599999999999937472239253111183643341064453125,97.969999999999998863131622783839702606201171875,97.969999999999998863131622783839702606201171875,97.969999999999998863131622783839702606201171875,97.9800000000000039790393202565610408782958984375,97.9800000000000039790393202565610408782958984375,97.9800000000000039790393202565610408782958984375,97.9899999999999948840923025272786617279052734375,97.9899999999999948840923025272786617279052734375,98,98.0100000000000051159076974727213382720947265625,98.0100000000000051159076974727213382720947265625,98.0199999999999960209606797434389591217041015625,98.030000000000001136868377216160297393798828125,98.030000000000001136868377216160297393798828125,98.0400000000000062527760746888816356658935546875,98.06000000000000227373675443232059478759765625,98.06999999999999317878973670303821563720703125,98.0799999999999982946974341757595539093017578125,98.090000000000003410605131648480892181396484375,98.099999999999994315658113919198513031005859375,98.1099999999999994315658113919198513031005859375,98.1200000000000045474735088646411895751953125,98.1299999999999954525264911353588104248046875,98.1400000000000005684341886080801486968994140625,98.159999999999996589394868351519107818603515625,98.1700000000000017053025658242404460906982421875,98.18000000000000682121026329696178436279296875,98.18999999999999772626324556767940521240234375,98.2099999999999937472239253111183643341064453125,98.219999999999998863131622783839702606201171875,98.2300000000000039790393202565610408782958984375,98.25,98.2600000000000051159076974727213382720947265625,98.2699999999999960209606797434389591217041015625,98.280000000000001136868377216160297393798828125,98.2900000000000062527760746888816356658935546875,98.2999999999999971578290569595992565155029296875,98.31999999999999317878973670303821563720703125,98.3299999999999982946974341757595539093017578125,98.340000000000003410605131648480892181396484375,98.349999999999994315658113919198513031005859375,98.3599999999999994315658113919198513031005859375,98.3700000000000045474735088646411895751953125,98.3799999999999954525264911353588104248046875,98.3900000000000005684341886080801486968994140625,98.400000000000005684341886080801486968994140625,98.409999999999996589394868351519107818603515625,98.4200000000000017053025658242404460906982421875,98.43000000000000682121026329696178436279296875,98.43999999999999772626324556767940521240234375,98.4500000000000028421709430404007434844970703125,98.4599999999999937472239253111183643341064453125,98.4599999999999937472239253111183643341064453125,98.469999999999998863131622783839702606201171875,98.4800000000000039790393202565610408782958984375,98.4899999999999948840923025272786617279052734375,98.4899999999999948840923025272786617279052734375,98.5,98.5100000000000051159076974727213382720947265625,98.5199999999999960209606797434389591217041015625,98.5199999999999960209606797434389591217041015625,98.530000000000001136868377216160297393798828125,98.530000000000001136868377216160297393798828125,98.5400000000000062527760746888816356658935546875,98.5400000000000062527760746888816356658935546875,98.5499999999999971578290569595992565155029296875,98.56000000000000227373675443232059478759765625,98.56000000000000227373675443232059478759765625,98.56000000000000227373675443232059478759765625,98.56999999999999317878973670303821563720703125,98.56999999999999317878973670303821563720703125,98.5799999999999982946974341757595539093017578125,98.5799999999999982946974341757595539093017578125,98.590000000000003410605131648480892181396484375,98.590000000000003410605131648480892181396484375,98.590000000000003410605131648480892181396484375,98.599999999999994315658113919198513031005859375,98.599999999999994315658113919198513031005859375,98.6099999999999994315658113919198513031005859375,98.6099999999999994315658113919198513031005859375,98.6099999999999994315658113919198513031005859375,98.6200000000000045474735088646411895751953125,98.6200000000000045474735088646411895751953125,98.6200000000000045474735088646411895751953125,98.6299999999999954525264911353588104248046875,98.6299999999999954525264911353588104248046875,98.6400000000000005684341886080801486968994140625,98.6400000000000005684341886080801486968994140625,98.6400000000000005684341886080801486968994140625,98.650000000000005684341886080801486968994140625,98.650000000000005684341886080801486968994140625,98.659999999999996589394868351519107818603515625,98.659999999999996589394868351519107818603515625,98.6700000000000017053025658242404460906982421875,98.6700000000000017053025658242404460906982421875,98.6700000000000017053025658242404460906982421875,98.68000000000000682121026329696178436279296875,98.68000000000000682121026329696178436279296875,98.68000000000000682121026329696178436279296875,98.68999999999999772626324556767940521240234375,98.68999999999999772626324556767940521240234375,98.68999999999999772626324556767940521240234375,98.7000000000000028421709430404007434844970703125,98.7000000000000028421709430404007434844970703125,98.7000000000000028421709430404007434844970703125,98.7099999999999937472239253111183643341064453125,98.7099999999999937472239253111183643341064453125,98.7099999999999937472239253111183643341064453125,98.719999999999998863131622783839702606201171875,98.719999999999998863131622783839702606201171875,98.719999999999998863131622783839702606201171875,98.719999999999998863131622783839702606201171875,98.719999999999998863131622783839702606201171875,98.7300000000000039790393202565610408782958984375,98.7300000000000039790393202565610408782958984375,98.7300000000000039790393202565610408782958984375,98.7300000000000039790393202565610408782958984375,98.7399999999999948840923025272786617279052734375,98.7399999999999948840923025272786617279052734375,98.7399999999999948840923025272786617279052734375,98.7399999999999948840923025272786617279052734375,98.7399999999999948840923025272786617279052734375,98.7399999999999948840923025272786617279052734375,98.75,98.75,98.75,98.75,98.75,98.75,98.75,98.75,98.7600000000000051159076974727213382720947265625,98.7600000000000051159076974727213382720947265625,98.7600000000000051159076974727213382720947265625,98.7600000000000051159076974727213382720947265625,98.7600000000000051159076974727213382720947265625,98.7600000000000051159076974727213382720947265625,98.7600000000000051159076974727213382720947265625,98.7699999999999960209606797434389591217041015625,98.7699999999999960209606797434389591217041015625,98.7699999999999960209606797434389591217041015625,98.7699999999999960209606797434389591217041015625,98.7699999999999960209606797434389591217041015625,98.7699999999999960209606797434389591217041015625,98.780000000000001136868377216160297393798828125,98.780000000000001136868377216160297393798828125,98.780000000000001136868377216160297393798828125,98.780000000000001136868377216160297393798828125,98.780000000000001136868377216160297393798828125,98.780000000000001136868377216160297393798828125,98.780000000000001136868377216160297393798828125,98.780000000000001136868377216160297393798828125,98.780000000000001136868377216160297393798828125,98.7900000000000062527760746888816356658935546875,98.7900000000000062527760746888816356658935546875,98.7900000000000062527760746888816356658935546875,98.7900000000000062527760746888816356658935546875,98.7900000000000062527760746888816356658935546875,98.7900000000000062527760746888816356658935546875,98.7900000000000062527760746888816356658935546875,98.7900000000000062527760746888816356658935546875,98.7900000000000062527760746888816356658935546875,98.7900000000000062527760746888816356658935546875,98.7999999999999971578290569595992565155029296875,98.7999999999999971578290569595992565155029296875,98.7999999999999971578290569595992565155029296875,98.7999999999999971578290569595992565155029296875,98.7999999999999971578290569595992565155029296875,98.7999999999999971578290569595992565155029296875,98.7999999999999971578290569595992565155029296875,98.7999999999999971578290569595992565155029296875,98.7999999999999971578290569595992565155029296875,98.7999999999999971578290569595992565155029296875,98.7999999999999971578290569595992565155029296875,98.81000000000000227373675443232059478759765625,98.81000000000000227373675443232059478759765625,98.81000000000000227373675443232059478759765625,98.81000000000000227373675443232059478759765625,98.81000000000000227373675443232059478759765625,98.81000000000000227373675443232059478759765625,98.81000000000000227373675443232059478759765625,98.81000000000000227373675443232059478759765625,98.81000000000000227373675443232059478759765625,98.81999999999999317878973670303821563720703125,98.81999999999999317878973670303821563720703125,98.81999999999999317878973670303821563720703125,98.81999999999999317878973670303821563720703125,98.81999999999999317878973670303821563720703125,98.81999999999999317878973670303821563720703125,98.81999999999999317878973670303821563720703125,98.81999999999999317878973670303821563720703125,98.81999999999999317878973670303821563720703125,98.8299999999999982946974341757595539093017578125] }
],
responsive: {
rules: [{
condition: {
maxWidth: 400
},
chartOptions: {
legend: {
layout: 'horizontal',
align: 'center',
verticalAlign: 'bottom'
}
}
}]
}
});
</script>
<a class="flip_cases_back" href="javascript: void(0);" style="clear: both;width:100%;">
Show Statistics
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row" style="margin-top:40px; clear: both;padding-left:30px;padding-right:30px;">
<div class="col-12" style="margin-bottom:20px;">
<style>
/* Tabs panel */
.tabbable-panel-cases {
border: 1px solid #ccc;
padding: 10px;
}
/* Default mode */
.tabbable-line-cases>.nav-tabs {
border: none;
margin: 0px;
}
.tabbable-line-cases>.nav-tabs>li {
margin-right: 2px;
}
.tabbable-line-cases>.nav-tabs>li>a {
border: 0;
margin-right: 0;
color: #737373;
font-size: 13px;
text-decoration: none !important;
}
.tabbable-line-cases>.nav-tabs>li>a>i {
color: #a6a6a6;
}
.tabbable-line-cases>.nav-tabs>li.open,
.tabbable-line-cases>.nav-tabs>li:hover {
border-bottom: 3px solid #fbcdcf;
}
.tabbable-line-cases>.nav-tabs>li.open>a,
.tabbable-line-cases>.nav-tabs>li:hover>a {
border: 0;
background: none !important;
color: #333333;
}
.tabbable-line-cases>.nav-tabs>li.open>a>i,
.tabbable-line-cases>.nav-tabs>li:hover>a>i {
color: #77DDFF;
}
.tabbable-line-cases>.nav-tabs>li.open .dropdown-menu,
.tabbable-line-cases>.nav-tabs>li:hover .dropdown-menu {
margin-top: 0px;
}
.tabbable-line-cases>.nav-tabs>li.active {
border-bottom: 3px solid #33CCFF;
position: relative;
}
.tabbable-line-cases>.nav-tabs>li.active>a {
border: 0;
color: #333333;
}
.tabbable-line-cases>.nav-tabs>li.active>a>i {
color: #404040;
}
.tabbable-line-cases>.tab-content {
margin-top: -3px;
background-color: #fff;
border: 0;
border-top: 1px solid #eee;
padding: 15px 0;
}
.portlet .tabbable-line-cases>.tab-content {
padding-bottom: 0;
}
</style>
<div class="tabbable-panel-cases">
<div class="tabbable-line-cases">
<ul class="nav nav-tabs">
<li class="active">
<a data-toggle="tab" href="#coronavirus-cases-daily">
daily
</a>
</li>
<li>
<a data-toggle="tab" href="#coronavirus-cases-linear">
linear
</a>
</li>
<li>
<a data-toggle="tab" href="#coronavirus-cases-log">
logarithmic
</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane" id="coronavirus-cases-linear">
</div>
<div class="tab-pane" id="coronavirus-cases-log">
</div>
<div class="tab-pane active" id="coronavirus-cases-daily">
</div>
</div>
</div>
</div>
<script type="text/javascript">
Highcharts.chart('coronavirus-cases-linear', {
chart: {
type: 'line'
},
title: {
text: 'Total Cases'
},
subtitle: {
text: '(Linear Scale)'
},
xAxis: {
categories: ["Jan 22, 2020","Jan 23, 2020","Jan 24, 2020","Jan 25, 2020","Jan 26, 2020","Jan 27, 2020","Jan 28, 2020","Jan 29, 2020","Jan 30, 2020","Jan 31, 2020","Feb 01, 2020","Feb 02, 2020","Feb 03, 2020","Feb 04, 2020","Feb 05, 2020","Feb 06, 2020","Feb 07, 2020","Feb 08, 2020","Feb 09, 2020","Feb 10, 2020","Feb 11, 2020","Feb 12, 2020","Feb 13, 2020","Feb 14, 2020","Feb 15, 2020","Feb 16, 2020","Feb 17, 2020","Feb 18, 2020","Feb 19, 2020","Feb 20, 2020","Feb 21, 2020","Feb 22, 2020","Feb 23, 2020","Feb 24, 2020","Feb 25, 2020","Feb 26, 2020","Feb 27, 2020","Feb 28, 2020","Feb 29, 2020","Mar 01, 2020","Mar 02, 2020","Mar 03, 2020","Mar 04, 2020","Mar 05, 2020","Mar 06, 2020","Mar 07, 2020","Mar 08, 2020","Mar 09, 2020","Mar 10, 2020","Mar 11, 2020","Mar 12, 2020","Mar 13, 2020","Mar 14, 2020","Mar 15, 2020","Mar 16, 2020","Mar 17, 2020","Mar 18, 2020","Mar 19, 2020","Mar 20, 2020","Mar 21, 2020","Mar 22, 2020","Mar 23, 2020","Mar 24, 2020","Mar 25, 2020","Mar 26, 2020","Mar 27, 2020","Mar 28, 2020","Mar 29, 2020","Mar 30, 2020","Mar 31, 2020","Apr 01, 2020","Apr 02, 2020","Apr 03, 2020","Apr 04, 2020","Apr 05, 2020","Apr 06, 2020","Apr 07, 2020","Apr 08, 2020","Apr 09, 2020","Apr 10, 2020","Apr 11, 2020","Apr 12, 2020","Apr 13, 2020","Apr 14, 2020","Apr 15, 2020","Apr 16, 2020","Apr 17, 2020","Apr 18, 2020","Apr 19, 2020","Apr 20, 2020","Apr 21, 2020","Apr 22, 2020","Apr 23, 2020","Apr 24, 2020","Apr 25, 2020","Apr 26, 2020","Apr 27, 2020","Apr 28, 2020","Apr 29, 2020","Apr 30, 2020","May 01, 2020","May 02, 2020","May 03, 2020","May 04, 2020","May 05, 2020","May 06, 2020","May 07, 2020","May 08, 2020","May 09, 2020","May 10, 2020","May 11, 2020","May 12, 2020","May 13, 2020","May 14, 2020","May 15, 2020","May 16, 2020","May 17, 2020","May 18, 2020","May 19, 2020","May 20, 2020","May 21, 2020","May 22, 2020","May 23, 2020","May 24, 2020","May 25, 2020","May 26, 2020","May 27, 2020","May 28, 2020","May 29, 2020","May 30, 2020","May 31, 2020","Jun 01, 2020","Jun 02, 2020","Jun 03, 2020","Jun 04, 2020","Jun 05, 2020","Jun 06, 2020","Jun 07, 2020","Jun 08, 2020","Jun 09, 2020","Jun 10, 2020","Jun 11, 2020","Jun 12, 2020","Jun 13, 2020","Jun 14, 2020","Jun 15, 2020","Jun 16, 2020","Jun 17, 2020","Jun 18, 2020","Jun 19, 2020","Jun 20, 2020","Jun 21, 2020","Jun 22, 2020","Jun 23, 2020","Jun 24, 2020","Jun 25, 2020","Jun 26, 2020","Jun 27, 2020","Jun 28, 2020","Jun 29, 2020","Jun 30, 2020","Jul 01, 2020","Jul 02, 2020","Jul 03, 2020","Jul 04, 2020","Jul 05, 2020","Jul 06, 2020","Jul 07, 2020","Jul 08, 2020","Jul 09, 2020","Jul 10, 2020","Jul 11, 2020","Jul 12, 2020","Jul 13, 2020","Jul 14, 2020","Jul 15, 2020","Jul 16, 2020","Jul 17, 2020","Jul 18, 2020","Jul 19, 2020","Jul 20, 2020","Jul 21, 2020","Jul 22, 2020","Jul 23, 2020","Jul 24, 2020","Jul 25, 2020","Jul 26, 2020","Jul 27, 2020","Jul 28, 2020","Jul 29, 2020","Jul 30, 2020","Jul 31, 2020","Aug 01, 2020","Aug 02, 2020","Aug 03, 2020","Aug 04, 2020","Aug 05, 2020","Aug 06, 2020","Aug 07, 2020","Aug 08, 2020","Aug 09, 2020","Aug 10, 2020","Aug 11, 2020","Aug 12, 2020","Aug 13, 2020","Aug 14, 2020","Aug 15, 2020","Aug 16, 2020","Aug 17, 2020","Aug 18, 2020","Aug 19, 2020","Aug 20, 2020","Aug 21, 2020","Aug 22, 2020","Aug 23, 2020","Aug 24, 2020","Aug 25, 2020","Aug 26, 2020","Aug 27, 2020","Aug 28, 2020","Aug 29, 2020","Aug 30, 2020","Aug 31, 2020","Sep 01, 2020","Sep 02, 2020","Sep 03, 2020","Sep 04, 2020","Sep 05, 2020","Sep 06, 2020","Sep 07, 2020","Sep 08, 2020","Sep 09, 2020","Sep 10, 2020","Sep 11, 2020","Sep 12, 2020","Sep 13, 2020","Sep 14, 2020","Sep 15, 2020","Sep 16, 2020","Sep 17, 2020","Sep 18, 2020","Sep 19, 2020","Sep 20, 2020","Sep 21, 2020","Sep 22, 2020","Sep 23, 2020","Sep 24, 2020","Sep 25, 2020","Sep 26, 2020","Sep 27, 2020","Sep 28, 2020","Sep 29, 2020","Sep 30, 2020","Oct 01, 2020","Oct 02, 2020","Oct 03, 2020","Oct 04, 2020","Oct 05, 2020","Oct 06, 2020","Oct 07, 2020","Oct 08, 2020","Oct 09, 2020","Oct 10, 2020","Oct 11, 2020","Oct 12, 2020","Oct 13, 2020","Oct 14, 2020","Oct 15, 2020","Oct 16, 2020","Oct 17, 2020","Oct 18, 2020","Oct 19, 2020","Oct 20, 2020","Oct 21, 2020","Oct 22, 2020","Oct 23, 2020","Oct 24, 2020","Oct 25, 2020","Oct 26, 2020","Oct 27, 2020","Oct 28, 2020","Oct 29, 2020","Oct 30, 2020","Oct 31, 2020","Nov 01, 2020","Nov 02, 2020","Nov 03, 2020","Nov 04, 2020","Nov 05, 2020","Nov 06, 2020","Nov 07, 2020","Nov 08, 2020","Nov 09, 2020","Nov 10, 2020","Nov 11, 2020","Nov 12, 2020","Nov 13, 2020","Nov 14, 2020","Nov 15, 2020","Nov 16, 2020","Nov 17, 2020","Nov 18, 2020","Nov 19, 2020","Nov 20, 2020","Nov 21, 2020","Nov 22, 2020","Nov 23, 2020","Nov 24, 2020","Nov 25, 2020","Nov 26, 2020","Nov 27, 2020","Nov 28, 2020","Nov 29, 2020","Nov 30, 2020","Dec 01, 2020","Dec 02, 2020","Dec 03, 2020","Dec 04, 2020","Dec 05, 2020","Dec 06, 2020","Dec 07, 2020","Dec 08, 2020","Dec 09, 2020","Dec 10, 2020","Dec 11, 2020","Dec 12, 2020","Dec 13, 2020","Dec 14, 2020","Dec 15, 2020","Dec 16, 2020","Dec 17, 2020","Dec 18, 2020","Dec 19, 2020","Dec 20, 2020","Dec 21, 2020","Dec 22, 2020","Dec 23, 2020","Dec 24, 2020","Dec 25, 2020","Dec 26, 2020","Dec 27, 2020","Dec 28, 2020","Dec 29, 2020","Dec 30, 2020","Dec 31, 2020","Jan 01, 2021","Jan 02, 2021","Jan 03, 2021","Jan 04, 2021","Jan 05, 2021","Jan 06, 2021","Jan 07, 2021","Jan 08, 2021","Jan 09, 2021","Jan 10, 2021","Jan 11, 2021","Jan 12, 2021","Jan 13, 2021","Jan 14, 2021","Jan 15, 2021","Jan 16, 2021","Jan 17, 2021","Jan 18, 2021","Jan 19, 2021","Jan 20, 2021","Jan 21, 2021","Jan 22, 2021","Jan 23, 2021","Jan 24, 2021","Jan 25, 2021","Jan 26, 2021","Jan 27, 2021","Jan 28, 2021","Jan 29, 2021","Jan 30, 2021","Jan 31, 2021","Feb 01, 2021","Feb 02, 2021","Feb 03, 2021","Feb 04, 2021","Feb 05, 2021","Feb 06, 2021","Feb 07, 2021","Feb 08, 2021","Feb 09, 2021","Feb 10, 2021","Feb 11, 2021","Feb 12, 2021","Feb 13, 2021","Feb 14, 2021","Feb 15, 2021","Feb 16, 2021","Feb 17, 2021","Feb 18, 2021","Feb 19, 2021","Feb 20, 2021","Feb 21, 2021","Feb 22, 2021","Feb 23, 2021","Feb 24, 2021","Feb 25, 2021","Feb 26, 2021","Feb 27, 2021","Feb 28, 2021","Mar 01, 2021","Mar 02, 2021","Mar 03, 2021","Mar 04, 2021","Mar 05, 2021","Mar 06, 2021","Mar 07, 2021","Mar 08, 2021","Mar 09, 2021","Mar 10, 2021","Mar 11, 2021","Mar 12, 2021","Mar 13, 2021","Mar 14, 2021","Mar 15, 2021","Mar 16, 2021","Mar 17, 2021","Mar 18, 2021","Mar 19, 2021","Mar 20, 2021","Mar 21, 2021","Mar 22, 2021","Mar 23, 2021","Mar 24, 2021","Mar 25, 2021","Mar 26, 2021","Mar 27, 2021","Mar 28, 2021","Mar 29, 2021","Mar 30, 2021","Mar 31, 2021","Apr 01, 2021","Apr 02, 2021","Apr 03, 2021","Apr 04, 2021","Apr 05, 2021","Apr 06, 2021","Apr 07, 2021","Apr 08, 2021","Apr 09, 2021","Apr 10, 2021","Apr 11, 2021","Apr 12, 2021","Apr 13, 2021","Apr 14, 2021","Apr 15, 2021","Apr 16, 2021","Apr 17, 2021","Apr 18, 2021","Apr 19, 2021","Apr 20, 2021","Apr 21, 2021","Apr 22, 2021","Apr 23, 2021","Apr 24, 2021","Apr 25, 2021","Apr 26, 2021","Apr 27, 2021","Apr 28, 2021","Apr 29, 2021","Apr 30, 2021","May 01, 2021","May 02, 2021","May 03, 2021","May 04, 2021","May 05, 2021","May 06, 2021","May 07, 2021","May 08, 2021","May 09, 2021","May 10, 2021","May 11, 2021","May 12, 2021","May 13, 2021","May 14, 2021","May 15, 2021","May 16, 2021","May 17, 2021","May 18, 2021","May 19, 2021","May 20, 2021","May 21, 2021","May 22, 2021","May 23, 2021","May 24, 2021","May 25, 2021","May 26, 2021","May 27, 2021","May 28, 2021","May 29, 2021","May 30, 2021","May 31, 2021","Jun 01, 2021","Jun 02, 2021","Jun 03, 2021","Jun 04, 2021","Jun 05, 2021","Jun 06, 2021","Jun 07, 2021","Jun 08, 2021","Jun 09, 2021","Jun 10, 2021","Jun 11, 2021","Jun 12, 2021","Jun 13, 2021","Jun 14, 2021","Jun 15, 2021","Jun 16, 2021","Jun 17, 2021","Jun 18, 2021","Jun 19, 2021","Jun 20, 2021","Jun 21, 2021","Jun 22, 2021","Jun 23, 2021","Jun 24, 2021","Jun 25, 2021","Jun 26, 2021","Jun 27, 2021","Jun 28, 2021","Jun 29, 2021","Jun 30, 2021","Jul 01, 2021","Jul 02, 2021","Jul 03, 2021","Jul 04, 2021","Jul 05, 2021","Jul 06, 2021","Jul 07, 2021","Jul 08, 2021","Jul 09, 2021","Jul 10, 2021","Jul 11, 2021","Jul 12, 2021","Jul 13, 2021","Jul 14, 2021","Jul 15, 2021","Jul 16, 2021","Jul 17, 2021","Jul 18, 2021","Jul 19, 2021","Jul 20, 2021","Jul 21, 2021","Jul 22, 2021","Jul 23, 2021","Jul 24, 2021","Jul 25, 2021","Jul 26, 2021","Jul 27, 2021","Jul 28, 2021","Jul 29, 2021","Jul 30, 2021","Jul 31, 2021","Aug 01, 2021","Aug 02, 2021","Aug 03, 2021","Aug 04, 2021","Aug 05, 2021","Aug 06, 2021","Aug 07, 2021","Aug 08, 2021","Aug 09, 2021","Aug 10, 2021","Aug 11, 2021","Aug 12, 2021","Aug 13, 2021","Aug 14, 2021","Aug 15, 2021","Aug 16, 2021","Aug 17, 2021","Aug 18, 2021","Aug 19, 2021","Aug 20, 2021","Aug 21, 2021","Aug 22, 2021","Aug 23, 2021","Aug 24, 2021","Aug 25, 2021","Aug 26, 2021","Aug 27, 2021","Aug 28, 2021","Aug 29, 2021","Aug 30, 2021","Aug 31, 2021","Sep 01, 2021","Sep 02, 2021","Sep 03, 2021","Sep 04, 2021","Sep 05, 2021","Sep 06, 2021","Sep 07, 2021","Sep 08, 2021","Sep 09, 2021","Sep 10, 2021","Sep 11, 2021","Sep 12, 2021","Sep 13, 2021","Sep 14, 2021","Sep 15, 2021","Sep 16, 2021","Sep 17, 2021","Sep 18, 2021","Sep 19, 2021","Sep 20, 2021","Sep 21, 2021","Sep 22, 2021","Sep 23, 2021","Sep 24, 2021","Sep 25, 2021","Sep 26, 2021","Sep 27, 2021","Sep 28, 2021","Sep 29, 2021","Sep 30, 2021","Oct 01, 2021","Oct 02, 2021","Oct 03, 2021","Oct 04, 2021","Oct 05, 2021","Oct 06, 2021","Oct 07, 2021","Oct 08, 2021","Oct 09, 2021","Oct 10, 2021","Oct 11, 2021","Oct 12, 2021","Oct 13, 2021","Oct 14, 2021","Oct 15, 2021","Oct 16, 2021","Oct 17, 2021","Oct 18, 2021","Oct 19, 2021","Oct 20, 2021","Oct 21, 2021","Oct 22, 2021","Oct 23, 2021","Oct 24, 2021","Oct 25, 2021","Oct 26, 2021","Oct 27, 2021","Oct 28, 2021","Oct 29, 2021","Oct 30, 2021","Oct 31, 2021","Nov 01, 2021","Nov 02, 2021","Nov 03, 2021","Nov 04, 2021","Nov 05, 2021","Nov 06, 2021","Nov 07, 2021","Nov 08, 2021","Nov 09, 2021","Nov 10, 2021","Nov 11, 2021","Nov 12, 2021","Nov 13, 2021","Nov 14, 2021","Nov 15, 2021","Nov 16, 2021","Nov 17, 2021","Nov 18, 2021","Nov 19, 2021","Nov 20, 2021","Nov 21, 2021","Nov 22, 2021","Nov 23, 2021","Nov 24, 2021","Nov 25, 2021","Nov 26, 2021","Nov 27, 2021","Nov 28, 2021","Nov 29, 2021","Nov 30, 2021","Dec 01, 2021","Dec 02, 2021","Dec 03, 2021","Dec 04, 2021","Dec 05, 2021","Dec 06, 2021","Dec 07, 2021","Dec 08, 2021","Dec 09, 2021","Dec 10, 2021","Dec 11, 2021","Dec 12, 2021","Dec 13, 2021","Dec 14, 2021","Dec 15, 2021","Dec 16, 2021","Dec 17, 2021","Dec 18, 2021","Dec 19, 2021","Dec 20, 2021","Dec 21, 2021","Dec 22, 2021","Dec 23, 2021","Dec 24, 2021","Dec 25, 2021","Dec 26, 2021","Dec 27, 2021","Dec 28, 2021","Dec 29, 2021","Dec 30, 2021","Dec 31, 2021","Jan 01, 2022","Jan 02, 2022","Jan 03, 2022","Jan 04, 2022","Jan 05, 2022","Jan 06, 2022","Jan 07, 2022","Jan 08, 2022","Jan 09, 2022","Jan 10, 2022","Jan 11, 2022","Jan 12, 2022","Jan 13, 2022","Jan 14, 2022","Jan 15, 2022","Jan 16, 2022","Jan 17, 2022","Jan 18, 2022","Jan 19, 2022","Jan 20, 2022","Jan 21, 2022","Jan 22, 2022","Jan 23, 2022","Jan 24, 2022","Jan 25, 2022","Jan 26, 2022","Jan 27, 2022","Jan 28, 2022","Jan 29, 2022","Jan 30, 2022","Jan 31, 2022","Feb 01, 2022","Feb 02, 2022","Feb 03, 2022","Feb 04, 2022","Feb 05, 2022","Feb 06, 2022","Feb 07, 2022","Feb 08, 2022","Feb 09, 2022","Feb 10, 2022","Feb 11, 2022","Feb 12, 2022","Feb 13, 2022","Feb 14, 2022","Feb 15, 2022","Feb 16, 2022","Feb 17, 2022","Feb 18, 2022","Feb 19, 2022","Feb 20, 2022","Feb 21, 2022","Feb 22, 2022","Feb 23, 2022","Feb 24, 2022","Feb 25, 2022","Feb 26, 2022","Feb 27, 2022","Feb 28, 2022","Mar 01, 2022","Mar 02, 2022","Mar 03, 2022","Mar 04, 2022","Mar 05, 2022","Mar 06, 2022","Mar 07, 2022","Mar 08, 2022","Mar 09, 2022","Mar 10, 2022","Mar 11, 2022","Mar 12, 2022","Mar 13, 2022","Mar 14, 2022","Mar 15, 2022","Mar 16, 2022","Mar 17, 2022","Mar 18, 2022","Mar 19, 2022","Mar 20, 2022","Mar 21, 2022","Mar 22, 2022","Mar 23, 2022","Mar 24, 2022","Mar 25, 2022","Mar 26, 2022","Mar 27, 2022","Mar 28, 2022","Mar 29, 2022","Mar 30, 2022","Mar 31, 2022","Apr 01, 2022","Apr 02, 2022","Apr 03, 2022","Apr 04, 2022","Apr 05, 2022","Apr 06, 2022","Apr 07, 2022","Apr 08, 2022","Apr 09, 2022","Apr 10, 2022","Apr 11, 2022","Apr 12, 2022","Apr 13, 2022","Apr 14, 2022","Apr 15, 2022","Apr 16, 2022","Apr 17, 2022","Apr 18, 2022","Apr 19, 2022","Apr 20, 2022","Apr 21, 2022","Apr 22, 2022","Apr 23, 2022","Apr 24, 2022","Apr 25, 2022","Apr 26, 2022","Apr 27, 2022","Apr 28, 2022","Apr 29, 2022","Apr 30, 2022","May 01, 2022","May 02, 2022","May 03, 2022","May 04, 2022","May 05, 2022","May 06, 2022","May 07, 2022","May 08, 2022","May 09, 2022","May 10, 2022","May 11, 2022","May 12, 2022","May 13, 2022","May 14, 2022","May 15, 2022","May 16, 2022","May 17, 2022","May 18, 2022","May 19, 2022","May 20, 2022","May 21, 2022","May 22, 2022","May 23, 2022","May 24, 2022","May 25, 2022","May 26, 2022","May 27, 2022","May 28, 2022","May 29, 2022","May 30, 2022","May 31, 2022","Jun 01, 2022","Jun 02, 2022","Jun 03, 2022","Jun 04, 2022","Jun 05, 2022","Jun 06, 2022","Jun 07, 2022","Jun 08, 2022","Jun 09, 2022","Jun 10, 2022","Jun 11, 2022","Jun 12, 2022","Jun 13, 2022","Jun 14, 2022","Jun 15, 2022","Jun 16, 2022","Jun 17, 2022","Jun 18, 2022","Jun 19, 2022","Jun 20, 2022","Jun 21, 2022","Jun 22, 2022","Jun 23, 2022","Jun 24, 2022","Jun 25, 2022","Jun 26, 2022","Jun 27, 2022","Jun 28, 2022","Jun 29, 2022","Jun 30, 2022","Jul 01, 2022","Jul 02, 2022","Jul 03, 2022","Jul 04, 2022","Jul 05, 2022","Jul 06, 2022","Jul 07, 2022","Jul 08, 2022","Jul 09, 2022","Jul 10, 2022","Jul 11, 2022","Jul 12, 2022","Jul 13, 2022","Jul 14, 2022"] },
yAxis: {
title: {
text: 'Total Coronavirus Cases'
}
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'middle'
},
credits: {
enabled: false
},
series: [{
name: 'Cases',
color: '#33CCFF',
lineWidth: 5,
data: [987,1258,1733,2434,3221,5005,6484,8248,10264,12400,15026,17883,21137,25083,28811,31995,35448,38133,41139,43705,45763,59946,65121,67804,69936,72094,74125,76006,76540,77574,78632,79672,80296,81295,82158,83297,84755,86579,88796,91424,94059,97394,100584,104936,109996,115793,121661,128896,137783,149279,163662,180671,198281,217279,238349,262569,290780,323225,362190,396465,434090,478168,525365,576361,639300,706751,774978,836488,900945,978695,1057622,1137509,1224884,1308375,1381497,1458070,1543256,1632521,1723605,1816464,1901904,1977663,2053800,2133732,2221635,2309989,2401789,2486941,2565309,2647720,2730461,2815493,2906125,3003377,3095722,3171104,3242615,3323237,3413501,3502517,3597238,3680890,3763214,3843907,3927418,4022899,4118705,4215384,4304126,4383861,4456316,4546392,4639588,4738242,4840739,4937878,5021475,5113156,5213502,5321415,5430950,5541310,5643960,5742317,5834796,5929731,6040256,6160911,6290340,6417838,6528807,6632088,6752806,6876604,7010300,7143778,7275182,7392320,7502252,7626812,7767404,7909385,8053986,8192129,8318714,8447465,8596501,8747881,8893447,9080155,9242378,9377390,9520605,9689952,9870048,10056637,10255625,10439398,10608377,10771599,10955040,11159528,11375998,11596306,11797205,11978065,12154761,12371838,12592233,12823341,13066805,13289253,13492132,13689558,13917209,14159780,14414506,14660922,14894025,15115829,15323134,15570138,15857070,16138388,16432303,16701409,16926692,17145117,17401304,17697893,17989651,18285989,18550889,18776711,18979047,19239773,19518771,19806972,20095790,20372565,20600218,20820784,21095572,21390904,21682358,21977340,22248808,22471231,22676375,22941800,23223236,23500400,23770639,24043434,24261502,24481471,24744032,25027444,25310052,25605109,25875469,26106700,26357476,26625985,26920478,27215745,27529424,27813377,28057167,28263896,28518434,28814162,29121614,29446105,29742801,29999063,30249470,30539433,30851971,31171414,31500759,31806084,32067425,32307555,32595771,32913256,33233601,33563671,33869860,34132405,34373797,34669466,34993082,35322166,35656598,35967563,36232832,36505021,36824272,37180997,37543996,37914506,38294706,38590602,38864815,39192749,39579827,39985790,40409016,40814472,41162892,41496715,41897932,42345340,42836135,43335468,43820129,44252173,44649056,45125380,45644993,46196294,46771420,47285493,47753524,48205785,48723215,49300968,49928063,50557632,51196224,51703215,52173548,52757316,53392101,54039636,54700114,55312501,55829495,56317122,56902946,57530244,58193379,58861836,59478746,60004150,60527185,61112564,61756413,62384429,62995615,63598034,64127435,64617379,65215378,65864359,66562965,67259918,67914209,68466507,68984080,69610638,70279477,70984794,71701298,72371721,72931291,73462090,74090775,74828881,75568001,76297762,76958050,77518737,78053522,78691940,79398897,80102292,80654468,81104942,81564171,82068444,82706877,83480448,84260827,84913609,85465103,86015953,86572988,87314832,88127262,88978576,89812109,90574302,91211503,91794009,92497588,93246001,93996736,94748352,95431020,95985839,96458066,97066725,97729308,98380823,99016997,99617511,100097064,100531622,101077112,101670942,102267312,102848015,103379771,103795984,104184511,104648411,105135968,105644749,106143363,106585464,106947511,107265939,107660047,108104620,108550968,108977932,109366092,109669213,109932602,110282777,110680637,111082923,111495371,111884116,112201532,112484894,112866670,113310936,113758472,114195849,114594186,114916669,115211220,115583982,116031652,116482355,116937564,117352803,117733350,118025874,118423237,118892960,119375525,119870223,120324767,120704042,121040047,121497894,122033484,122586521,123146406,123666035,124103890,124528583,125035424,125627126,126262407,126897357,127493777,127998706,128456091,129006120,129653124,130359678,131013110,131581339,132137575,132617371,133249824,133940293,134688063,135480323,136205179,136862107,137444657,138189579,139003384,139847470,140685190,141492237,142225644,142881557,143713749,144601300,145491831,146393510,147240867,147989188,148660898,149498477,150391568,151295676,152173713,152991843,153691139,154360450,155145687,155996885,156858233,157700378,158499145,159167854,159775812,160493318,161250487,161998566,162699124,163348427,163900030,164435844,165054296,165719242,166376572,167001753,167587690,168078250,168522659,169049617,169613320,170152143,170663007,171165886,171582250,171949860,172401732,172895429,173373674,173795989,174208111,174547963,174863095,175229642,175654632,176094612,176511516,176894415,177204318,177507347,177884111,178288299,178680179,179087146,179456826,179761678,180042520,180426188,180863447,181272626,181690718,182073615,182398992,182714273,183107617,183509398,183945827,184389697,184793482,185148227,185495682,185939609,186409199,186906383,187403956,187856501,188256866,188657176,189183809,189750961,190328581,190910220,191441193,191930944,192368071,192895127,193460983,194033784,194619277,195168306,195662957,196131277,196749876,197424293,198106607,198766631,199367912,199918431,200425038,201067433,201770050,202494141,203209674,203857768,204430842,204959598,205633969,206349322,207080533,207821694,208478691,209049403,209584733,210275704,210995560,211751774,212484602,213135148,213705780,214236521,214933221,215679668,216429113,217166509,217821306,218387835,218932805,219582851,220288912,220997725,221689854,222286457,222833130,223332600,223892268,224515157,225155034,225774323,226337812,226829926,227282287,227823779,228411163,229011228,229596182,230105924,230542795,230959324,231467628,232020081,232557699,233081733,233539403,233945692,234331594,234787821,235291607,235803927,236291539,236713032,237075653,237426740,237868528,238337381,238816879,239277641,239685206,240043464,240379202,240801616,241262762,241728900,242180730,242581268,242930009,243281846,243726535,244196866,244676651,245143881,245567378,245930794,246276156,246730112,247217675,247718827,248199731,248636389,249011580,249382310,249807544,250301158,250837742,251358558,251831660,252227203,252621043,253118980,253683734,254256266,254805135,255301789,255722084,256155047,256693777,257309663,257944228,258555988,259119506,259582498,260054535,260660319,261315507,261961906,262586355,263139135,263606031,264091763,264732593,265436954,266166933,266894317,267523802,268038947,268530224,269186812,269893135,270601981,271296562,271907617,272440183,272930416,273610844,274376826,275159826,275932928,276627167,277228008,277812536,278643774,279618659,280689520,281751602,282702332,283360923,284200906,285549851,287242318,289282491,291290403,293150760,294427883,295933889,298181508,300912704,303717376,306547876,309267691,311711422,313909202,316893272,320203661,323584342,326953187,329962851,332657812,335103601,338443593,342169973,346002809,349843604,353319442,356227170,358776247,362373896,366098743,369825765,373413042,376514114,379082035,381424513,384566436,387727127,390932692,393966687,396437409,398517852,400422437,403125445,405782080,408354836,410742089,412778479,414418190,415925403,417910618,420066066,422148093,424134180,425832880,427242811,428560601,430251221,432146627,433973371,435653288,437125013,438399524,439602190,441082771,442765839,444479088,446226143,447788971,449114686,450410226,452112885,453898224,455811408,457585674,459201410,460711318,462003266,463815262,465767953,467924952,469782083,471380707,472654057,473823945,475615084,477524006,479329101,480983139,482385480,483510864,484598438,486226203,487894812,489434659,490803630,491936780,492802814,493571540,494871037,496148494,497364788,498490859,499410237,500140462,500725201,501801069,502828300,503823572,504605639,505255587,505787505,506166498,506802944,507780160,508652243,509366213,510005666,510483226,510909457,511563999,512306560,513017813,513630647,514143040,514510875,514823152,515475439,516145961,516782500,517337095,517848721,518251007,518648409,519319606,519992851,520686863,521661507,522388763,523117614,523925056,524846713,525716701,526625045,527465455,528209840,528809070,529349263,530066059,530749186,531438145,532062200,532624802,533094506,533546105,534171056,534826553,535476417,536076089,536608487,537027363,537428757,538045648,538696020,539358540,539980877,540476187,540920296,541333973,541972354,542631141,543298255,543850347,544419003,544851960,545243576,546028873,546819096,547647226,548432029,549098583,549597496,550199057,551095780,552046781,553000342,553929437,554640599,555252122,555895534,556942396,558013403,559112702,560140993,560941647,561630629,562300890,563341883,564362427,565166682] }],
responsive: {
rules: [{
condition: {
maxWidth: 800
},
chartOptions: {
legend: {
layout: 'horizontal',
align: 'center',
verticalAlign: 'bottom'
}
}
}]
}
});
Highcharts.chart('coronavirus-cases-log', {
chart: {
type: 'line'
},
title: {
text: 'Total Cases'
},
subtitle: {
text: '(Logarithmic Scale)'
},
xAxis: {
categories: ["Jan 22, 2020","Jan 23, 2020","Jan 24, 2020","Jan 25, 2020","Jan 26, 2020","Jan 27, 2020","Jan 28, 2020","Jan 29, 2020","Jan 30, 2020","Jan 31, 2020","Feb 01, 2020","Feb 02, 2020","Feb 03, 2020","Feb 04, 2020","Feb 05, 2020","Feb 06, 2020","Feb 07, 2020","Feb 08, 2020","Feb 09, 2020","Feb 10, 2020","Feb 11, 2020","Feb 12, 2020","Feb 13, 2020","Feb 14, 2020","Feb 15, 2020","Feb 16, 2020","Feb 17, 2020","Feb 18, 2020","Feb 19, 2020","Feb 20, 2020","Feb 21, 2020","Feb 22, 2020","Feb 23, 2020","Feb 24, 2020","Feb 25, 2020","Feb 26, 2020","Feb 27, 2020","Feb 28, 2020","Feb 29, 2020","Mar 01, 2020","Mar 02, 2020","Mar 03, 2020","Mar 04, 2020","Mar 05, 2020","Mar 06, 2020","Mar 07, 2020","Mar 08, 2020","Mar 09, 2020","Mar 10, 2020","Mar 11, 2020","Mar 12, 2020","Mar 13, 2020","Mar 14, 2020","Mar 15, 2020","Mar 16, 2020","Mar 17, 2020","Mar 18, 2020","Mar 19, 2020","Mar 20, 2020","Mar 21, 2020","Mar 22, 2020","Mar 23, 2020","Mar 24, 2020","Mar 25, 2020","Mar 26, 2020","Mar 27, 2020","Mar 28, 2020","Mar 29, 2020","Mar 30, 2020","Mar 31, 2020","Apr 01, 2020","Apr 02, 2020","Apr 03, 2020","Apr 04, 2020","Apr 05, 2020","Apr 06, 2020","Apr 07, 2020","Apr 08, 2020","Apr 09, 2020","Apr 10, 2020","Apr 11, 2020","Apr 12, 2020","Apr 13, 2020","Apr 14, 2020","Apr 15, 2020","Apr 16, 2020","Apr 17, 2020","Apr 18, 2020","Apr 19, 2020","Apr 20, 2020","Apr 21, 2020","Apr 22, 2020","Apr 23, 2020","Apr 24, 2020","Apr 25, 2020","Apr 26, 2020","Apr 27, 2020","Apr 28, 2020","Apr 29, 2020","Apr 30, 2020","May 01, 2020","May 02, 2020","May 03, 2020","May 04, 2020","May 05, 2020","May 06, 2020","May 07, 2020","May 08, 2020","May 09, 2020","May 10, 2020","May 11, 2020","May 12, 2020","May 13, 2020","May 14, 2020","May 15, 2020","May 16, 2020","May 17, 2020","May 18, 2020","May 19, 2020","May 20, 2020","May 21, 2020","May 22, 2020","May 23, 2020","May 24, 2020","May 25, 2020","May 26, 2020","May 27, 2020","May 28, 2020","May 29, 2020","May 30, 2020","May 31, 2020","Jun 01, 2020","Jun 02, 2020","Jun 03, 2020","Jun 04, 2020","Jun 05, 2020","Jun 06, 2020","Jun 07, 2020","Jun 08, 2020","Jun 09, 2020","Jun 10, 2020","Jun 11, 2020","Jun 12, 2020","Jun 13, 2020","Jun 14, 2020","Jun 15, 2020","Jun 16, 2020","Jun 17, 2020","Jun 18, 2020","Jun 19, 2020","Jun 20, 2020","Jun 21, 2020","Jun 22, 2020","Jun 23, 2020","Jun 24, 2020","Jun 25, 2020","Jun 26, 2020","Jun 27, 2020","Jun 28, 2020","Jun 29, 2020","Jun 30, 2020","Jul 01, 2020","Jul 02, 2020","Jul 03, 2020","Jul 04, 2020","Jul 05, 2020","Jul 06, 2020","Jul 07, 2020","Jul 08, 2020","Jul 09, 2020","Jul 10, 2020","Jul 11, 2020","Jul 12, 2020","Jul 13, 2020","Jul 14, 2020","Jul 15, 2020","Jul 16, 2020","Jul 17, 2020","Jul 18, 2020","Jul 19, 2020","Jul 20, 2020","Jul 21, 2020","Jul 22, 2020","Jul 23, 2020","Jul 24, 2020","Jul 25, 2020","Jul 26, 2020","Jul 27, 2020","Jul 28, 2020","Jul 29, 2020","Jul 30, 2020","Jul 31, 2020","Aug 01, 2020","Aug 02, 2020","Aug 03, 2020","Aug 04, 2020","Aug 05, 2020","Aug 06, 2020","Aug 07, 2020","Aug 08, 2020","Aug 09, 2020","Aug 10, 2020","Aug 11, 2020","Aug 12, 2020","Aug 13, 2020","Aug 14, 2020","Aug 15, 2020","Aug 16, 2020","Aug 17, 2020","Aug 18, 2020","Aug 19, 2020","Aug 20, 2020","Aug 21, 2020","Aug 22, 2020","Aug 23, 2020","Aug 24, 2020","Aug 25, 2020","Aug 26, 2020","Aug 27, 2020","Aug 28, 2020","Aug 29, 2020","Aug 30, 2020","Aug 31, 2020","Sep 01, 2020","Sep 02, 2020","Sep 03, 2020","Sep 04, 2020","Sep 05, 2020","Sep 06, 2020","Sep 07, 2020","Sep 08, 2020","Sep 09, 2020","Sep 10, 2020","Sep 11, 2020","Sep 12, 2020","Sep 13, 2020","Sep 14, 2020","Sep 15, 2020","Sep 16, 2020","Sep 17, 2020","Sep 18, 2020","Sep 19, 2020","Sep 20, 2020","Sep 21, 2020","Sep 22, 2020","Sep 23, 2020","Sep 24, 2020","Sep 25, 2020","Sep 26, 2020","Sep 27, 2020","Sep 28, 2020","Sep 29, 2020","Sep 30, 2020","Oct 01, 2020","Oct 02, 2020","Oct 03, 2020","Oct 04, 2020","Oct 05, 2020","Oct 06, 2020","Oct 07, 2020","Oct 08, 2020","Oct 09, 2020","Oct 10, 2020","Oct 11, 2020","Oct 12, 2020","Oct 13, 2020","Oct 14, 2020","Oct 15, 2020","Oct 16, 2020","Oct 17, 2020","Oct 18, 2020","Oct 19, 2020","Oct 20, 2020","Oct 21, 2020","Oct 22, 2020","Oct 23, 2020","Oct 24, 2020","Oct 25, 2020","Oct 26, 2020","Oct 27, 2020","Oct 28, 2020","Oct 29, 2020","Oct 30, 2020","Oct 31, 2020","Nov 01, 2020","Nov 02, 2020","Nov 03, 2020","Nov 04, 2020","Nov 05, 2020","Nov 06, 2020","Nov 07, 2020","Nov 08, 2020","Nov 09, 2020","Nov 10, 2020","Nov 11, 2020","Nov 12, 2020","Nov 13, 2020","Nov 14, 2020","Nov 15, 2020","Nov 16, 2020","Nov 17, 2020","Nov 18, 2020","Nov 19, 2020","Nov 20, 2020","Nov 21, 2020","Nov 22, 2020","Nov 23, 2020","Nov 24, 2020","Nov 25, 2020","Nov 26, 2020","Nov 27, 2020","Nov 28, 2020","Nov 29, 2020","Nov 30, 2020","Dec 01, 2020","Dec 02, 2020","Dec 03, 2020","Dec 04, 2020","Dec 05, 2020","Dec 06, 2020","Dec 07, 2020","Dec 08, 2020","Dec 09, 2020","Dec 10, 2020","Dec 11, 2020","Dec 12, 2020","Dec 13, 2020","Dec 14, 2020","Dec 15, 2020","Dec 16, 2020","Dec 17, 2020","Dec 18, 2020","Dec 19, 2020","Dec 20, 2020","Dec 21, 2020","Dec 22, 2020","Dec 23, 2020","Dec 24, 2020","Dec 25, 2020","Dec 26, 2020","Dec 27, 2020","Dec 28, 2020","Dec 29, 2020","Dec 30, 2020","Dec 31, 2020","Jan 01, 2021","Jan 02, 2021","Jan 03, 2021","Jan 04, 2021","Jan 05, 2021","Jan 06, 2021","Jan 07, 2021","Jan 08, 2021","Jan 09, 2021","Jan 10, 2021","Jan 11, 2021","Jan 12, 2021","Jan 13, 2021","Jan 14, 2021","Jan 15, 2021","Jan 16, 2021","Jan 17, 2021","Jan 18, 2021","Jan 19, 2021","Jan 20, 2021","Jan 21, 2021","Jan 22, 2021","Jan 23, 2021","Jan 24, 2021","Jan 25, 2021","Jan 26, 2021","Jan 27, 2021","Jan 28, 2021","Jan 29, 2021","Jan 30, 2021","Jan 31, 2021","Feb 01, 2021","Feb 02, 2021","Feb 03, 2021","Feb 04, 2021","Feb 05, 2021","Feb 06, 2021","Feb 07, 2021","Feb 08, 2021","Feb 09, 2021","Feb 10, 2021","Feb 11, 2021","Feb 12, 2021","Feb 13, 2021","Feb 14, 2021","Feb 15, 2021","Feb 16, 2021","Feb 17, 2021","Feb 18, 2021","Feb 19, 2021","Feb 20, 2021","Feb 21, 2021","Feb 22, 2021","Feb 23, 2021","Feb 24, 2021","Feb 25, 2021","Feb 26, 2021","Feb 27, 2021","Feb 28, 2021","Mar 01, 2021","Mar 02, 2021","Mar 03, 2021","Mar 04, 2021","Mar 05, 2021","Mar 06, 2021","Mar 07, 2021","Mar 08, 2021","Mar 09, 2021","Mar 10, 2021","Mar 11, 2021","Mar 12, 2021","Mar 13, 2021","Mar 14, 2021","Mar 15, 2021","Mar 16, 2021","Mar 17, 2021","Mar 18, 2021","Mar 19, 2021","Mar 20, 2021","Mar 21, 2021","Mar 22, 2021","Mar 23, 2021","Mar 24, 2021","Mar 25, 2021","Mar 26, 2021","Mar 27, 2021","Mar 28, 2021","Mar 29, 2021","Mar 30, 2021","Mar 31, 2021","Apr 01, 2021","Apr 02, 2021","Apr 03, 2021","Apr 04, 2021","Apr 05, 2021","Apr 06, 2021","Apr 07, 2021","Apr 08, 2021","Apr 09, 2021","Apr 10, 2021","Apr 11, 2021","Apr 12, 2021","Apr 13, 2021","Apr 14, 2021","Apr 15, 2021","Apr 16, 2021","Apr 17, 2021","Apr 18, 2021","Apr 19, 2021","Apr 20, 2021","Apr 21, 2021","Apr 22, 2021","Apr 23, 2021","Apr 24, 2021","Apr 25, 2021","Apr 26, 2021","Apr 27, 2021","Apr 28, 2021","Apr 29, 2021","Apr 30, 2021","May 01, 2021","May 02, 2021","May 03, 2021","May 04, 2021","May 05, 2021","May 06, 2021","May 07, 2021","May 08, 2021","May 09, 2021","May 10, 2021","May 11, 2021","May 12, 2021","May 13, 2021","May 14, 2021","May 15, 2021","May 16, 2021","May 17, 2021","May 18, 2021","May 19, 2021","May 20, 2021","May 21, 2021","May 22, 2021","May 23, 2021","May 24, 2021","May 25, 2021","May 26, 2021","May 27, 2021","May 28, 2021","May 29, 2021","May 30, 2021","May 31, 2021","Jun 01, 2021","Jun 02, 2021","Jun 03, 2021","Jun 04, 2021","Jun 05, 2021","Jun 06, 2021","Jun 07, 2021","Jun 08, 2021","Jun 09, 2021","Jun 10, 2021","Jun 11, 2021","Jun 12, 2021","Jun 13, 2021","Jun 14, 2021","Jun 15, 2021","Jun 16, 2021","Jun 17, 2021","Jun 18, 2021","Jun 19, 2021","Jun 20, 2021","Jun 21, 2021","Jun 22, 2021","Jun 23, 2021","Jun 24, 2021","Jun 25, 2021","Jun 26, 2021","Jun 27, 2021","Jun 28, 2021","Jun 29, 2021","Jun 30, 2021","Jul 01, 2021","Jul 02, 2021","Jul 03, 2021","Jul 04, 2021","Jul 05, 2021","Jul 06, 2021","Jul 07, 2021","Jul 08, 2021","Jul 09, 2021","Jul 10, 2021","Jul 11, 2021","Jul 12, 2021","Jul 13, 2021","Jul 14, 2021","Jul 15, 2021","Jul 16, 2021","Jul 17, 2021","Jul 18, 2021","Jul 19, 2021","Jul 20, 2021","Jul 21, 2021","Jul 22, 2021","Jul 23, 2021","Jul 24, 2021","Jul 25, 2021","Jul 26, 2021","Jul 27, 2021","Jul 28, 2021","Jul 29, 2021","Jul 30, 2021","Jul 31, 2021","Aug 01, 2021","Aug 02, 2021","Aug 03, 2021","Aug 04, 2021","Aug 05, 2021","Aug 06, 2021","Aug 07, 2021","Aug 08, 2021","Aug 09, 2021","Aug 10, 2021","Aug 11, 2021","Aug 12, 2021","Aug 13, 2021","Aug 14, 2021","Aug 15, 2021","Aug 16, 2021","Aug 17, 2021","Aug 18, 2021","Aug 19, 2021","Aug 20, 2021","Aug 21, 2021","Aug 22, 2021","Aug 23, 2021","Aug 24, 2021","Aug 25, 2021","Aug 26, 2021","Aug 27, 2021","Aug 28, 2021","Aug 29, 2021","Aug 30, 2021","Aug 31, 2021","Sep 01, 2021","Sep 02, 2021","Sep 03, 2021","Sep 04, 2021","Sep 05, 2021","Sep 06, 2021","Sep 07, 2021","Sep 08, 2021","Sep 09, 2021","Sep 10, 2021","Sep 11, 2021","Sep 12, 2021","Sep 13, 2021","Sep 14, 2021","Sep 15, 2021","Sep 16, 2021","Sep 17, 2021","Sep 18, 2021","Sep 19, 2021","Sep 20, 2021","Sep 21, 2021","Sep 22, 2021","Sep 23, 2021","Sep 24, 2021","Sep 25, 2021","Sep 26, 2021","Sep 27, 2021","Sep 28, 2021","Sep 29, 2021","Sep 30, 2021","Oct 01, 2021","Oct 02, 2021","Oct 03, 2021","Oct 04, 2021","Oct 05, 2021","Oct 06, 2021","Oct 07, 2021","Oct 08, 2021","Oct 09, 2021","Oct 10, 2021","Oct 11, 2021","Oct 12, 2021","Oct 13, 2021","Oct 14, 2021","Oct 15, 2021","Oct 16, 2021","Oct 17, 2021","Oct 18, 2021","Oct 19, 2021","Oct 20, 2021","Oct 21, 2021","Oct 22, 2021","Oct 23, 2021","Oct 24, 2021","Oct 25, 2021","Oct 26, 2021","Oct 27, 2021","Oct 28, 2021","Oct 29, 2021","Oct 30, 2021","Oct 31, 2021","Nov 01, 2021","Nov 02, 2021","Nov 03, 2021","Nov 04, 2021","Nov 05, 2021","Nov 06, 2021","Nov 07, 2021","Nov 08, 2021","Nov 09, 2021","Nov 10, 2021","Nov 11, 2021","Nov 12, 2021","Nov 13, 2021","Nov 14, 2021","Nov 15, 2021","Nov 16, 2021","Nov 17, 2021","Nov 18, 2021","Nov 19, 2021","Nov 20, 2021","Nov 21, 2021","Nov 22, 2021","Nov 23, 2021","Nov 24, 2021","Nov 25, 2021","Nov 26, 2021","Nov 27, 2021","Nov 28, 2021","Nov 29, 2021","Nov 30, 2021","Dec 01, 2021","Dec 02, 2021","Dec 03, 2021","Dec 04, 2021","Dec 05, 2021","Dec 06, 2021","Dec 07, 2021","Dec 08, 2021","Dec 09, 2021","Dec 10, 2021","Dec 11, 2021","Dec 12, 2021","Dec 13, 2021","Dec 14, 2021","Dec 15, 2021","Dec 16, 2021","Dec 17, 2021","Dec 18, 2021","Dec 19, 2021","Dec 20, 2021","Dec 21, 2021","Dec 22, 2021","Dec 23, 2021","Dec 24, 2021","Dec 25, 2021","Dec 26, 2021","Dec 27, 2021","Dec 28, 2021","Dec 29, 2021","Dec 30, 2021","Dec 31, 2021","Jan 01, 2022","Jan 02, 2022","Jan 03, 2022","Jan 04, 2022","Jan 05, 2022","Jan 06, 2022","Jan 07, 2022","Jan 08, 2022","Jan 09, 2022","Jan 10, 2022","Jan 11, 2022","Jan 12, 2022","Jan 13, 2022","Jan 14, 2022","Jan 15, 2022","Jan 16, 2022","Jan 17, 2022","Jan 18, 2022","Jan 19, 2022","Jan 20, 2022","Jan 21, 2022","Jan 22, 2022","Jan 23, 2022","Jan 24, 2022","Jan 25, 2022","Jan 26, 2022","Jan 27, 2022","Jan 28, 2022","Jan 29, 2022","Jan 30, 2022","Jan 31, 2022","Feb 01, 2022","Feb 02, 2022","Feb 03, 2022","Feb 04, 2022","Feb 05, 2022","Feb 06, 2022","Feb 07, 2022","Feb 08, 2022","Feb 09, 2022","Feb 10, 2022","Feb 11, 2022","Feb 12, 2022","Feb 13, 2022","Feb 14, 2022","Feb 15, 2022","Feb 16, 2022","Feb 17, 2022","Feb 18, 2022","Feb 19, 2022","Feb 20, 2022","Feb 21, 2022","Feb 22, 2022","Feb 23, 2022","Feb 24, 2022","Feb 25, 2022","Feb 26, 2022","Feb 27, 2022","Feb 28, 2022","Mar 01, 2022","Mar 02, 2022","Mar 03, 2022","Mar 04, 2022","Mar 05, 2022","Mar 06, 2022","Mar 07, 2022","Mar 08, 2022","Mar 09, 2022","Mar 10, 2022","Mar 11, 2022","Mar 12, 2022","Mar 13, 2022","Mar 14, 2022","Mar 15, 2022","Mar 16, 2022","Mar 17, 2022","Mar 18, 2022","Mar 19, 2022","Mar 20, 2022","Mar 21, 2022","Mar 22, 2022","Mar 23, 2022","Mar 24, 2022","Mar 25, 2022","Mar 26, 2022","Mar 27, 2022","Mar 28, 2022","Mar 29, 2022","Mar 30, 2022","Mar 31, 2022","Apr 01, 2022","Apr 02, 2022","Apr 03, 2022","Apr 04, 2022","Apr 05, 2022","Apr 06, 2022","Apr 07, 2022","Apr 08, 2022","Apr 09, 2022","Apr 10, 2022","Apr 11, 2022","Apr 12, 2022","Apr 13, 2022","Apr 14, 2022","Apr 15, 2022","Apr 16, 2022","Apr 17, 2022","Apr 18, 2022","Apr 19, 2022","Apr 20, 2022","Apr 21, 2022","Apr 22, 2022","Apr 23, 2022","Apr 24, 2022","Apr 25, 2022","Apr 26, 2022","Apr 27, 2022","Apr 28, 2022","Apr 29, 2022","Apr 30, 2022","May 01, 2022","May 02, 2022","May 03, 2022","May 04, 2022","May 05, 2022","May 06, 2022","May 07, 2022","May 08, 2022","May 09, 2022","May 10, 2022","May 11, 2022","May 12, 2022","May 13, 2022","May 14, 2022","May 15, 2022","May 16, 2022","May 17, 2022","May 18, 2022","May 19, 2022","May 20, 2022","May 21, 2022","May 22, 2022","May 23, 2022","May 24, 2022","May 25, 2022","May 26, 2022","May 27, 2022","May 28, 2022","May 29, 2022","May 30, 2022","May 31, 2022","Jun 01, 2022","Jun 02, 2022","Jun 03, 2022","Jun 04, 2022","Jun 05, 2022","Jun 06, 2022","Jun 07, 2022","Jun 08, 2022","Jun 09, 2022","Jun 10, 2022","Jun 11, 2022","Jun 12, 2022","Jun 13, 2022","Jun 14, 2022","Jun 15, 2022","Jun 16, 2022","Jun 17, 2022","Jun 18, 2022","Jun 19, 2022","Jun 20, 2022","Jun 21, 2022","Jun 22, 2022","Jun 23, 2022","Jun 24, 2022","Jun 25, 2022","Jun 26, 2022","Jun 27, 2022","Jun 28, 2022","Jun 29, 2022","Jun 30, 2022","Jul 01, 2022","Jul 02, 2022","Jul 03, 2022","Jul 04, 2022","Jul 05, 2022","Jul 06, 2022","Jul 07, 2022","Jul 08, 2022","Jul 09, 2022","Jul 10, 2022","Jul 11, 2022","Jul 12, 2022","Jul 13, 2022","Jul 14, 2022"] },
yAxis: {
title: {
text: 'Total Coronavirus Cases'
},
type: 'logarithmic'
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'middle'
},
credits: {
enabled: false
},
series: [{
name: 'Cases',
color: '#33CCFF',
lineWidth: 5,
data: [987,1258,1733,2434,3221,5005,6484,8248,10264,12400,15026,17883,21137,25083,28811,31995,35448,38133,41139,43705,45763,59946,65121,67804,69936,72094,74125,76006,76540,77574,78632,79672,80296,81295,82158,83297,84755,86579,88796,91424,94059,97394,100584,104936,109996,115793,121661,128896,137783,149279,163662,180671,198281,217279,238349,262569,290780,323225,362190,396465,434090,478168,525365,576361,639300,706751,774978,836488,900945,978695,1057622,1137509,1224884,1308375,1381497,1458070,1543256,1632521,1723605,1816464,1901904,1977663,2053800,2133732,2221635,2309989,2401789,2486941,2565309,2647720,2730461,2815493,2906125,3003377,3095722,3171104,3242615,3323237,3413501,3502517,3597238,3680890,3763214,3843907,3927418,4022899,4118705,4215384,4304126,4383861,4456316,4546392,4639588,4738242,4840739,4937878,5021475,5113156,5213502,5321415,5430950,5541310,5643960,5742317,5834796,5929731,6040256,6160911,6290340,6417838,6528807,6632088,6752806,6876604,7010300,7143778,7275182,7392320,7502252,7626812,7767404,7909385,8053986,8192129,8318714,8447465,8596501,8747881,8893447,9080155,9242378,9377390,9520605,9689952,9870048,10056637,10255625,10439398,10608377,10771599,10955040,11159528,11375998,11596306,11797205,11978065,12154761,12371838,12592233,12823341,13066805,13289253,13492132,13689558,13917209,14159780,14414506,14660922,14894025,15115829,15323134,15570138,15857070,16138388,16432303,16701409,16926692,17145117,17401304,17697893,17989651,18285989,18550889,18776711,18979047,19239773,19518771,19806972,20095790,20372565,20600218,20820784,21095572,21390904,21682358,21977340,22248808,22471231,22676375,22941800,23223236,23500400,23770639,24043434,24261502,24481471,24744032,25027444,25310052,25605109,25875469,26106700,26357476,26625985,26920478,27215745,27529424,27813377,28057167,28263896,28518434,28814162,29121614,29446105,29742801,29999063,30249470,30539433,30851971,31171414,31500759,31806084,32067425,32307555,32595771,32913256,33233601,33563671,33869860,34132405,34373797,34669466,34993082,35322166,35656598,35967563,36232832,36505021,36824272,37180997,37543996,37914506,38294706,38590602,38864815,39192749,39579827,39985790,40409016,40814472,41162892,41496715,41897932,42345340,42836135,43335468,43820129,44252173,44649056,45125380,45644993,46196294,46771420,47285493,47753524,48205785,48723215,49300968,49928063,50557632,51196224,51703215,52173548,52757316,53392101,54039636,54700114,55312501,55829495,56317122,56902946,57530244,58193379,58861836,59478746,60004150,60527185,61112564,61756413,62384429,62995615,63598034,64127435,64617379,65215378,65864359,66562965,67259918,67914209,68466507,68984080,69610638,70279477,70984794,71701298,72371721,72931291,73462090,74090775,74828881,75568001,76297762,76958050,77518737,78053522,78691940,79398897,80102292,80654468,81104942,81564171,82068444,82706877,83480448,84260827,84913609,85465103,86015953,86572988,87314832,88127262,88978576,89812109,90574302,91211503,91794009,92497588,93246001,93996736,94748352,95431020,95985839,96458066,97066725,97729308,98380823,99016997,99617511,100097064,100531622,101077112,101670942,102267312,102848015,103379771,103795984,104184511,104648411,105135968,105644749,106143363,106585464,106947511,107265939,107660047,108104620,108550968,108977932,109366092,109669213,109932602,110282777,110680637,111082923,111495371,111884116,112201532,112484894,112866670,113310936,113758472,114195849,114594186,114916669,115211220,115583982,116031652,116482355,116937564,117352803,117733350,118025874,118423237,118892960,119375525,119870223,120324767,120704042,121040047,121497894,122033484,122586521,123146406,123666035,124103890,124528583,125035424,125627126,126262407,126897357,127493777,127998706,128456091,129006120,129653124,130359678,131013110,131581339,132137575,132617371,133249824,133940293,134688063,135480323,136205179,136862107,137444657,138189579,139003384,139847470,140685190,141492237,142225644,142881557,143713749,144601300,145491831,146393510,147240867,147989188,148660898,149498477,150391568,151295676,152173713,152991843,153691139,154360450,155145687,155996885,156858233,157700378,158499145,159167854,159775812,160493318,161250487,161998566,162699124,163348427,163900030,164435844,165054296,165719242,166376572,167001753,167587690,168078250,168522659,169049617,169613320,170152143,170663007,171165886,171582250,171949860,172401732,172895429,173373674,173795989,174208111,174547963,174863095,175229642,175654632,176094612,176511516,176894415,177204318,177507347,177884111,178288299,178680179,179087146,179456826,179761678,180042520,180426188,180863447,181272626,181690718,182073615,182398992,182714273,183107617,183509398,183945827,184389697,184793482,185148227,185495682,185939609,186409199,186906383,187403956,187856501,188256866,188657176,189183809,189750961,190328581,190910220,191441193,191930944,192368071,192895127,193460983,194033784,194619277,195168306,195662957,196131277,196749876,197424293,198106607,198766631,199367912,199918431,200425038,201067433,201770050,202494141,203209674,203857768,204430842,204959598,205633969,206349322,207080533,207821694,208478691,209049403,209584733,210275704,210995560,211751774,212484602,213135148,213705780,214236521,214933221,215679668,216429113,217166509,217821306,218387835,218932805,219582851,220288912,220997725,221689854,222286457,222833130,223332600,223892268,224515157,225155034,225774323,226337812,226829926,227282287,227823779,228411163,229011228,229596182,230105924,230542795,230959324,231467628,232020081,232557699,233081733,233539403,233945692,234331594,234787821,235291607,235803927,236291539,236713032,237075653,237426740,237868528,238337381,238816879,239277641,239685206,240043464,240379202,240801616,241262762,241728900,242180730,242581268,242930009,243281846,243726535,244196866,244676651,245143881,245567378,245930794,246276156,246730112,247217675,247718827,248199731,248636389,249011580,249382310,249807544,250301158,250837742,251358558,251831660,252227203,252621043,253118980,253683734,254256266,254805135,255301789,255722084,256155047,256693777,257309663,257944228,258555988,259119506,259582498,260054535,260660319,261315507,261961906,262586355,263139135,263606031,264091763,264732593,265436954,266166933,266894317,267523802,268038947,268530224,269186812,269893135,270601981,271296562,271907617,272440183,272930416,273610844,274376826,275159826,275932928,276627167,277228008,277812536,278643774,279618659,280689520,281751602,282702332,283360923,284200906,285549851,287242318,289282491,291290403,293150760,294427883,295933889,298181508,300912704,303717376,306547876,309267691,311711422,313909202,316893272,320203661,323584342,326953187,329962851,332657812,335103601,338443593,342169973,346002809,349843604,353319442,356227170,358776247,362373896,366098743,369825765,373413042,376514114,379082035,381424513,384566436,387727127,390932692,393966687,396437409,398517852,400422437,403125445,405782080,408354836,410742089,412778479,414418190,415925403,417910618,420066066,422148093,424134180,425832880,427242811,428560601,430251221,432146627,433973371,435653288,437125013,438399524,439602190,441082771,442765839,444479088,446226143,447788971,449114686,450410226,452112885,453898224,455811408,457585674,459201410,460711318,462003266,463815262,465767953,467924952,469782083,471380707,472654057,473823945,475615084,477524006,479329101,480983139,482385480,483510864,484598438,486226203,487894812,489434659,490803630,491936780,492802814,493571540,494871037,496148494,497364788,498490859,499410237,500140462,500725201,501801069,502828300,503823572,504605639,505255587,505787505,506166498,506802944,507780160,508652243,509366213,510005666,510483226,510909457,511563999,512306560,513017813,513630647,514143040,514510875,514823152,515475439,516145961,516782500,517337095,517848721,518251007,518648409,519319606,519992851,520686863,521661507,522388763,523117614,523925056,524846713,525716701,526625045,527465455,528209840,528809070,529349263,530066059,530749186,531438145,532062200,532624802,533094506,533546105,534171056,534826553,535476417,536076089,536608487,537027363,537428757,538045648,538696020,539358540,539980877,540476187,540920296,541333973,541972354,542631141,543298255,543850347,544419003,544851960,545243576,546028873,546819096,547647226,548432029,549098583,549597496,550199057,551095780,552046781,553000342,553929437,554640599,555252122,555895534,556942396,558013403,559112702,560140993,560941647,561630629,562300890,563341883,564362427,565166682] }],
responsive: {
rules: [{
condition: {
maxWidth: 800
},
chartOptions: {
legend: {
layout: 'horizontal',
align: 'center',
verticalAlign: 'bottom'
}
}
}]
}
});
Highcharts.chart('coronavirus-cases-daily', {
chart: {
type: 'column'
},
title: {
text: 'Daily New Cases'
},
subtitle: {
text: 'Cases per Day<br>Data as of 0:00 GMT+0'
},
xAxis: {
categories: ["Jan 22, 2020","Jan 23, 2020","Jan 24, 2020","Jan 25, 2020","Jan 26, 2020","Jan 27, 2020","Jan 28, 2020","Jan 29, 2020","Jan 30, 2020","Jan 31, 2020","Feb 01, 2020","Feb 02, 2020","Feb 03, 2020","Feb 04, 2020","Feb 05, 2020","Feb 06, 2020","Feb 07, 2020","Feb 08, 2020","Feb 09, 2020","Feb 10, 2020","Feb 11, 2020","Feb 12, 2020","Feb 13, 2020","Feb 14, 2020","Feb 15, 2020","Feb 16, 2020","Feb 17, 2020","Feb 18, 2020","Feb 19, 2020","Feb 20, 2020","Feb 21, 2020","Feb 22, 2020","Feb 23, 2020","Feb 24, 2020","Feb 25, 2020","Feb 26, 2020","Feb 27, 2020","Feb 28, 2020","Feb 29, 2020","Mar 01, 2020","Mar 02, 2020","Mar 03, 2020","Mar 04, 2020","Mar 05, 2020","Mar 06, 2020","Mar 07, 2020","Mar 08, 2020","Mar 09, 2020","Mar 10, 2020","Mar 11, 2020","Mar 12, 2020","Mar 13, 2020","Mar 14, 2020","Mar 15, 2020","Mar 16, 2020","Mar 17, 2020","Mar 18, 2020","Mar 19, 2020","Mar 20, 2020","Mar 21, 2020","Mar 22, 2020","Mar 23, 2020","Mar 24, 2020","Mar 25, 2020","Mar 26, 2020","Mar 27, 2020","Mar 28, 2020","Mar 29, 2020","Mar 30, 2020","Mar 31, 2020","Apr 01, 2020","Apr 02, 2020","Apr 03, 2020","Apr 04, 2020","Apr 05, 2020","Apr 06, 2020","Apr 07, 2020","Apr 08, 2020","Apr 09, 2020","Apr 10, 2020","Apr 11, 2020","Apr 12, 2020","Apr 13, 2020","Apr 14, 2020","Apr 15, 2020","Apr 16, 2020","Apr 17, 2020","Apr 18, 2020","Apr 19, 2020","Apr 20, 2020","Apr 21, 2020","Apr 22, 2020","Apr 23, 2020","Apr 24, 2020","Apr 25, 2020","Apr 26, 2020","Apr 27, 2020","Apr 28, 2020","Apr 29, 2020","Apr 30, 2020","May 01, 2020","May 02, 2020","May 03, 2020","May 04, 2020","May 05, 2020","May 06, 2020","May 07, 2020","May 08, 2020","May 09, 2020","May 10, 2020","May 11, 2020","May 12, 2020","May 13, 2020","May 14, 2020","May 15, 2020","May 16, 2020","May 17, 2020","May 18, 2020","May 19, 2020","May 20, 2020","May 21, 2020","May 22, 2020","May 23, 2020","May 24, 2020","May 25, 2020","May 26, 2020","May 27, 2020","May 28, 2020","May 29, 2020","May 30, 2020","May 31, 2020","Jun 01, 2020","Jun 02, 2020","Jun 03, 2020","Jun 04, 2020","Jun 05, 2020","Jun 06, 2020","Jun 07, 2020","Jun 08, 2020","Jun 09, 2020","Jun 10, 2020","Jun 11, 2020","Jun 12, 2020","Jun 13, 2020","Jun 14, 2020","Jun 15, 2020","Jun 16, 2020","Jun 17, 2020","Jun 18, 2020","Jun 19, 2020","Jun 20, 2020","Jun 21, 2020","Jun 22, 2020","Jun 23, 2020","Jun 24, 2020","Jun 25, 2020","Jun 26, 2020","Jun 27, 2020","Jun 28, 2020","Jun 29, 2020","Jun 30, 2020","Jul 01, 2020","Jul 02, 2020","Jul 03, 2020","Jul 04, 2020","Jul 05, 2020","Jul 06, 2020","Jul 07, 2020","Jul 08, 2020","Jul 09, 2020","Jul 10, 2020","Jul 11, 2020","Jul 12, 2020","Jul 13, 2020","Jul 14, 2020","Jul 15, 2020","Jul 16, 2020","Jul 17, 2020","Jul 18, 2020","Jul 19, 2020","Jul 20, 2020","Jul 21, 2020","Jul 22, 2020","Jul 23, 2020","Jul 24, 2020","Jul 25, 2020","Jul 26, 2020","Jul 27, 2020","Jul 28, 2020","Jul 29, 2020","Jul 30, 2020","Jul 31, 2020","Aug 01, 2020","Aug 02, 2020","Aug 03, 2020","Aug 04, 2020","Aug 05, 2020","Aug 06, 2020","Aug 07, 2020","Aug 08, 2020","Aug 09, 2020","Aug 10, 2020","Aug 11, 2020","Aug 12, 2020","Aug 13, 2020","Aug 14, 2020","Aug 15, 2020","Aug 16, 2020","Aug 17, 2020","Aug 18, 2020","Aug 19, 2020","Aug 20, 2020","Aug 21, 2020","Aug 22, 2020","Aug 23, 2020","Aug 24, 2020","Aug 25, 2020","Aug 26, 2020","Aug 27, 2020","Aug 28, 2020","Aug 29, 2020","Aug 30, 2020","Aug 31, 2020","Sep 01, 2020","Sep 02, 2020","Sep 03, 2020","Sep 04, 2020","Sep 05, 2020","Sep 06, 2020","Sep 07, 2020","Sep 08, 2020","Sep 09, 2020","Sep 10, 2020","Sep 11, 2020","Sep 12, 2020","Sep 13, 2020","Sep 14, 2020","Sep 15, 2020","Sep 16, 2020","Sep 17, 2020","Sep 18, 2020","Sep 19, 2020","Sep 20, 2020","Sep 21, 2020","Sep 22, 2020","Sep 23, 2020","Sep 24, 2020","Sep 25, 2020","Sep 26, 2020","Sep 27, 2020","Sep 28, 2020","Sep 29, 2020","Sep 30, 2020","Oct 01, 2020","Oct 02, 2020","Oct 03, 2020","Oct 04, 2020","Oct 05, 2020","Oct 06, 2020","Oct 07, 2020","Oct 08, 2020","Oct 09, 2020","Oct 10, 2020","Oct 11, 2020","Oct 12, 2020","Oct 13, 2020","Oct 14, 2020","Oct 15, 2020","Oct 16, 2020","Oct 17, 2020","Oct 18, 2020","Oct 19, 2020","Oct 20, 2020","Oct 21, 2020","Oct 22, 2020","Oct 23, 2020","Oct 24, 2020","Oct 25, 2020","Oct 26, 2020","Oct 27, 2020","Oct 28, 2020","Oct 29, 2020","Oct 30, 2020","Oct 31, 2020","Nov 01, 2020","Nov 02, 2020","Nov 03, 2020","Nov 04, 2020","Nov 05, 2020","Nov 06, 2020","Nov 07, 2020","Nov 08, 2020","Nov 09, 2020","Nov 10, 2020","Nov 11, 2020","Nov 12, 2020","Nov 13, 2020","Nov 14, 2020","Nov 15, 2020","Nov 16, 2020","Nov 17, 2020","Nov 18, 2020","Nov 19, 2020","Nov 20, 2020","Nov 21, 2020","Nov 22, 2020","Nov 23, 2020","Nov 24, 2020","Nov 25, 2020","Nov 26, 2020","Nov 27, 2020","Nov 28, 2020","Nov 29, 2020","Nov 30, 2020","Dec 01, 2020","Dec 02, 2020","Dec 03, 2020","Dec 04, 2020","Dec 05, 2020","Dec 06, 2020","Dec 07, 2020","Dec 08, 2020","Dec 09, 2020","Dec 10, 2020","Dec 11, 2020","Dec 12, 2020","Dec 13, 2020","Dec 14, 2020","Dec 15, 2020","Dec 16, 2020","Dec 17, 2020","Dec 18, 2020","Dec 19, 2020","Dec 20, 2020","Dec 21, 2020","Dec 22, 2020","Dec 23, 2020","Dec 24, 2020","Dec 25, 2020","Dec 26, 2020","Dec 27, 2020","Dec 28, 2020","Dec 29, 2020","Dec 30, 2020","Dec 31, 2020","Jan 01, 2021","Jan 02, 2021","Jan 03, 2021","Jan 04, 2021","Jan 05, 2021","Jan 06, 2021","Jan 07, 2021","Jan 08, 2021","Jan 09, 2021","Jan 10, 2021","Jan 11, 2021","Jan 12, 2021","Jan 13, 2021","Jan 14, 2021","Jan 15, 2021","Jan 16, 2021","Jan 17, 2021","Jan 18, 2021","Jan 19, 2021","Jan 20, 2021","Jan 21, 2021","Jan 22, 2021","Jan 23, 2021","Jan 24, 2021","Jan 25, 2021","Jan 26, 2021","Jan 27, 2021","Jan 28, 2021","Jan 29, 2021","Jan 30, 2021","Jan 31, 2021","Feb 01, 2021","Feb 02, 2021","Feb 03, 2021","Feb 04, 2021","Feb 05, 2021","Feb 06, 2021","Feb 07, 2021","Feb 08, 2021","Feb 09, 2021","Feb 10, 2021","Feb 11, 2021","Feb 12, 2021","Feb 13, 2021","Feb 14, 2021","Feb 15, 2021","Feb 16, 2021","Feb 17, 2021","Feb 18, 2021","Feb 19, 2021","Feb 20, 2021","Feb 21, 2021","Feb 22, 2021","Feb 23, 2021","Feb 24, 2021","Feb 25, 2021","Feb 26, 2021","Feb 27, 2021","Feb 28, 2021","Mar 01, 2021","Mar 02, 2021","Mar 03, 2021","Mar 04, 2021","Mar 05, 2021","Mar 06, 2021","Mar 07, 2021","Mar 08, 2021","Mar 09, 2021","Mar 10, 2021","Mar 11, 2021","Mar 12, 2021","Mar 13, 2021","Mar 14, 2021","Mar 15, 2021","Mar 16, 2021","Mar 17, 2021","Mar 18, 2021","Mar 19, 2021","Mar 20, 2021","Mar 21, 2021","Mar 22, 2021","Mar 23, 2021","Mar 24, 2021","Mar 25, 2021","Mar 26, 2021","Mar 27, 2021","Mar 28, 2021","Mar 29, 2021","Mar 30, 2021","Mar 31, 2021","Apr 01, 2021","Apr 02, 2021","Apr 03, 2021","Apr 04, 2021","Apr 05, 2021","Apr 06, 2021","Apr 07, 2021","Apr 08, 2021","Apr 09, 2021","Apr 10, 2021","Apr 11, 2021","Apr 12, 2021","Apr 13, 2021","Apr 14, 2021","Apr 15, 2021","Apr 16, 2021","Apr 17, 2021","Apr 18, 2021","Apr 19, 2021","Apr 20, 2021","Apr 21, 2021","Apr 22, 2021","Apr 23, 2021","Apr 24, 2021","Apr 25, 2021","Apr 26, 2021","Apr 27, 2021","Apr 28, 2021","Apr 29, 2021","Apr 30, 2021","May 01, 2021","May 02, 2021","May 03, 2021","May 04, 2021","May 05, 2021","May 06, 2021","May 07, 2021","May 08, 2021","May 09, 2021","May 10, 2021","May 11, 2021","May 12, 2021","May 13, 2021","May 14, 2021","May 15, 2021","May 16, 2021","May 17, 2021","May 18, 2021","May 19, 2021","May 20, 2021","May 21, 2021","May 22, 2021","May 23, 2021","May 24, 2021","May 25, 2021","May 26, 2021","May 27, 2021","May 28, 2021","May 29, 2021","May 30, 2021","May 31, 2021","Jun 01, 2021","Jun 02, 2021","Jun 03, 2021","Jun 04, 2021","Jun 05, 2021","Jun 06, 2021","Jun 07, 2021","Jun 08, 2021","Jun 09, 2021","Jun 10, 2021","Jun 11, 2021","Jun 12, 2021","Jun 13, 2021","Jun 14, 2021","Jun 15, 2021","Jun 16, 2021","Jun 17, 2021","Jun 18, 2021","Jun 19, 2021","Jun 20, 2021","Jun 21, 2021","Jun 22, 2021","Jun 23, 2021","Jun 24, 2021","Jun 25, 2021","Jun 26, 2021","Jun 27, 2021","Jun 28, 2021","Jun 29, 2021","Jun 30, 2021","Jul 01, 2021","Jul 02, 2021","Jul 03, 2021","Jul 04, 2021","Jul 05, 2021","Jul 06, 2021","Jul 07, 2021","Jul 08, 2021","Jul 09, 2021","Jul 10, 2021","Jul 11, 2021","Jul 12, 2021","Jul 13, 2021","Jul 14, 2021","Jul 15, 2021","Jul 16, 2021","Jul 17, 2021","Jul 18, 2021","Jul 19, 2021","Jul 20, 2021","Jul 21, 2021","Jul 22, 2021","Jul 23, 2021","Jul 24, 2021","Jul 25, 2021","Jul 26, 2021","Jul 27, 2021","Jul 28, 2021","Jul 29, 2021","Jul 30, 2021","Jul 31, 2021","Aug 01, 2021","Aug 02, 2021","Aug 03, 2021","Aug 04, 2021","Aug 05, 2021","Aug 06, 2021","Aug 07, 2021","Aug 08, 2021","Aug 09, 2021","Aug 10, 2021","Aug 11, 2021","Aug 12, 2021","Aug 13, 2021","Aug 14, 2021","Aug 15, 2021","Aug 16, 2021","Aug 17, 2021","Aug 18, 2021","Aug 19, 2021","Aug 20, 2021","Aug 21, 2021","Aug 22, 2021","Aug 23, 2021","Aug 24, 2021","Aug 25, 2021","Aug 26, 2021","Aug 27, 2021","Aug 28, 2021","Aug 29, 2021","Aug 30, 2021","Aug 31, 2021","Sep 01, 2021","Sep 02, 2021","Sep 03, 2021","Sep 04, 2021","Sep 05, 2021","Sep 06, 2021","Sep 07, 2021","Sep 08, 2021","Sep 09, 2021","Sep 10, 2021","Sep 11, 2021","Sep 12, 2021","Sep 13, 2021","Sep 14, 2021","Sep 15, 2021","Sep 16, 2021","Sep 17, 2021","Sep 18, 2021","Sep 19, 2021","Sep 20, 2021","Sep 21, 2021","Sep 22, 2021","Sep 23, 2021","Sep 24, 2021","Sep 25, 2021","Sep 26, 2021","Sep 27, 2021","Sep 28, 2021","Sep 29, 2021","Sep 30, 2021","Oct 01, 2021","Oct 02, 2021","Oct 03, 2021","Oct 04, 2021","Oct 05, 2021","Oct 06, 2021","Oct 07, 2021","Oct 08, 2021","Oct 09, 2021","Oct 10, 2021","Oct 11, 2021","Oct 12, 2021","Oct 13, 2021","Oct 14, 2021","Oct 15, 2021","Oct 16, 2021","Oct 17, 2021","Oct 18, 2021","Oct 19, 2021","Oct 20, 2021","Oct 21, 2021","Oct 22, 2021","Oct 23, 2021","Oct 24, 2021","Oct 25, 2021","Oct 26, 2021","Oct 27, 2021","Oct 28, 2021","Oct 29, 2021","Oct 30, 2021","Oct 31, 2021","Nov 01, 2021","Nov 02, 2021","Nov 03, 2021","Nov 04, 2021","Nov 05, 2021","Nov 06, 2021","Nov 07, 2021","Nov 08, 2021","Nov 09, 2021","Nov 10, 2021","Nov 11, 2021","Nov 12, 2021","Nov 13, 2021","Nov 14, 2021","Nov 15, 2021","Nov 16, 2021","Nov 17, 2021","Nov 18, 2021","Nov 19, 2021","Nov 20, 2021","Nov 21, 2021","Nov 22, 2021","Nov 23, 2021","Nov 24, 2021","Nov 25, 2021","Nov 26, 2021","Nov 27, 2021","Nov 28, 2021","Nov 29, 2021","Nov 30, 2021","Dec 01, 2021","Dec 02, 2021","Dec 03, 2021","Dec 04, 2021","Dec 05, 2021","Dec 06, 2021","Dec 07, 2021","Dec 08, 2021","Dec 09, 2021","Dec 10, 2021","Dec 11, 2021","Dec 12, 2021","Dec 13, 2021","Dec 14, 2021","Dec 15, 2021","Dec 16, 2021","Dec 17, 2021","Dec 18, 2021","Dec 19, 2021","Dec 20, 2021","Dec 21, 2021","Dec 22, 2021","Dec 23, 2021","Dec 24, 2021","Dec 25, 2021","Dec 26, 2021","Dec 27, 2021","Dec 28, 2021","Dec 29, 2021","Dec 30, 2021","Dec 31, 2021","Jan 01, 2022","Jan 02, 2022","Jan 03, 2022","Jan 04, 2022","Jan 05, 2022","Jan 06, 2022","Jan 07, 2022","Jan 08, 2022","Jan 09, 2022","Jan 10, 2022","Jan 11, 2022","Jan 12, 2022","Jan 13, 2022","Jan 14, 2022","Jan 15, 2022","Jan 16, 2022","Jan 17, 2022","Jan 18, 2022","Jan 19, 2022","Jan 20, 2022","Jan 21, 2022","Jan 22, 2022","Jan 23, 2022","Jan 24, 2022","Jan 25, 2022","Jan 26, 2022","Jan 27, 2022","Jan 28, 2022","Jan 29, 2022","Jan 30, 2022","Jan 31, 2022","Feb 01, 2022","Feb 02, 2022","Feb 03, 2022","Feb 04, 2022","Feb 05, 2022","Feb 06, 2022","Feb 07, 2022","Feb 08, 2022","Feb 09, 2022","Feb 10, 2022","Feb 11, 2022","Feb 12, 2022","Feb 13, 2022","Feb 14, 2022","Feb 15, 2022","Feb 16, 2022","Feb 17, 2022","Feb 18, 2022","Feb 19, 2022","Feb 20, 2022","Feb 21, 2022","Feb 22, 2022","Feb 23, 2022","Feb 24, 2022","Feb 25, 2022","Feb 26, 2022","Feb 27, 2022","Feb 28, 2022","Mar 01, 2022","Mar 02, 2022","Mar 03, 2022","Mar 04, 2022","Mar 05, 2022","Mar 06, 2022","Mar 07, 2022","Mar 08, 2022","Mar 09, 2022","Mar 10, 2022","Mar 11, 2022","Mar 12, 2022","Mar 13, 2022","Mar 14, 2022","Mar 15, 2022","Mar 16, 2022","Mar 17, 2022","Mar 18, 2022","Mar 19, 2022","Mar 20, 2022","Mar 21, 2022","Mar 22, 2022","Mar 23, 2022","Mar 24, 2022","Mar 25, 2022","Mar 26, 2022","Mar 27, 2022","Mar 28, 2022","Mar 29, 2022","Mar 30, 2022","Mar 31, 2022","Apr 01, 2022","Apr 02, 2022","Apr 03, 2022","Apr 04, 2022","Apr 05, 2022","Apr 06, 2022","Apr 07, 2022","Apr 08, 2022","Apr 09, 2022","Apr 10, 2022","Apr 11, 2022","Apr 12, 2022","Apr 13, 2022","Apr 14, 2022","Apr 15, 2022","Apr 16, 2022","Apr 17, 2022","Apr 18, 2022","Apr 19, 2022","Apr 20, 2022","Apr 21, 2022","Apr 22, 2022","Apr 23, 2022","Apr 24, 2022","Apr 25, 2022","Apr 26, 2022","Apr 27, 2022","Apr 28, 2022","Apr 29, 2022","Apr 30, 2022","May 01, 2022","May 02, 2022","May 03, 2022","May 04, 2022","May 05, 2022","May 06, 2022","May 07, 2022","May 08, 2022","May 09, 2022","May 10, 2022","May 11, 2022","May 12, 2022","May 13, 2022","May 14, 2022","May 15, 2022","May 16, 2022","May 17, 2022","May 18, 2022","May 19, 2022","May 20, 2022","May 21, 2022","May 22, 2022","May 23, 2022","May 24, 2022","May 25, 2022","May 26, 2022","May 27, 2022","May 28, 2022","May 29, 2022","May 30, 2022","May 31, 2022","Jun 01, 2022","Jun 02, 2022","Jun 03, 2022","Jun 04, 2022","Jun 05, 2022","Jun 06, 2022","Jun 07, 2022","Jun 08, 2022","Jun 09, 2022","Jun 10, 2022","Jun 11, 2022","Jun 12, 2022","Jun 13, 2022","Jun 14, 2022","Jun 15, 2022","Jun 16, 2022","Jun 17, 2022","Jun 18, 2022","Jun 19, 2022","Jun 20, 2022","Jun 21, 2022","Jun 22, 2022","Jun 23, 2022","Jun 24, 2022","Jun 25, 2022","Jun 26, 2022","Jun 27, 2022","Jun 28, 2022","Jun 29, 2022","Jun 30, 2022","Jul 01, 2022","Jul 02, 2022","Jul 03, 2022","Jul 04, 2022","Jul 05, 2022","Jul 06, 2022","Jul 07, 2022","Jul 08, 2022","Jul 09, 2022","Jul 10, 2022","Jul 11, 2022","Jul 12, 2022","Jul 13, 2022","Jul 14, 2022"] },
yAxis: {
title: {
text: null //'Novel Coronavirus Daily Cases'
}
},
legend: {
enabled: true,
layout: 'vertical',
align: 'right',
verticalAlign: 'middle'
},
credits: {
enabled: false
},
plotOptions: {
series: {
showCheckbox: true,
selected: true
},
spline: {
events: {
legendItemClick: function(event) {
this.checkbox.click();
return false;
}
},
showInLegend: true
}
},
series: [{
name: 'Daily Cases',
color: '#999',
lineWidth: 4,
showCheckbox: false,
showInLegend: false,
data: [null,271,475,701,787,1784,1479,1764,2016,2136,2626,2857,3254,3946,3728,3184,3453,2685,3006,2566,2058,14183,5175,2683,2132,2158,2031,1881,534,1034,1058,1040,624,999,863,1139,1458,1824,2217,2628,2635,3335,3190,4352,5060,5797,5868,7235,8887,11496,14383,17009,17610,18998,21070,24220,28211,32445,38965,34275,37625,44078,47197,50996,62939,67451,68227,61510,64457,77750,78927,79887,87375,83491,73122,76573,85186,89265,91084,92859,85440,75759,76137,79932,87903,88354,91800,85152,78368,82411,82741,85032,90632,97252,92345,75382,71511,80622,90264,89016,94721,83652,82324,80693,83511,95481,95806,96679,88742,79735,72455,90076,93196,98654,102497,97139,83597,91681,100346,107913,109535,110360,102650,98357,92479,94935,110525,120655,129429,127498,110969,103281,120718,123798,133696,133478,131404,117138,109932,124560,140592,141981,144601,138143,126585,128751,149036,151380,145566,186708,162223,135012,143215,169347,180096,186589,198988,183773,168979,163222,183441,204488,216470,220308,200899,180860,176696,217077,220395,231108,243464,222448,202879,197426,227651,242571,254726,246416,233103,221804,207305,247004,286932,281318,293915,269106,225283,218425,256187,296589,291758,296338,264900,225822,202336,260726,278998,288201,288818,276775,227653,220566,274788,295332,291454,294982,271468,222423,205144,265425,281436,277164,270239,272795,218068,219969,262561,283412,282608,295057,270360,231231,250776,268509,294493,295267,313679,283953,243790,206729,254538,295728,307452,324491,296696,256262,250407,289963,312538,319443,329345,305325,261341,240130,288216,317485,320345,330070,306189,262545,241392,295669,323616,329084,334432,310965,265269,272189,319251,356725,362999,370510,380200,295896,274213,327934,387078,405963,423226,405456,348420,333823,401217,447408,490795,499333,484661,432044,396883,476324,519613,551301,575126,514073,468031,452261,517430,577753,627095,629569,638592,506991,470333,583768,634785,647535,660478,612387,516994,487627,585824,627298,663135,668457,616910,525404,523035,585379,643849,628016,611186,602419,529401,489944,597999,648981,698606,696953,654291,552298,517573,626558,668839,705317,716504,670423,559570,530799,628685,738106,739120,729761,660288,560687,534785,638418,706957,703395,552176,450474,459229,504273,638433,773571,780379,652782,551494,550850,557035,741844,812430,851314,833533,762193,637201,582506,703579,748413,750735,751616,682668,554819,472227,608659,662583,651515,636174,600514,479553,434558,545490,593830,596370,580703,531756,416213,388527,463900,487557,508781,498614,442101,362047,318428,394108,444573,446348,426964,388160,303121,263389,350175,397860,402286,412448,388745,317416,283362,381776,444266,447536,437377,398337,322483,294551,372762,447670,450703,455209,415239,380547,292524,397363,469723,482565,494698,454544,379275,336005,457847,535590,553037,559885,519629,437855,424693,506841,591702,635281,634950,596420,504929,457385,550029,647004,706554,653432,568229,556236,479796,632453,690469,747770,792260,724856,656928,582550,744922,813805,844086,837720,807047,733407,655913,832192,887551,890531,901679,847357,748321,671710,837579,893091,904108,878037,818130,699296,669311,785237,851198,861348,842145,798767,668709,607958,717506,757169,748079,700558,649303,551603,535814,618452,664946,657330,625181,585937,490560,444409,526958,563703,538823,510864,502879,416364,367610,451872,493697,478245,422315,412122,339852,315132,366547,424990,439980,416904,382899,309903,303029,376764,404188,391880,406967,369680,304852,280842,383668,437259,409179,418092,382897,325377,315281,393344,401781,436429,443870,403785,354745,347455,443927,469590,497184,497573,452545,400365,400310,526633,567152,577620,581639,530973,489751,437127,527056,565856,572801,585493,549029,494651,468320,618599,674417,682314,660024,601281,550519,506607,642395,702617,724091,715533,648094,573074,528756,674371,715353,731211,741161,656997,570712,535330,690971,719856,756214,732828,650546,570632,530741,696700,746447,749445,737396,654797,566529,544970,650046,706061,708813,692129,596603,546673,499470,559668,622889,639877,619289,563489,492114,452361,541492,587384,600065,584954,509742,436871,416529,508304,552453,537618,524034,457670,406289,385902,456227,503786,512320,487612,421493,362621,351087,441788,468853,479498,460762,407565,358258,335738,422414,461146,466138,451830,400538,348741,351837,444689,470331,479785,467230,423497,363416,345362,453956,487563,501152,480904,436658,375191,370730,425234,493614,536584,520816,473102,395543,393840,497937,564754,572532,548869,496654,420295,432963,538730,615886,634565,611760,563518,462992,472037,605784,655188,646399,624449,552780,466896,485732,640830,704361,729979,727384,629485,515145,491277,656588,706323,708846,694581,611055,532566,490233,680428,765982,783000,773102,694239,600841,584528,831238,974885,1070861,1062082,950730,658591,839983,1348945,1692467,2040173,2007912,1860357,1277123,1506006,2247619,2731196,2804672,2830500,2719815,2443731,2197780,2984070,3310389,3380681,3368845,3009664,2694961,2445789,3339992,3726380,3832836,3840795,3475838,2907728,2549077,3597649,3724847,3727022,3587277,3101072,2567921,2342478,3141923,3160691,3205565,3033995,2470722,2080443,1904585,2703008,2656635,2572756,2387253,2036390,1639711,1507213,1985215,2155448,2082027,1986087,1698700,1409931,1317790,1690620,1895406,1826744,1679917,1471725,1274511,1202666,1480581,1683068,1713249,1747055,1562828,1325715,1295540,1702659,1785339,1913184,1774266,1615736,1509908,1291948,1811996,1952691,2156999,1857131,1598624,1273350,1169888,1791139,1908922,1805095,1654038,1402341,1125384,1087574,1627765,1668609,1539847,1368971,1133150,866034,768726,1299497,1277457,1216294,1126071,919378,730225,584739,1075868,1027231,995272,782067,649948,531918,378993,636446,977216,872083,713970,639453,477560,426231,654542,742561,711253,612834,512393,367835,312277,652287,670522,636539,554595,511626,402286,397402,671197,673245,694012,974644,727256,728851,807442,921657,869988,908344,840410,744385,599230,540193,716796,683127,688959,624055,562602,469704,451599,624951,655497,649864,599672,532398,418876,401394,616891,650372,662520,622337,495310,444109,413677,638381,658787,667114,552092,568656,432957,391616,785297,790223,828130,784803,666554,498913,601561,896723,951001,953561,929095,711162,611523,643412,1046862,1071007,1099299,1028291,800654,688982,670261,1040993,1020544,804255] }
, {
name: '7-day moving average',
type: 'spline',
selected: false,
data: [null,null,null,null,null,null,null,null,1286,1524,1799,2095,2304,2657,2938,3104,3293,3301,3322,3224,2954,4448,4732,4623,4543,4422,4346,4320,2371,1779,1547,1391,1171,1025,878,966,1026,1135,1303,1590,1823,2177,2470,2883,3345,3857,4319,4977,5770,6956,8390,10096,11784,13660,15636,17826,20215,22795,25931,28312,30973,34260,37542,40797,45154,49223,54073,57486,60396,64762,68751,71173,74019,76200,77858,79589,80652,82128,83728,84512,84790,85166,85104,84354,84159,83769,83618,83577,83949,84846,85247,84837,85162,85941,86969,86542,84985,84683,85429,85199,84837,83596,84587,85899,86311,87057,88027,88307,89033,88664,87487,88425,88099,88505,89336,90536,91088,93834,95302,97404,98958,100081,100869,102978,103091,102319,102691,104280,107005,110554,112355,113899,117582,119479,121341,121920,122477,123359,124309,124858,127258,128440,130030,130992,132342,135031,138527,140068,140580,146596,150035,151240,153306,156207,160309,166170,167925,171003,175855,178713,180727,184212,188480,191526,193972,195670,197594,202400,204672,206763,210072,213149,216296,219256,220768,223935,227309,227731,229253,231957,233368,236133,242470,246269,253054,258198,258695,260283,261595,262975,264466,264812,264212,264288,261990,262638,260126,259617,258543,260240,260501,263105,265114,267448,267912,268793,268034,267288,265084,263747,261762,259720,256186,256375,255753,257871,257462,257744,258521,262067,261720,263599,268001,268851,270433,272242,274902,276844,278638,272346,270350,270526,272267,273812,275632,277413,283654,288714,291115,292829,293522,294755,295480,294012,293763,294469,294598,294702,294825,294997,295178,296242,297118,298366,298990,299672,300061,304460,307830,312559,317404,322558,332449,336825,337113,338354,342690,348828,356358,359967,367470,375986,386454,395074,407192,418064,429380,441326,450334,461064,471379,480023,490850,495052,500193,508104,513977,522282,533110,540887,558676,564242,566823,576300,584448,587367,591783,588040,589468,591940,592232,591164,593392,594531,595178,596379,601438,601374,603738,598722,590540,588469,589041,584314,586116,586849,596934,609186,616597,619867,623814,627895,630731,631690,634483,636787,637826,639716,640020,649914,654744,656638,655190,655349,655919,657309,652860,647756,622386,592413,577920,573560,573562,583079,594076,608449,622880,635969,643506,658280,663830,673964,699786,729886,742221,745860,740394,731248,716880,705178,693817,682048,666294,652734,640472,626298,609807,598070,587318,581936,572913,563090,555213,547288,537466,528417,521841,510186,495004,482491,470764,457956,450218,440204,430234,424093,415174,404938,397233,388814,380952,374676,368002,361708,359634,359718,361760,364613,369128,375757,382221,385783,387152,387877,389475,388188,388673,389127,391673,394088,402383,402094,405608,408758,413310,418951,424566,424385,430596,439237,448646,458714,468026,477324,485693,498362,505361,513378,525126,535850,546821,556402,561073,567242,575142,585325,587965,583937,591267,594469,606243,612453,618340,638174,660548,674933,689613,705679,723299,737058,743552,755294,766220,776700,789167,799702,806338,815474,821233,823363,825620,826390,827181,829121,825743,821568,814565,814221,806745,800759,794651,789524,786757,782388,773623,763947,750515,734333,714107,692754,676026,665718,651569,638393,625430,614661,605609,596889,583830,570760,556297,539368,523036,511171,500571,489600,478874,468873,460218,447569,434604,423673,416176,403988,394171,388706,387932,383758,379479,377751,379209,376239,369366,367947,366059,365337,362168,363154,367878,370350,371938,373827,376760,381679,383061,377993,381886,385568,388553,392747,397345,404570,414257,422937,430608,437574,444092,451642,463457,477394,488886,500895,512098,524869,530128,530188,530003,529315,529865,532445,533144,537601,550679,566187,581832,592479,599944,607924,613395,616794,620822,626791,634720,641408,644630,647795,652362,654182,655198,658860,660132,659795,660733,663105,663749,667320,666129,665209,665196,664541,665360,669158,668192,668843,669452,668865,670897,664233,658464,652658,646193,637878,635042,628543,615631,603749,593901,583496,578765,570971,564241,561644,556572,550885,545980,538302,530410,525291,520549,515560,506639,497936,490497,486128,481753,474313,467361,463747,458543,453376,447137,442164,440101,435111,430421,426586,424597,423973,421780,419012,417912,416003,414727,413723,412364,414663,417846,419157,421108,423307,426587,428684,427758,429083,431544,434596,436550,438431,440112,443736,439633,440498,445559,451261,456467,459375,462676,473063,483225,488360,492368,495733,499269,504858,510685,517990,526851,535837,545388,551487,557070,566649,572263,573954,575767,574233,574790,576747,581754,588778,600718,615423,626381,633274,634066,636317,636597,633578,628892,626260,628748,628598,632005,640527,651121,662338,674221,683975,697446,718990,748833,789957,831239,867881,876130,912625,986582,1089094,1227567,1362686,1492633,1580994,1676141,1804522,1952912,2062127,2179639,2302418,2469077,2567902,2673109,2755851,2838138,2915045,2956451,2992342,3027771,3078617,3138045,3202638,3270060,3336655,3367052,3381806,3418615,3418396,3403279,3367063,3313524,3264981,3235466,3170363,3089769,3015276,2936235,2846185,2776545,2713989,2651287,2579279,2488878,2396486,2334438,2271477,2214710,2112167,2040570,1970465,1913156,1864914,1832089,1805028,1762944,1725794,1689325,1645587,1613162,1593816,1577370,1547364,1517031,1500816,1510408,1523423,1530737,1544005,1575731,1590341,1618903,1622790,1630348,1656662,1656148,1671769,1695675,1730506,1742345,1739899,1706106,1688668,1685689,1679436,1629164,1600151,1572111,1550972,1539213,1515874,1481544,1443651,1402928,1364471,1327421,1281872,1234976,1179098,1132875,1098176,1067637,1048235,1021952,990004,954258,922684,873540,835050,806720,777328,714554,707408,689811,680082,678582,670818,677565,680151,646628,623653,609205,591054,575378,559099,558777,548486,537813,529492,529383,534305,546465,549167,549556,557766,617773,648577,695230,753807,789586,817693,848312,829135,831583,813065,774887,745620,718927,687586,656677,630709,612205,599549,586428,582481,576896,573413,569098,561837,554664,553513,552781,554589,557827,552529,556133,557888,560958,562160,562817,552781,563260,561666,558515,579502,598280,621281,654526,668512,677933,707926,723844,746812,764731,785344,791717,807803,813783,835231,852374,873194,887366,900149,911216,915050,914213,907003,864855],
lineWidth: 2,
color: '#34a4c9',
visible: false
}],
responsive: {
rules: [{
condition: {
maxWidth: 800
},
chartOptions: {
legend: {
layout: 'horizontal',
align: 'center',
verticalAlign: 'bottom'
}
}
}]
}
}
,
function(chart) {
Highcharts.each(chart.legend.allItems, function(p, i) {
$(p.checkbox).change(
function() {
if (this.checked) {
chart.legend.allItems[i].show();
} else {
chart.legend.allItems[i].hide();
}
});
});
});
</script>
<div style="font-size:16px; margin-top:20px; margin-bottom:20px">
</div>
</div>
<div class="col-12">
<style>
/* Tabs panel */
.tabbable-panel-deaths {
border: 1px solid #ccc;
padding: 10px;
}
/* Default mode */
.tabbable-line-deaths>.nav-tabs {
border: none;
margin: 0px;
}
.tabbable-line-deaths>.nav-tabs>li {
margin-right: 2px;
}
.tabbable-line-deaths>.nav-tabs>li>a {
border: 0;
margin-right: 0;
color: #737373;
font-size: 13px;
text-decoration: none !important;
}
.tabbable-line-deaths>.nav-tabs>li>a>i {
color: #a6a6a6;
}
.tabbable-line-deaths>.nav-tabs>li.open,
.tabbable-line-deaths>.nav-tabs>li:hover {
border-bottom: 3px solid #fbcdcf;
}
.tabbable-line-deaths>.nav-tabs>li.open>a,
.tabbable-line-deaths>.nav-tabs>li:hover>a {
border: 0;
background: none !important;
color: #333333;
}
.tabbable-line-deaths>.nav-tabs>li.open>a>i,
.tabbable-line-deaths>.nav-tabs>li:hover>a>i {
color: #77DDFF;
}
.tabbable-line-deaths>.nav-tabs>li.open .dropdown-menu,
.tabbable-line-deaths>.nav-tabs>li:hover .dropdown-menu {
margin-top: 0px;
}
.tabbable-line-deaths>.nav-tabs>li.active {
border-bottom: 3px solid #33CCFF;
position: relative;
}
.tabbable-line-deaths>.nav-tabs>li.active>a {
border: 0;
color: #333333;
}
.tabbable-line-deaths>.nav-tabs>li.active>a>i {
color: #404040;
}
.tabbable-line-deaths>.tab-content {
margin-top: -3px;
background-color: #fff;
border: 0;
border-top: 1px solid #eee;
padding: 15px 0;
}
.portlet .tabbable-line-deaths>.tab-content {
padding-bottom: 0;
}
</style>
<div class="tabbable-panel-deaths">
<div class="tabbable-line-deaths">
<ul class="nav nav-tabs">
<li class="active">
<a data-toggle="tab" href="#coronavirus-deaths-daily">
daily
</a>
</li>
<li>
<a data-toggle="tab" href="#coronavirus-deaths-linear">
linear
</a>
</li>
<li>
<a data-toggle="tab" href="#coronavirus-deaths-log">
logarithmic
</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane" id="coronavirus-deaths-linear">
</div>
<div class="tab-pane" id="coronavirus-deaths-log">
</div>
<div class="tab-pane active" id="coronavirus-deaths-daily">
</div>
</div>
</div>
</div>
<script type="text/javascript">
Highcharts.chart('coronavirus-deaths-linear', {
chart: {
type: 'line'
},
title: {
text: 'Total Deaths'
},
subtitle: {
text: '(Linear Scale)'
},
xAxis: {
categories: ["Jan 22, 2020","Jan 23, 2020","Jan 24, 2020","Jan 25, 2020","Jan 26, 2020","Jan 27, 2020","Jan 28, 2020","Jan 29, 2020","Jan 30, 2020","Jan 31, 2020","Feb 01, 2020","Feb 02, 2020","Feb 03, 2020","Feb 04, 2020","Feb 05, 2020","Feb 06, 2020","Feb 07, 2020","Feb 08, 2020","Feb 09, 2020","Feb 10, 2020","Feb 11, 2020","Feb 12, 2020","Feb 13, 2020","Feb 14, 2020","Feb 15, 2020","Feb 16, 2020","Feb 17, 2020","Feb 18, 2020","Feb 19, 2020","Feb 20, 2020","Feb 21, 2020","Feb 22, 2020","Feb 23, 2020","Feb 24, 2020","Feb 25, 2020","Feb 26, 2020","Feb 27, 2020","Feb 28, 2020","Feb 29, 2020","Mar 01, 2020","Mar 02, 2020","Mar 03, 2020","Mar 04, 2020","Mar 05, 2020","Mar 06, 2020","Mar 07, 2020","Mar 08, 2020","Mar 09, 2020","Mar 10, 2020","Mar 11, 2020","Mar 12, 2020","Mar 13, 2020","Mar 14, 2020","Mar 15, 2020","Mar 16, 2020","Mar 17, 2020","Mar 18, 2020","Mar 19, 2020","Mar 20, 2020","Mar 21, 2020","Mar 22, 2020","Mar 23, 2020","Mar 24, 2020","Mar 25, 2020","Mar 26, 2020","Mar 27, 2020","Mar 28, 2020","Mar 29, 2020","Mar 30, 2020","Mar 31, 2020","Apr 01, 2020","Apr 02, 2020","Apr 03, 2020","Apr 04, 2020","Apr 05, 2020","Apr 06, 2020","Apr 07, 2020","Apr 08, 2020","Apr 09, 2020","Apr 10, 2020","Apr 11, 2020","Apr 12, 2020","Apr 13, 2020","Apr 14, 2020","Apr 15, 2020","Apr 16, 2020","Apr 17, 2020","Apr 18, 2020","Apr 19, 2020","Apr 20, 2020","Apr 21, 2020","Apr 22, 2020","Apr 23, 2020","Apr 24, 2020","Apr 25, 2020","Apr 26, 2020","Apr 27, 2020","Apr 28, 2020","Apr 29, 2020","Apr 30, 2020","May 01, 2020","May 02, 2020","May 03, 2020","May 04, 2020","May 05, 2020","May 06, 2020","May 07, 2020","May 08, 2020","May 09, 2020","May 10, 2020","May 11, 2020","May 12, 2020","May 13, 2020","May 14, 2020","May 15, 2020","May 16, 2020","May 17, 2020","May 18, 2020","May 19, 2020","May 20, 2020","May 21, 2020","May 22, 2020","May 23, 2020","May 24, 2020","May 25, 2020","May 26, 2020","May 27, 2020","May 28, 2020","May 29, 2020","May 30, 2020","May 31, 2020","Jun 01, 2020","Jun 02, 2020","Jun 03, 2020","Jun 04, 2020","Jun 05, 2020","Jun 06, 2020","Jun 07, 2020","Jun 08, 2020","Jun 09, 2020","Jun 10, 2020","Jun 11, 2020","Jun 12, 2020","Jun 13, 2020","Jun 14, 2020","Jun 15, 2020","Jun 16, 2020","Jun 17, 2020","Jun 18, 2020","Jun 19, 2020","Jun 20, 2020","Jun 21, 2020","Jun 22, 2020","Jun 23, 2020","Jun 24, 2020","Jun 25, 2020","Jun 26, 2020","Jun 27, 2020","Jun 28, 2020","Jun 29, 2020","Jun 30, 2020","Jul 01, 2020","Jul 02, 2020","Jul 03, 2020","Jul 04, 2020","Jul 05, 2020","Jul 06, 2020","Jul 07, 2020","Jul 08, 2020","Jul 09, 2020","Jul 10, 2020","Jul 11, 2020","Jul 12, 2020","Jul 13, 2020","Jul 14, 2020","Jul 15, 2020","Jul 16, 2020","Jul 17, 2020","Jul 18, 2020","Jul 19, 2020","Jul 20, 2020","Jul 21, 2020","Jul 22, 2020","Jul 23, 2020","Jul 24, 2020","Jul 25, 2020","Jul 26, 2020","Jul 27, 2020","Jul 28, 2020","Jul 29, 2020","Jul 30, 2020","Jul 31, 2020","Aug 01, 2020","Aug 02, 2020","Aug 03, 2020","Aug 04, 2020","Aug 05, 2020","Aug 06, 2020","Aug 07, 2020","Aug 08, 2020","Aug 09, 2020","Aug 10, 2020","Aug 11, 2020","Aug 12, 2020","Aug 13, 2020","Aug 14, 2020","Aug 15, 2020","Aug 16, 2020","Aug 17, 2020","Aug 18, 2020","Aug 19, 2020","Aug 20, 2020","Aug 21, 2020","Aug 22, 2020","Aug 23, 2020","Aug 24, 2020","Aug 25, 2020","Aug 26, 2020","Aug 27, 2020","Aug 28, 2020","Aug 29, 2020","Aug 30, 2020","Aug 31, 2020","Sep 01, 2020","Sep 02, 2020","Sep 03, 2020","Sep 04, 2020","Sep 05, 2020","Sep 06, 2020","Sep 07, 2020","Sep 08, 2020","Sep 09, 2020","Sep 10, 2020","Sep 11, 2020","Sep 12, 2020","Sep 13, 2020","Sep 14, 2020","Sep 15, 2020","Sep 16, 2020","Sep 17, 2020","Sep 18, 2020","Sep 19, 2020","Sep 20, 2020","Sep 21, 2020","Sep 22, 2020","Sep 23, 2020","Sep 24, 2020","Sep 25, 2020","Sep 26, 2020","Sep 27, 2020","Sep 28, 2020","Sep 29, 2020","Sep 30, 2020","Oct 01, 2020","Oct 02, 2020","Oct 03, 2020","Oct 04, 2020","Oct 05, 2020","Oct 06, 2020","Oct 07, 2020","Oct 08, 2020","Oct 09, 2020","Oct 10, 2020","Oct 11, 2020","Oct 12, 2020","Oct 13, 2020","Oct 14, 2020","Oct 15, 2020","Oct 16, 2020","Oct 17, 2020","Oct 18, 2020","Oct 19, 2020","Oct 20, 2020","Oct 21, 2020","Oct 22, 2020","Oct 23, 2020","Oct 24, 2020","Oct 25, 2020","Oct 26, 2020","Oct 27, 2020","Oct 28, 2020","Oct 29, 2020","Oct 30, 2020","Oct 31, 2020","Nov 01, 2020","Nov 02, 2020","Nov 03, 2020","Nov 04, 2020","Nov 05, 2020","Nov 06, 2020","Nov 07, 2020","Nov 08, 2020","Nov 09, 2020","Nov 10, 2020","Nov 11, 2020","Nov 12, 2020","Nov 13, 2020","Nov 14, 2020","Nov 15, 2020","Nov 16, 2020","Nov 17, 2020","Nov 18, 2020","Nov 19, 2020","Nov 20, 2020","Nov 21, 2020","Nov 22, 2020","Nov 23, 2020","Nov 24, 2020","Nov 25, 2020","Nov 26, 2020","Nov 27, 2020","Nov 28, 2020","Nov 29, 2020","Nov 30, 2020","Dec 01, 2020","Dec 02, 2020","Dec 03, 2020","Dec 04, 2020","Dec 05, 2020","Dec 06, 2020","Dec 07, 2020","Dec 08, 2020","Dec 09, 2020","Dec 10, 2020","Dec 11, 2020","Dec 12, 2020","Dec 13, 2020","Dec 14, 2020","Dec 15, 2020","Dec 16, 2020","Dec 17, 2020","Dec 18, 2020","Dec 19, 2020","Dec 20, 2020","Dec 21, 2020","Dec 22, 2020","Dec 23, 2020","Dec 24, 2020","Dec 25, 2020","Dec 26, 2020","Dec 27, 2020","Dec 28, 2020","Dec 29, 2020","Dec 30, 2020","Dec 31, 2020","Jan 01, 2021","Jan 02, 2021","Jan 03, 2021","Jan 04, 2021","Jan 05, 2021","Jan 06, 2021","Jan 07, 2021","Jan 08, 2021","Jan 09, 2021","Jan 10, 2021","Jan 11, 2021","Jan 12, 2021","Jan 13, 2021","Jan 14, 2021","Jan 15, 2021","Jan 16, 2021","Jan 17, 2021","Jan 18, 2021","Jan 19, 2021","Jan 20, 2021","Jan 21, 2021","Jan 22, 2021","Jan 23, 2021","Jan 24, 2021","Jan 25, 2021","Jan 26, 2021","Jan 27, 2021","Jan 28, 2021","Jan 29, 2021","Jan 30, 2021","Jan 31, 2021","Feb 01, 2021","Feb 02, 2021","Feb 03, 2021","Feb 04, 2021","Feb 05, 2021","Feb 06, 2021","Feb 07, 2021","Feb 08, 2021","Feb 09, 2021","Feb 10, 2021","Feb 11, 2021","Feb 12, 2021","Feb 13, 2021","Feb 14, 2021","Feb 15, 2021","Feb 16, 2021","Feb 17, 2021","Feb 18, 2021","Feb 19, 2021","Feb 20, 2021","Feb 21, 2021","Feb 22, 2021","Feb 23, 2021","Feb 24, 2021","Feb 25, 2021","Feb 26, 2021","Feb 27, 2021","Feb 28, 2021","Mar 01, 2021","Mar 02, 2021","Mar 03, 2021","Mar 04, 2021","Mar 05, 2021","Mar 06, 2021","Mar 07, 2021","Mar 08, 2021","Mar 09, 2021","Mar 10, 2021","Mar 11, 2021","Mar 12, 2021","Mar 13, 2021","Mar 14, 2021","Mar 15, 2021","Mar 16, 2021","Mar 17, 2021","Mar 18, 2021","Mar 19, 2021","Mar 20, 2021","Mar 21, 2021","Mar 22, 2021","Mar 23, 2021","Mar 24, 2021","Mar 25, 2021","Mar 26, 2021","Mar 27, 2021","Mar 28, 2021","Mar 29, 2021","Mar 30, 2021","Mar 31, 2021","Apr 01, 2021","Apr 02, 2021","Apr 03, 2021","Apr 04, 2021","Apr 05, 2021","Apr 06, 2021","Apr 07, 2021","Apr 08, 2021","Apr 09, 2021","Apr 10, 2021","Apr 11, 2021","Apr 12, 2021","Apr 13, 2021","Apr 14, 2021","Apr 15, 2021","Apr 16, 2021","Apr 17, 2021","Apr 18, 2021","Apr 19, 2021","Apr 20, 2021","Apr 21, 2021","Apr 22, 2021","Apr 23, 2021","Apr 24, 2021","Apr 25, 2021","Apr 26, 2021","Apr 27, 2021","Apr 28, 2021","Apr 29, 2021","Apr 30, 2021","May 01, 2021","May 02, 2021","May 03, 2021","May 04, 2021","May 05, 2021","May 06, 2021","May 07, 2021","May 08, 2021","May 09, 2021","May 10, 2021","May 11, 2021","May 12, 2021","May 13, 2021","May 14, 2021","May 15, 2021","May 16, 2021","May 17, 2021","May 18, 2021","May 19, 2021","May 20, 2021","May 21, 2021","May 22, 2021","May 23, 2021","May 24, 2021","May 25, 2021","May 26, 2021","May 27, 2021","May 28, 2021","May 29, 2021","May 30, 2021","May 31, 2021","Jun 01, 2021","Jun 02, 2021","Jun 03, 2021","Jun 04, 2021","Jun 05, 2021","Jun 06, 2021","Jun 07, 2021","Jun 08, 2021","Jun 09, 2021","Jun 10, 2021","Jun 11, 2021","Jun 12, 2021","Jun 13, 2021","Jun 14, 2021","Jun 15, 2021","Jun 16, 2021","Jun 17, 2021","Jun 18, 2021","Jun 19, 2021","Jun 20, 2021","Jun 21, 2021","Jun 22, 2021","Jun 23, 2021","Jun 24, 2021","Jun 25, 2021","Jun 26, 2021","Jun 27, 2021","Jun 28, 2021","Jun 29, 2021","Jun 30, 2021","Jul 01, 2021","Jul 02, 2021","Jul 03, 2021","Jul 04, 2021","Jul 05, 2021","Jul 06, 2021","Jul 07, 2021","Jul 08, 2021","Jul 09, 2021","Jul 10, 2021","Jul 11, 2021","Jul 12, 2021","Jul 13, 2021","Jul 14, 2021","Jul 15, 2021","Jul 16, 2021","Jul 17, 2021","Jul 18, 2021","Jul 19, 2021","Jul 20, 2021","Jul 21, 2021","Jul 22, 2021","Jul 23, 2021","Jul 24, 2021","Jul 25, 2021","Jul 26, 2021","Jul 27, 2021","Jul 28, 2021","Jul 29, 2021","Jul 30, 2021","Jul 31, 2021","Aug 01, 2021","Aug 02, 2021","Aug 03, 2021","Aug 04, 2021","Aug 05, 2021","Aug 06, 2021","Aug 07, 2021","Aug 08, 2021","Aug 09, 2021","Aug 10, 2021","Aug 11, 2021","Aug 12, 2021","Aug 13, 2021","Aug 14, 2021","Aug 15, 2021","Aug 16, 2021","Aug 17, 2021","Aug 18, 2021","Aug 19, 2021","Aug 20, 2021","Aug 21, 2021","Aug 22, 2021","Aug 23, 2021","Aug 24, 2021","Aug 25, 2021","Aug 26, 2021","Aug 27, 2021","Aug 28, 2021","Aug 29, 2021","Aug 30, 2021","Aug 31, 2021","Sep 01, 2021","Sep 02, 2021","Sep 03, 2021","Sep 04, 2021","Sep 05, 2021","Sep 06, 2021","Sep 07, 2021","Sep 08, 2021","Sep 09, 2021","Sep 10, 2021","Sep 11, 2021","Sep 12, 2021","Sep 13, 2021","Sep 14, 2021","Sep 15, 2021","Sep 16, 2021","Sep 17, 2021","Sep 18, 2021","Sep 19, 2021","Sep 20, 2021","Sep 21, 2021","Sep 22, 2021","Sep 23, 2021","Sep 24, 2021","Sep 25, 2021","Sep 26, 2021","Sep 27, 2021","Sep 28, 2021","Sep 29, 2021","Sep 30, 2021","Oct 01, 2021","Oct 02, 2021","Oct 03, 2021","Oct 04, 2021","Oct 05, 2021","Oct 06, 2021","Oct 07, 2021","Oct 08, 2021","Oct 09, 2021","Oct 10, 2021","Oct 11, 2021","Oct 12, 2021","Oct 13, 2021","Oct 14, 2021","Oct 15, 2021","Oct 16, 2021","Oct 17, 2021","Oct 18, 2021","Oct 19, 2021","Oct 20, 2021","Oct 21, 2021","Oct 22, 2021","Oct 23, 2021","Oct 24, 2021","Oct 25, 2021","Oct 26, 2021","Oct 27, 2021","Oct 28, 2021","Oct 29, 2021","Oct 30, 2021","Oct 31, 2021","Nov 01, 2021","Nov 02, 2021","Nov 03, 2021","Nov 04, 2021","Nov 05, 2021","Nov 06, 2021","Nov 07, 2021","Nov 08, 2021","Nov 09, 2021","Nov 10, 2021","Nov 11, 2021","Nov 12, 2021","Nov 13, 2021","Nov 14, 2021","Nov 15, 2021","Nov 16, 2021","Nov 17, 2021","Nov 18, 2021","Nov 19, 2021","Nov 20, 2021","Nov 21, 2021","Nov 22, 2021","Nov 23, 2021","Nov 24, 2021","Nov 25, 2021","Nov 26, 2021","Nov 27, 2021","Nov 28, 2021","Nov 29, 2021","Nov 30, 2021","Dec 01, 2021","Dec 02, 2021","Dec 03, 2021","Dec 04, 2021","Dec 05, 2021","Dec 06, 2021","Dec 07, 2021","Dec 08, 2021","Dec 09, 2021","Dec 10, 2021","Dec 11, 2021","Dec 12, 2021","Dec 13, 2021","Dec 14, 2021","Dec 15, 2021","Dec 16, 2021","Dec 17, 2021","Dec 18, 2021","Dec 19, 2021","Dec 20, 2021","Dec 21, 2021","Dec 22, 2021","Dec 23, 2021","Dec 24, 2021","Dec 25, 2021","Dec 26, 2021","Dec 27, 2021","Dec 28, 2021","Dec 29, 2021","Dec 30, 2021","Dec 31, 2021","Jan 01, 2022","Jan 02, 2022","Jan 03, 2022","Jan 04, 2022","Jan 05, 2022","Jan 06, 2022","Jan 07, 2022","Jan 08, 2022","Jan 09, 2022","Jan 10, 2022","Jan 11, 2022","Jan 12, 2022","Jan 13, 2022","Jan 14, 2022","Jan 15, 2022","Jan 16, 2022","Jan 17, 2022","Jan 18, 2022","Jan 19, 2022","Jan 20, 2022","Jan 21, 2022","Jan 22, 2022","Jan 23, 2022","Jan 24, 2022","Jan 25, 2022","Jan 26, 2022","Jan 27, 2022","Jan 28, 2022","Jan 29, 2022","Jan 30, 2022","Jan 31, 2022","Feb 01, 2022","Feb 02, 2022","Feb 03, 2022","Feb 04, 2022","Feb 05, 2022","Feb 06, 2022","Feb 07, 2022","Feb 08, 2022","Feb 09, 2022","Feb 10, 2022","Feb 11, 2022","Feb 12, 2022","Feb 13, 2022","Feb 14, 2022","Feb 15, 2022","Feb 16, 2022","Feb 17, 2022","Feb 18, 2022","Feb 19, 2022","Feb 20, 2022","Feb 21, 2022","Feb 22, 2022","Feb 23, 2022","Feb 24, 2022","Feb 25, 2022","Feb 26, 2022","Feb 27, 2022","Feb 28, 2022","Mar 01, 2022","Mar 02, 2022","Mar 03, 2022","Mar 04, 2022","Mar 05, 2022","Mar 06, 2022","Mar 07, 2022","Mar 08, 2022","Mar 09, 2022","Mar 10, 2022","Mar 11, 2022","Mar 12, 2022","Mar 13, 2022","Mar 14, 2022","Mar 15, 2022","Mar 16, 2022","Mar 17, 2022","Mar 18, 2022","Mar 19, 2022","Mar 20, 2022","Mar 21, 2022","Mar 22, 2022","Mar 23, 2022","Mar 24, 2022","Mar 25, 2022","Mar 26, 2022","Mar 27, 2022","Mar 28, 2022","Mar 29, 2022","Mar 30, 2022","Mar 31, 2022","Apr 01, 2022","Apr 02, 2022","Apr 03, 2022","Apr 04, 2022","Apr 05, 2022","Apr 06, 2022","Apr 07, 2022","Apr 08, 2022","Apr 09, 2022","Apr 10, 2022","Apr 11, 2022","Apr 12, 2022","Apr 13, 2022","Apr 14, 2022","Apr 15, 2022","Apr 16, 2022","Apr 17, 2022","Apr 18, 2022","Apr 19, 2022","Apr 20, 2022","Apr 21, 2022","Apr 22, 2022","Apr 23, 2022","Apr 24, 2022","Apr 25, 2022","Apr 26, 2022","Apr 27, 2022","Apr 28, 2022","Apr 29, 2022","Apr 30, 2022","May 01, 2022","May 02, 2022","May 03, 2022","May 04, 2022","May 05, 2022","May 06, 2022","May 07, 2022","May 08, 2022","May 09, 2022","May 10, 2022","May 11, 2022","May 12, 2022","May 13, 2022","May 14, 2022","May 15, 2022","May 16, 2022","May 17, 2022","May 18, 2022","May 19, 2022","May 20, 2022","May 21, 2022","May 22, 2022","May 23, 2022","May 24, 2022","May 25, 2022","May 26, 2022","May 27, 2022","May 28, 2022","May 29, 2022","May 30, 2022","May 31, 2022","Jun 01, 2022","Jun 02, 2022","Jun 03, 2022","Jun 04, 2022","Jun 05, 2022","Jun 06, 2022","Jun 07, 2022","Jun 08, 2022","Jun 09, 2022","Jun 10, 2022","Jun 11, 2022","Jun 12, 2022","Jun 13, 2022","Jun 14, 2022","Jun 15, 2022","Jun 16, 2022","Jun 17, 2022","Jun 18, 2022","Jun 19, 2022","Jun 20, 2022","Jun 21, 2022","Jun 22, 2022","Jun 23, 2022","Jun 24, 2022","Jun 25, 2022","Jun 26, 2022","Jun 27, 2022","Jun 28, 2022","Jun 29, 2022","Jun 30, 2022","Jul 01, 2022","Jul 02, 2022","Jul 03, 2022","Jul 04, 2022","Jul 05, 2022","Jul 06, 2022","Jul 07, 2022","Jul 08, 2022","Jul 09, 2022","Jul 10, 2022","Jul 11, 2022","Jul 12, 2022","Jul 13, 2022","Jul 14, 2022"] },
yAxis: {
title: {
text: 'Total Coronavirus Deaths'
}
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'middle'
},
credits: {
enabled: false
},
series: [{
name: 'Deaths',
color: '#FF9900',
lineWidth: 5,
data: [17,26,45,60,84,110,137,176,220,266,311,369,433,500,573,646,732,826,924,1032,1129,1275,1397,1540,1682,1788,1886,2022,2139,2260,2373,2473,2631,2712,2776,2812,2870,2935,2989,3062,3129,3214,3299,3399,3506,3611,3838,4037,4314,4647,5030,5494,5917,6629,7311,8188,9212,10305,11736,13445,15265,17347,19954,22596,25767,29372,33268,36952,41421,46288,51685,58107,64386,70791,76370,82667,90146,97102,104986,112236,118853,125105,131480,138994,147470,154536,163364,170048,175808,182292,189644,196660,203933,210401,217051,221968,227748,234876,241935,248224,254750,261116,265961,271642,277842,285103,291355,297417,303011,308397,313266,319475,325145,331052,336802,341777,346205,350806,356604,361971,367713,373144,377976,382010,386621,391462,396934,402045,407388,412255,416549,420737,426241,431784,437382,442539,447471,452173,456596,462069,467873,473498,478910,484055,488527,493175,500588,506513,512462,518315,523406,527951,532087,537892,543429,548991,554393,559614,563947,568756,574524,579977,585681,591415,596698,601108,605753,611974,617897,623990,629979,635659,640779,645640,652009,658349,665014,671335,677131,682289,687450,694179,701781,708686,715553,721929,727078,732454,738939,746176,753179,759967,766186,771288,776774,783656,791078,798087,805055,811104,816587,821967,828715,835658,842664,849111,855188,860385,865629,872507,879359,886018,892635,898701,903799,908902,915576,922181,928708,934954,940663,945425,950344,956793,963290,969467,975606,980936,985586,990196,995265,1001360,1007273,1013202,1018490,1022890,1027685,1034016,1040010,1045729,1051531,1056719,1061050,1065321,1071066,1076897,1082399,1087921,1093182,1097363,1101406,1107179,1112852,1118447,1124181,1129151,1133518,1138296,1144186,1150179,1156774,1162758,1168082,1172826,1177200,1182457,1188644,1194763,1201186,1207043,1211537,1216598,1223120,1230042,1236687,1243400,1249367,1254311,1260151,1267399,1274519,1281745,1289385,1296328,1302393,1309162,1317777,1327028,1336404,1345924,1354055,1361074,1368940,1378678,1388658,1398414,1408734,1418459,1426443,1435138,1445998,1457892,1469279,1480639,1490445,1499112,1508537,1520850,1532962,1544444,1555788,1565995,1574706,1584542,1597008,1609351,1622101,1634562,1645596,1654498,1664300,1676715,1689190,1702131,1714839,1726160,1735261,1745502,1758932,1772614,1785985,1799110,1810674,1820081,1831267,1845046,1858614,1870856,1880578,1889482,1898700,1909722,1924698,1939818,1953683,1964439,1974193,1983312,1994439,2009178,2023837,2038719,2053827,2066803,2077356,2088935,2105389,2121545,2137354,2152826,2166602,2177513,2189083,2204944,2221695,2238513,2254381,2268857,2280018,2291927,2308314,2324991,2341455,2356578,2369671,2379858,2391164,2406035,2420748,2434871,2448685,2460052,2468637,2478565,2491628,2504909,2517942,2529880,2540214,2547909,2555731,2565900,2576603,2587882,2598935,2607752,2614838,2622354,2632881,2643195,2653664,2663393,2671816,2678514,2685957,2695705,2706224,2716197,2725864,2733939,2740179,2747429,2756477,2766401,2776139,2785636,2794031,2800373,2807744,2817937,2828295,2838502,2848977,2857597,2864001,2871773,2882596,2892839,2903635,2915213,2925355,2932695,2940855,2952177,2964378,2976220,2986918,2996146,3003890,3012037,3024517,3037744,3051794,3065362,3076866,3086003,3095701,3108914,3122686,3137020,3150036,3162165,3172395,3183224,3197930,3212255,3226145,3240926,3255137,3265806,3277500,3293158,3308868,3324799,3339563,3353628,3364659,3376458,3391313,3406599,3421347,3436010,3449737,3460948,3472738,3487364,3502098,3516750,3531036,3544555,3555379,3567098,3582081,3595874,3610073,3623835,3635679,3646444,3656237,3669212,3682067,3694148,3706326,3717490,3726257,3735451,3746700,3758167,3769383,3779994,3789521,3797479,3805563,3815922,3826238,3836576,3846136,3854926,3862008,3868931,3878260,3887851,3896721,3905912,3914804,3921783,3928376,3937360,3946535,3955287,3964154,3971982,3978470,3984972,3992919,4001814,4010219,4018874,4026341,4032790,4039258,4047573,4056075,4065052,4073640,4081414,4088125,4094768,4102971,4111745,4120342,4129115,4136604,4143849,4150829,4159391,4168110,4177175,4186016,4194606,4201870,4209601,4219293,4229699,4240409,4249839,4259237,4267427,4276112,4286328,4296648,4307220,4317557,4327276,4336215,4344775,4355752,4366484,4377517,4388161,4397687,4406749,4415204,4425725,4436916,4448470,4459291,4469477,4478508,4486848,4497895,4509760,4521220,4531882,4541786,4550370,4558979,4569309,4579802,4591166,4601749,4610814,4618710,4626628,4635975,4646129,4656377,4666193,4675251,4682811,4690382,4699738,4710511,4720371,4729393,4737461,4744557,4751156,4759881,4769603,4778826,4787769,4794969,4801233,4807460,4816051,4825213,4833490,4841360,4848146,4853924,4859574,4867392,4875909,4883970,4891978,4898559,4903914,4909232,4916237,4923988,4931815,4939144,4945488,4950727,4956200,4963543,4970951,4978592,4986641,4993177,4998849,5004794,5012589,5021346,5029668,5037587,5044387,5049834,5055818,5063033,5070981,5078722,5086595,5093620,5099087,5105266,5113114,5121489,5129084,5137062,5143758,5149173,5155141,5162857,5171403,5179751,5187650,5194214,5199460,5205752,5214164,5222486,5230251,5237680,5244352,5249586,5255892,5263986,5272531,5280518,5288496,5295172,5300233,5306579,5314746,5322944,5331306,5339524,5346122,5351257,5357327,5365165,5373460,5381093,5388716,5394887,5399692,5405778,5413388,5421290,5428600,5435108,5440129,5444369,5449898,5457160,5464844,5472201,5478785,5483803,5487874,5493082,5500721,5508284,5516005,5523101,5529231,5534052,5540151,5548780,5557477,5565895,5574174,5581290,5587113,5593824,5602579,5612126,5622059,5631520,5639158,5645767,5653490,5664090,5675084,5685980,5697103,5706389,5713990,5723110,5735428,5747909,5760319,5772473,5781976,5790055,5799417,5812497,5825005,5837111,5849085,5858782,5866127,5874626,5885450,5897364,5909651,5920684,5930313,5937143,5944465,5953846,5964661,5975328,5984468,5992233,5998115,6004676,6012552,6020587,6028791,6037430,6044174,6049332,6054677,6061936,6069118,6076402,6082873,6088741,6093279,6097884,6103720,6109728,6116232,6121945,6126659,6130359,6134418,6139543,6144613,6149878,6154745,6158498,6161516,6164868,6169131,6173750,6178220,6182283,6185804,6188490,6191549,6195537,6199582,6203636,6207582,6210579,6212932,6215459,6218794,6222149,6225725,6228635,6230872,6232697,6234587,6237325,6240575,6243835,6246458,6248612,6250238,6252398,6255109,6257963,6260979,6263485,6265352,6266770,6268603,6270693,6272886,6275330,6277374,6278885,6279971,6281322,6283409,6285532,6287671,6289698,6291100,6292168,6293513,6295463,6297453,6299501,6301157,6302476,6303411,6304851,6306662,6308469,6310274,6311879,6313078,6313994,6315108,6316741,6318450,6320291,6321751,6322935,6323808,6324865,6326515,6328460,6330229,6331785,6333113,6334029,6335088,6336569,6338228,6339847,6341152,6342250,6343152,6344178,6345575,6347381,6349375,6351080,6352327,6353218,6354416,6356185,6358044,6359910,6361683,6362888,6363883,6365089,6366831,6368907,6371214,6373157,6374469,6375456,6376894,6378708,6380520,6381887] }],
responsive: {
rules: [{
condition: {
maxWidth: 800
},
chartOptions: {
legend: {
layout: 'horizontal',
align: 'center',
verticalAlign: 'bottom'
}
}
}]
}
});
Highcharts.chart('coronavirus-deaths-log', {
chart: {
type: 'line'
},
title: {
text: 'Total Deaths'
},
subtitle: {
text: '(Logarithmic Scale)'
},
xAxis: {
categories: ["Jan 22, 2020","Jan 23, 2020","Jan 24, 2020","Jan 25, 2020","Jan 26, 2020","Jan 27, 2020","Jan 28, 2020","Jan 29, 2020","Jan 30, 2020","Jan 31, 2020","Feb 01, 2020","Feb 02, 2020","Feb 03, 2020","Feb 04, 2020","Feb 05, 2020","Feb 06, 2020","Feb 07, 2020","Feb 08, 2020","Feb 09, 2020","Feb 10, 2020","Feb 11, 2020","Feb 12, 2020","Feb 13, 2020","Feb 14, 2020","Feb 15, 2020","Feb 16, 2020","Feb 17, 2020","Feb 18, 2020","Feb 19, 2020","Feb 20, 2020","Feb 21, 2020","Feb 22, 2020","Feb 23, 2020","Feb 24, 2020","Feb 25, 2020","Feb 26, 2020","Feb 27, 2020","Feb 28, 2020","Feb 29, 2020","Mar 01, 2020","Mar 02, 2020","Mar 03, 2020","Mar 04, 2020","Mar 05, 2020","Mar 06, 2020","Mar 07, 2020","Mar 08, 2020","Mar 09, 2020","Mar 10, 2020","Mar 11, 2020","Mar 12, 2020","Mar 13, 2020","Mar 14, 2020","Mar 15, 2020","Mar 16, 2020","Mar 17, 2020","Mar 18, 2020","Mar 19, 2020","Mar 20, 2020","Mar 21, 2020","Mar 22, 2020","Mar 23, 2020","Mar 24, 2020","Mar 25, 2020","Mar 26, 2020","Mar 27, 2020","Mar 28, 2020","Mar 29, 2020","Mar 30, 2020","Mar 31, 2020","Apr 01, 2020","Apr 02, 2020","Apr 03, 2020","Apr 04, 2020","Apr 05, 2020","Apr 06, 2020","Apr 07, 2020","Apr 08, 2020","Apr 09, 2020","Apr 10, 2020","Apr 11, 2020","Apr 12, 2020","Apr 13, 2020","Apr 14, 2020","Apr 15, 2020","Apr 16, 2020","Apr 17, 2020","Apr 18, 2020","Apr 19, 2020","Apr 20, 2020","Apr 21, 2020","Apr 22, 2020","Apr 23, 2020","Apr 24, 2020","Apr 25, 2020","Apr 26, 2020","Apr 27, 2020","Apr 28, 2020","Apr 29, 2020","Apr 30, 2020","May 01, 2020","May 02, 2020","May 03, 2020","May 04, 2020","May 05, 2020","May 06, 2020","May 07, 2020","May 08, 2020","May 09, 2020","May 10, 2020","May 11, 2020","May 12, 2020","May 13, 2020","May 14, 2020","May 15, 2020","May 16, 2020","May 17, 2020","May 18, 2020","May 19, 2020","May 20, 2020","May 21, 2020","May 22, 2020","May 23, 2020","May 24, 2020","May 25, 2020","May 26, 2020","May 27, 2020","May 28, 2020","May 29, 2020","May 30, 2020","May 31, 2020","Jun 01, 2020","Jun 02, 2020","Jun 03, 2020","Jun 04, 2020","Jun 05, 2020","Jun 06, 2020","Jun 07, 2020","Jun 08, 2020","Jun 09, 2020","Jun 10, 2020","Jun 11, 2020","Jun 12, 2020","Jun 13, 2020","Jun 14, 2020","Jun 15, 2020","Jun 16, 2020","Jun 17, 2020","Jun 18, 2020","Jun 19, 2020","Jun 20, 2020","Jun 21, 2020","Jun 22, 2020","Jun 23, 2020","Jun 24, 2020","Jun 25, 2020","Jun 26, 2020","Jun 27, 2020","Jun 28, 2020","Jun 29, 2020","Jun 30, 2020","Jul 01, 2020","Jul 02, 2020","Jul 03, 2020","Jul 04, 2020","Jul 05, 2020","Jul 06, 2020","Jul 07, 2020","Jul 08, 2020","Jul 09, 2020","Jul 10, 2020","Jul 11, 2020","Jul 12, 2020","Jul 13, 2020","Jul 14, 2020","Jul 15, 2020","Jul 16, 2020","Jul 17, 2020","Jul 18, 2020","Jul 19, 2020","Jul 20, 2020","Jul 21, 2020","Jul 22, 2020","Jul 23, 2020","Jul 24, 2020","Jul 25, 2020","Jul 26, 2020","Jul 27, 2020","Jul 28, 2020","Jul 29, 2020","Jul 30, 2020","Jul 31, 2020","Aug 01, 2020","Aug 02, 2020","Aug 03, 2020","Aug 04, 2020","Aug 05, 2020","Aug 06, 2020","Aug 07, 2020","Aug 08, 2020","Aug 09, 2020","Aug 10, 2020","Aug 11, 2020","Aug 12, 2020","Aug 13, 2020","Aug 14, 2020","Aug 15, 2020","Aug 16, 2020","Aug 17, 2020","Aug 18, 2020","Aug 19, 2020","Aug 20, 2020","Aug 21, 2020","Aug 22, 2020","Aug 23, 2020","Aug 24, 2020","Aug 25, 2020","Aug 26, 2020","Aug 27, 2020","Aug 28, 2020","Aug 29, 2020","Aug 30, 2020","Aug 31, 2020","Sep 01, 2020","Sep 02, 2020","Sep 03, 2020","Sep 04, 2020","Sep 05, 2020","Sep 06, 2020","Sep 07, 2020","Sep 08, 2020","Sep 09, 2020","Sep 10, 2020","Sep 11, 2020","Sep 12, 2020","Sep 13, 2020","Sep 14, 2020","Sep 15, 2020","Sep 16, 2020","Sep 17, 2020","Sep 18, 2020","Sep 19, 2020","Sep 20, 2020","Sep 21, 2020","Sep 22, 2020","Sep 23, 2020","Sep 24, 2020","Sep 25, 2020","Sep 26, 2020","Sep 27, 2020","Sep 28, 2020","Sep 29, 2020","Sep 30, 2020","Oct 01, 2020","Oct 02, 2020","Oct 03, 2020","Oct 04, 2020","Oct 05, 2020","Oct 06, 2020","Oct 07, 2020","Oct 08, 2020","Oct 09, 2020","Oct 10, 2020","Oct 11, 2020","Oct 12, 2020","Oct 13, 2020","Oct 14, 2020","Oct 15, 2020","Oct 16, 2020","Oct 17, 2020","Oct 18, 2020","Oct 19, 2020","Oct 20, 2020","Oct 21, 2020","Oct 22, 2020","Oct 23, 2020","Oct 24, 2020","Oct 25, 2020","Oct 26, 2020","Oct 27, 2020","Oct 28, 2020","Oct 29, 2020","Oct 30, 2020","Oct 31, 2020","Nov 01, 2020","Nov 02, 2020","Nov 03, 2020","Nov 04, 2020","Nov 05, 2020","Nov 06, 2020","Nov 07, 2020","Nov 08, 2020","Nov 09, 2020","Nov 10, 2020","Nov 11, 2020","Nov 12, 2020","Nov 13, 2020","Nov 14, 2020","Nov 15, 2020","Nov 16, 2020","Nov 17, 2020","Nov 18, 2020","Nov 19, 2020","Nov 20, 2020","Nov 21, 2020","Nov 22, 2020","Nov 23, 2020","Nov 24, 2020","Nov 25, 2020","Nov 26, 2020","Nov 27, 2020","Nov 28, 2020","Nov 29, 2020","Nov 30, 2020","Dec 01, 2020","Dec 02, 2020","Dec 03, 2020","Dec 04, 2020","Dec 05, 2020","Dec 06, 2020","Dec 07, 2020","Dec 08, 2020","Dec 09, 2020","Dec 10, 2020","Dec 11, 2020","Dec 12, 2020","Dec 13, 2020","Dec 14, 2020","Dec 15, 2020","Dec 16, 2020","Dec 17, 2020","Dec 18, 2020","Dec 19, 2020","Dec 20, 2020","Dec 21, 2020","Dec 22, 2020","Dec 23, 2020","Dec 24, 2020","Dec 25, 2020","Dec 26, 2020","Dec 27, 2020","Dec 28, 2020","Dec 29, 2020","Dec 30, 2020","Dec 31, 2020","Jan 01, 2021","Jan 02, 2021","Jan 03, 2021","Jan 04, 2021","Jan 05, 2021","Jan 06, 2021","Jan 07, 2021","Jan 08, 2021","Jan 09, 2021","Jan 10, 2021","Jan 11, 2021","Jan 12, 2021","Jan 13, 2021","Jan 14, 2021","Jan 15, 2021","Jan 16, 2021","Jan 17, 2021","Jan 18, 2021","Jan 19, 2021","Jan 20, 2021","Jan 21, 2021","Jan 22, 2021","Jan 23, 2021","Jan 24, 2021","Jan 25, 2021","Jan 26, 2021","Jan 27, 2021","Jan 28, 2021","Jan 29, 2021","Jan 30, 2021","Jan 31, 2021","Feb 01, 2021","Feb 02, 2021","Feb 03, 2021","Feb 04, 2021","Feb 05, 2021","Feb 06, 2021","Feb 07, 2021","Feb 08, 2021","Feb 09, 2021","Feb 10, 2021","Feb 11, 2021","Feb 12, 2021","Feb 13, 2021","Feb 14, 2021","Feb 15, 2021","Feb 16, 2021","Feb 17, 2021","Feb 18, 2021","Feb 19, 2021","Feb 20, 2021","Feb 21, 2021","Feb 22, 2021","Feb 23, 2021","Feb 24, 2021","Feb 25, 2021","Feb 26, 2021","Feb 27, 2021","Feb 28, 2021","Mar 01, 2021","Mar 02, 2021","Mar 03, 2021","Mar 04, 2021","Mar 05, 2021","Mar 06, 2021","Mar 07, 2021","Mar 08, 2021","Mar 09, 2021","Mar 10, 2021","Mar 11, 2021","Mar 12, 2021","Mar 13, 2021","Mar 14, 2021","Mar 15, 2021","Mar 16, 2021","Mar 17, 2021","Mar 18, 2021","Mar 19, 2021","Mar 20, 2021","Mar 21, 2021","Mar 22, 2021","Mar 23, 2021","Mar 24, 2021","Mar 25, 2021","Mar 26, 2021","Mar 27, 2021","Mar 28, 2021","Mar 29, 2021","Mar 30, 2021","Mar 31, 2021","Apr 01, 2021","Apr 02, 2021","Apr 03, 2021","Apr 04, 2021","Apr 05, 2021","Apr 06, 2021","Apr 07, 2021","Apr 08, 2021","Apr 09, 2021","Apr 10, 2021","Apr 11, 2021","Apr 12, 2021","Apr 13, 2021","Apr 14, 2021","Apr 15, 2021","Apr 16, 2021","Apr 17, 2021","Apr 18, 2021","Apr 19, 2021","Apr 20, 2021","Apr 21, 2021","Apr 22, 2021","Apr 23, 2021","Apr 24, 2021","Apr 25, 2021","Apr 26, 2021","Apr 27, 2021","Apr 28, 2021","Apr 29, 2021","Apr 30, 2021","May 01, 2021","May 02, 2021","May 03, 2021","May 04, 2021","May 05, 2021","May 06, 2021","May 07, 2021","May 08, 2021","May 09, 2021","May 10, 2021","May 11, 2021","May 12, 2021","May 13, 2021","May 14, 2021","May 15, 2021","May 16, 2021","May 17, 2021","May 18, 2021","May 19, 2021","May 20, 2021","May 21, 2021","May 22, 2021","May 23, 2021","May 24, 2021","May 25, 2021","May 26, 2021","May 27, 2021","May 28, 2021","May 29, 2021","May 30, 2021","May 31, 2021","Jun 01, 2021","Jun 02, 2021","Jun 03, 2021","Jun 04, 2021","Jun 05, 2021","Jun 06, 2021","Jun 07, 2021","Jun 08, 2021","Jun 09, 2021","Jun 10, 2021","Jun 11, 2021","Jun 12, 2021","Jun 13, 2021","Jun 14, 2021","Jun 15, 2021","Jun 16, 2021","Jun 17, 2021","Jun 18, 2021","Jun 19, 2021","Jun 20, 2021","Jun 21, 2021","Jun 22, 2021","Jun 23, 2021","Jun 24, 2021","Jun 25, 2021","Jun 26, 2021","Jun 27, 2021","Jun 28, 2021","Jun 29, 2021","Jun 30, 2021","Jul 01, 2021","Jul 02, 2021","Jul 03, 2021","Jul 04, 2021","Jul 05, 2021","Jul 06, 2021","Jul 07, 2021","Jul 08, 2021","Jul 09, 2021","Jul 10, 2021","Jul 11, 2021","Jul 12, 2021","Jul 13, 2021","Jul 14, 2021","Jul 15, 2021","Jul 16, 2021","Jul 17, 2021","Jul 18, 2021","Jul 19, 2021","Jul 20, 2021","Jul 21, 2021","Jul 22, 2021","Jul 23, 2021","Jul 24, 2021","Jul 25, 2021","Jul 26, 2021","Jul 27, 2021","Jul 28, 2021","Jul 29, 2021","Jul 30, 2021","Jul 31, 2021","Aug 01, 2021","Aug 02, 2021","Aug 03, 2021","Aug 04, 2021","Aug 05, 2021","Aug 06, 2021","Aug 07, 2021","Aug 08, 2021","Aug 09, 2021","Aug 10, 2021","Aug 11, 2021","Aug 12, 2021","Aug 13, 2021","Aug 14, 2021","Aug 15, 2021","Aug 16, 2021","Aug 17, 2021","Aug 18, 2021","Aug 19, 2021","Aug 20, 2021","Aug 21, 2021","Aug 22, 2021","Aug 23, 2021","Aug 24, 2021","Aug 25, 2021","Aug 26, 2021","Aug 27, 2021","Aug 28, 2021","Aug 29, 2021","Aug 30, 2021","Aug 31, 2021","Sep 01, 2021","Sep 02, 2021","Sep 03, 2021","Sep 04, 2021","Sep 05, 2021","Sep 06, 2021","Sep 07, 2021","Sep 08, 2021","Sep 09, 2021","Sep 10, 2021","Sep 11, 2021","Sep 12, 2021","Sep 13, 2021","Sep 14, 2021","Sep 15, 2021","Sep 16, 2021","Sep 17, 2021","Sep 18, 2021","Sep 19, 2021","Sep 20, 2021","Sep 21, 2021","Sep 22, 2021","Sep 23, 2021","Sep 24, 2021","Sep 25, 2021","Sep 26, 2021","Sep 27, 2021","Sep 28, 2021","Sep 29, 2021","Sep 30, 2021","Oct 01, 2021","Oct 02, 2021","Oct 03, 2021","Oct 04, 2021","Oct 05, 2021","Oct 06, 2021","Oct 07, 2021","Oct 08, 2021","Oct 09, 2021","Oct 10, 2021","Oct 11, 2021","Oct 12, 2021","Oct 13, 2021","Oct 14, 2021","Oct 15, 2021","Oct 16, 2021","Oct 17, 2021","Oct 18, 2021","Oct 19, 2021","Oct 20, 2021","Oct 21, 2021","Oct 22, 2021","Oct 23, 2021","Oct 24, 2021","Oct 25, 2021","Oct 26, 2021","Oct 27, 2021","Oct 28, 2021","Oct 29, 2021","Oct 30, 2021","Oct 31, 2021","Nov 01, 2021","Nov 02, 2021","Nov 03, 2021","Nov 04, 2021","Nov 05, 2021","Nov 06, 2021","Nov 07, 2021","Nov 08, 2021","Nov 09, 2021","Nov 10, 2021","Nov 11, 2021","Nov 12, 2021","Nov 13, 2021","Nov 14, 2021","Nov 15, 2021","Nov 16, 2021","Nov 17, 2021","Nov 18, 2021","Nov 19, 2021","Nov 20, 2021","Nov 21, 2021","Nov 22, 2021","Nov 23, 2021","Nov 24, 2021","Nov 25, 2021","Nov 26, 2021","Nov 27, 2021","Nov 28, 2021","Nov 29, 2021","Nov 30, 2021","Dec 01, 2021","Dec 02, 2021","Dec 03, 2021","Dec 04, 2021","Dec 05, 2021","Dec 06, 2021","Dec 07, 2021","Dec 08, 2021","Dec 09, 2021","Dec 10, 2021","Dec 11, 2021","Dec 12, 2021","Dec 13, 2021","Dec 14, 2021","Dec 15, 2021","Dec 16, 2021","Dec 17, 2021","Dec 18, 2021","Dec 19, 2021","Dec 20, 2021","Dec 21, 2021","Dec 22, 2021","Dec 23, 2021","Dec 24, 2021","Dec 25, 2021","Dec 26, 2021","Dec 27, 2021","Dec 28, 2021","Dec 29, 2021","Dec 30, 2021","Dec 31, 2021","Jan 01, 2022","Jan 02, 2022","Jan 03, 2022","Jan 04, 2022","Jan 05, 2022","Jan 06, 2022","Jan 07, 2022","Jan 08, 2022","Jan 09, 2022","Jan 10, 2022","Jan 11, 2022","Jan 12, 2022","Jan 13, 2022","Jan 14, 2022","Jan 15, 2022","Jan 16, 2022","Jan 17, 2022","Jan 18, 2022","Jan 19, 2022","Jan 20, 2022","Jan 21, 2022","Jan 22, 2022","Jan 23, 2022","Jan 24, 2022","Jan 25, 2022","Jan 26, 2022","Jan 27, 2022","Jan 28, 2022","Jan 29, 2022","Jan 30, 2022","Jan 31, 2022","Feb 01, 2022","Feb 02, 2022","Feb 03, 2022","Feb 04, 2022","Feb 05, 2022","Feb 06, 2022","Feb 07, 2022","Feb 08, 2022","Feb 09, 2022","Feb 10, 2022","Feb 11, 2022","Feb 12, 2022","Feb 13, 2022","Feb 14, 2022","Feb 15, 2022","Feb 16, 2022","Feb 17, 2022","Feb 18, 2022","Feb 19, 2022","Feb 20, 2022","Feb 21, 2022","Feb 22, 2022","Feb 23, 2022","Feb 24, 2022","Feb 25, 2022","Feb 26, 2022","Feb 27, 2022","Feb 28, 2022","Mar 01, 2022","Mar 02, 2022","Mar 03, 2022","Mar 04, 2022","Mar 05, 2022","Mar 06, 2022","Mar 07, 2022","Mar 08, 2022","Mar 09, 2022","Mar 10, 2022","Mar 11, 2022","Mar 12, 2022","Mar 13, 2022","Mar 14, 2022","Mar 15, 2022","Mar 16, 2022","Mar 17, 2022","Mar 18, 2022","Mar 19, 2022","Mar 20, 2022","Mar 21, 2022","Mar 22, 2022","Mar 23, 2022","Mar 24, 2022","Mar 25, 2022","Mar 26, 2022","Mar 27, 2022","Mar 28, 2022","Mar 29, 2022","Mar 30, 2022","Mar 31, 2022","Apr 01, 2022","Apr 02, 2022","Apr 03, 2022","Apr 04, 2022","Apr 05, 2022","Apr 06, 2022","Apr 07, 2022","Apr 08, 2022","Apr 09, 2022","Apr 10, 2022","Apr 11, 2022","Apr 12, 2022","Apr 13, 2022","Apr 14, 2022","Apr 15, 2022","Apr 16, 2022","Apr 17, 2022","Apr 18, 2022","Apr 19, 2022","Apr 20, 2022","Apr 21, 2022","Apr 22, 2022","Apr 23, 2022","Apr 24, 2022","Apr 25, 2022","Apr 26, 2022","Apr 27, 2022","Apr 28, 2022","Apr 29, 2022","Apr 30, 2022","May 01, 2022","May 02, 2022","May 03, 2022","May 04, 2022","May 05, 2022","May 06, 2022","May 07, 2022","May 08, 2022","May 09, 2022","May 10, 2022","May 11, 2022","May 12, 2022","May 13, 2022","May 14, 2022","May 15, 2022","May 16, 2022","May 17, 2022","May 18, 2022","May 19, 2022","May 20, 2022","May 21, 2022","May 22, 2022","May 23, 2022","May 24, 2022","May 25, 2022","May 26, 2022","May 27, 2022","May 28, 2022","May 29, 2022","May 30, 2022","May 31, 2022","Jun 01, 2022","Jun 02, 2022","Jun 03, 2022","Jun 04, 2022","Jun 05, 2022","Jun 06, 2022","Jun 07, 2022","Jun 08, 2022","Jun 09, 2022","Jun 10, 2022","Jun 11, 2022","Jun 12, 2022","Jun 13, 2022","Jun 14, 2022","Jun 15, 2022","Jun 16, 2022","Jun 17, 2022","Jun 18, 2022","Jun 19, 2022","Jun 20, 2022","Jun 21, 2022","Jun 22, 2022","Jun 23, 2022","Jun 24, 2022","Jun 25, 2022","Jun 26, 2022","Jun 27, 2022","Jun 28, 2022","Jun 29, 2022","Jun 30, 2022","Jul 01, 2022","Jul 02, 2022","Jul 03, 2022","Jul 04, 2022","Jul 05, 2022","Jul 06, 2022","Jul 07, 2022","Jul 08, 2022","Jul 09, 2022","Jul 10, 2022","Jul 11, 2022","Jul 12, 2022","Jul 13, 2022","Jul 14, 2022"] },
yAxis: {
title: {
text: 'Total Coronavirus Deaths'
},
type: 'logarithmic'
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'middle'
},
credits: {
enabled: false
},
series: [{
name: 'Deaths',
color: '#FF9900',
lineWidth: 5,
data: [17,26,45,60,84,110,137,176,220,266,311,369,433,500,573,646,732,826,924,1032,1129,1275,1397,1540,1682,1788,1886,2022,2139,2260,2373,2473,2631,2712,2776,2812,2870,2935,2989,3062,3129,3214,3299,3399,3506,3611,3838,4037,4314,4647,5030,5494,5917,6629,7311,8188,9212,10305,11736,13445,15265,17347,19954,22596,25767,29372,33268,36952,41421,46288,51685,58107,64386,70791,76370,82667,90146,97102,104986,112236,118853,125105,131480,138994,147470,154536,163364,170048,175808,182292,189644,196660,203933,210401,217051,221968,227748,234876,241935,248224,254750,261116,265961,271642,277842,285103,291355,297417,303011,308397,313266,319475,325145,331052,336802,341777,346205,350806,356604,361971,367713,373144,377976,382010,386621,391462,396934,402045,407388,412255,416549,420737,426241,431784,437382,442539,447471,452173,456596,462069,467873,473498,478910,484055,488527,493175,500588,506513,512462,518315,523406,527951,532087,537892,543429,548991,554393,559614,563947,568756,574524,579977,585681,591415,596698,601108,605753,611974,617897,623990,629979,635659,640779,645640,652009,658349,665014,671335,677131,682289,687450,694179,701781,708686,715553,721929,727078,732454,738939,746176,753179,759967,766186,771288,776774,783656,791078,798087,805055,811104,816587,821967,828715,835658,842664,849111,855188,860385,865629,872507,879359,886018,892635,898701,903799,908902,915576,922181,928708,934954,940663,945425,950344,956793,963290,969467,975606,980936,985586,990196,995265,1001360,1007273,1013202,1018490,1022890,1027685,1034016,1040010,1045729,1051531,1056719,1061050,1065321,1071066,1076897,1082399,1087921,1093182,1097363,1101406,1107179,1112852,1118447,1124181,1129151,1133518,1138296,1144186,1150179,1156774,1162758,1168082,1172826,1177200,1182457,1188644,1194763,1201186,1207043,1211537,1216598,1223120,1230042,1236687,1243400,1249367,1254311,1260151,1267399,1274519,1281745,1289385,1296328,1302393,1309162,1317777,1327028,1336404,1345924,1354055,1361074,1368940,1378678,1388658,1398414,1408734,1418459,1426443,1435138,1445998,1457892,1469279,1480639,1490445,1499112,1508537,1520850,1532962,1544444,1555788,1565995,1574706,1584542,1597008,1609351,1622101,1634562,1645596,1654498,1664300,1676715,1689190,1702131,1714839,1726160,1735261,1745502,1758932,1772614,1785985,1799110,1810674,1820081,1831267,1845046,1858614,1870856,1880578,1889482,1898700,1909722,1924698,1939818,1953683,1964439,1974193,1983312,1994439,2009178,2023837,2038719,2053827,2066803,2077356,2088935,2105389,2121545,2137354,2152826,2166602,2177513,2189083,2204944,2221695,2238513,2254381,2268857,2280018,2291927,2308314,2324991,2341455,2356578,2369671,2379858,2391164,2406035,2420748,2434871,2448685,2460052,2468637,2478565,2491628,2504909,2517942,2529880,2540214,2547909,2555731,2565900,2576603,2587882,2598935,2607752,2614838,2622354,2632881,2643195,2653664,2663393,2671816,2678514,2685957,2695705,2706224,2716197,2725864,2733939,2740179,2747429,2756477,2766401,2776139,2785636,2794031,2800373,2807744,2817937,2828295,2838502,2848977,2857597,2864001,2871773,2882596,2892839,2903635,2915213,2925355,2932695,2940855,2952177,2964378,2976220,2986918,2996146,3003890,3012037,3024517,3037744,3051794,3065362,3076866,3086003,3095701,3108914,3122686,3137020,3150036,3162165,3172395,3183224,3197930,3212255,3226145,3240926,3255137,3265806,3277500,3293158,3308868,3324799,3339563,3353628,3364659,3376458,3391313,3406599,3421347,3436010,3449737,3460948,3472738,3487364,3502098,3516750,3531036,3544555,3555379,3567098,3582081,3595874,3610073,3623835,3635679,3646444,3656237,3669212,3682067,3694148,3706326,3717490,3726257,3735451,3746700,3758167,3769383,3779994,3789521,3797479,3805563,3815922,3826238,3836576,3846136,3854926,3862008,3868931,3878260,3887851,3896721,3905912,3914804,3921783,3928376,3937360,3946535,3955287,3964154,3971982,3978470,3984972,3992919,4001814,4010219,4018874,4026341,4032790,4039258,4047573,4056075,4065052,4073640,4081414,4088125,4094768,4102971,4111745,4120342,4129115,4136604,4143849,4150829,4159391,4168110,4177175,4186016,4194606,4201870,4209601,4219293,4229699,4240409,4249839,4259237,4267427,4276112,4286328,4296648,4307220,4317557,4327276,4336215,4344775,4355752,4366484,4377517,4388161,4397687,4406749,4415204,4425725,4436916,4448470,4459291,4469477,4478508,4486848,4497895,4509760,4521220,4531882,4541786,4550370,4558979,4569309,4579802,4591166,4601749,4610814,4618710,4626628,4635975,4646129,4656377,4666193,4675251,4682811,4690382,4699738,4710511,4720371,4729393,4737461,4744557,4751156,4759881,4769603,4778826,4787769,4794969,4801233,4807460,4816051,4825213,4833490,4841360,4848146,4853924,4859574,4867392,4875909,4883970,4891978,4898559,4903914,4909232,4916237,4923988,4931815,4939144,4945488,4950727,4956200,4963543,4970951,4978592,4986641,4993177,4998849,5004794,5012589,5021346,5029668,5037587,5044387,5049834,5055818,5063033,5070981,5078722,5086595,5093620,5099087,5105266,5113114,5121489,5129084,5137062,5143758,5149173,5155141,5162857,5171403,5179751,5187650,5194214,5199460,5205752,5214164,5222486,5230251,5237680,5244352,5249586,5255892,5263986,5272531,5280518,5288496,5295172,5300233,5306579,5314746,5322944,5331306,5339524,5346122,5351257,5357327,5365165,5373460,5381093,5388716,5394887,5399692,5405778,5413388,5421290,5428600,5435108,5440129,5444369,5449898,5457160,5464844,5472201,5478785,5483803,5487874,5493082,5500721,5508284,5516005,5523101,5529231,5534052,5540151,5548780,5557477,5565895,5574174,5581290,5587113,5593824,5602579,5612126,5622059,5631520,5639158,5645767,5653490,5664090,5675084,5685980,5697103,5706389,5713990,5723110,5735428,5747909,5760319,5772473,5781976,5790055,5799417,5812497,5825005,5837111,5849085,5858782,5866127,5874626,5885450,5897364,5909651,5920684,5930313,5937143,5944465,5953846,5964661,5975328,5984468,5992233,5998115,6004676,6012552,6020587,6028791,6037430,6044174,6049332,6054677,6061936,6069118,6076402,6082873,6088741,6093279,6097884,6103720,6109728,6116232,6121945,6126659,6130359,6134418,6139543,6144613,6149878,6154745,6158498,6161516,6164868,6169131,6173750,6178220,6182283,6185804,6188490,6191549,6195537,6199582,6203636,6207582,6210579,6212932,6215459,6218794,6222149,6225725,6228635,6230872,6232697,6234587,6237325,6240575,6243835,6246458,6248612,6250238,6252398,6255109,6257963,6260979,6263485,6265352,6266770,6268603,6270693,6272886,6275330,6277374,6278885,6279971,6281322,6283409,6285532,6287671,6289698,6291100,6292168,6293513,6295463,6297453,6299501,6301157,6302476,6303411,6304851,6306662,6308469,6310274,6311879,6313078,6313994,6315108,6316741,6318450,6320291,6321751,6322935,6323808,6324865,6326515,6328460,6330229,6331785,6333113,6334029,6335088,6336569,6338228,6339847,6341152,6342250,6343152,6344178,6345575,6347381,6349375,6351080,6352327,6353218,6354416,6356185,6358044,6359910,6361683,6362888,6363883,6365089,6366831,6368907,6371214,6373157,6374469,6375456,6376894,6378708,6380520,6381887] }],
responsive: {
rules: [{
condition: {
maxWidth: 800
},
chartOptions: {
legend: {
layout: 'horizontal',
align: 'center',
verticalAlign: 'bottom'
}
}
}]
}
});
Highcharts.chart('coronavirus-deaths-daily', {
chart: {
type: 'column'
},
title: {
text: 'Daily Deaths'
},
subtitle: {
text: 'Deaths per Day<br>Data as of 0:00 GMT+0'
},
xAxis: {
categories: ["Jan 22, 2020","Jan 23, 2020","Jan 24, 2020","Jan 25, 2020","Jan 26, 2020","Jan 27, 2020","Jan 28, 2020","Jan 29, 2020","Jan 30, 2020","Jan 31, 2020","Feb 01, 2020","Feb 02, 2020","Feb 03, 2020","Feb 04, 2020","Feb 05, 2020","Feb 06, 2020","Feb 07, 2020","Feb 08, 2020","Feb 09, 2020","Feb 10, 2020","Feb 11, 2020","Feb 12, 2020","Feb 13, 2020","Feb 14, 2020","Feb 15, 2020","Feb 16, 2020","Feb 17, 2020","Feb 18, 2020","Feb 19, 2020","Feb 20, 2020","Feb 21, 2020","Feb 22, 2020","Feb 23, 2020","Feb 24, 2020","Feb 25, 2020","Feb 26, 2020","Feb 27, 2020","Feb 28, 2020","Feb 29, 2020","Mar 01, 2020","Mar 02, 2020","Mar 03, 2020","Mar 04, 2020","Mar 05, 2020","Mar 06, 2020","Mar 07, 2020","Mar 08, 2020","Mar 09, 2020","Mar 10, 2020","Mar 11, 2020","Mar 12, 2020","Mar 13, 2020","Mar 14, 2020","Mar 15, 2020","Mar 16, 2020","Mar 17, 2020","Mar 18, 2020","Mar 19, 2020","Mar 20, 2020","Mar 21, 2020","Mar 22, 2020","Mar 23, 2020","Mar 24, 2020","Mar 25, 2020","Mar 26, 2020","Mar 27, 2020","Mar 28, 2020","Mar 29, 2020","Mar 30, 2020","Mar 31, 2020","Apr 01, 2020","Apr 02, 2020","Apr 03, 2020","Apr 04, 2020","Apr 05, 2020","Apr 06, 2020","Apr 07, 2020","Apr 08, 2020","Apr 09, 2020","Apr 10, 2020","Apr 11, 2020","Apr 12, 2020","Apr 13, 2020","Apr 14, 2020","Apr 15, 2020","Apr 16, 2020","Apr 17, 2020","Apr 18, 2020","Apr 19, 2020","Apr 20, 2020","Apr 21, 2020","Apr 22, 2020","Apr 23, 2020","Apr 24, 2020","Apr 25, 2020","Apr 26, 2020","Apr 27, 2020","Apr 28, 2020","Apr 29, 2020","Apr 30, 2020","May 01, 2020","May 02, 2020","May 03, 2020","May 04, 2020","May 05, 2020","May 06, 2020","May 07, 2020","May 08, 2020","May 09, 2020","May 10, 2020","May 11, 2020","May 12, 2020","May 13, 2020","May 14, 2020","May 15, 2020","May 16, 2020","May 17, 2020","May 18, 2020","May 19, 2020","May 20, 2020","May 21, 2020","May 22, 2020","May 23, 2020","May 24, 2020","May 25, 2020","May 26, 2020","May 27, 2020","May 28, 2020","May 29, 2020","May 30, 2020","May 31, 2020","Jun 01, 2020","Jun 02, 2020","Jun 03, 2020","Jun 04, 2020","Jun 05, 2020","Jun 06, 2020","Jun 07, 2020","Jun 08, 2020","Jun 09, 2020","Jun 10, 2020","Jun 11, 2020","Jun 12, 2020","Jun 13, 2020","Jun 14, 2020","Jun 15, 2020","Jun 16, 2020","Jun 17, 2020","Jun 18, 2020","Jun 19, 2020","Jun 20, 2020","Jun 21, 2020","Jun 22, 2020","Jun 23, 2020","Jun 24, 2020","Jun 25, 2020","Jun 26, 2020","Jun 27, 2020","Jun 28, 2020","Jun 29, 2020","Jun 30, 2020","Jul 01, 2020","Jul 02, 2020","Jul 03, 2020","Jul 04, 2020","Jul 05, 2020","Jul 06, 2020","Jul 07, 2020","Jul 08, 2020","Jul 09, 2020","Jul 10, 2020","Jul 11, 2020","Jul 12, 2020","Jul 13, 2020","Jul 14, 2020","Jul 15, 2020","Jul 16, 2020","Jul 17, 2020","Jul 18, 2020","Jul 19, 2020","Jul 20, 2020","Jul 21, 2020","Jul 22, 2020","Jul 23, 2020","Jul 24, 2020","Jul 25, 2020","Jul 26, 2020","Jul 27, 2020","Jul 28, 2020","Jul 29, 2020","Jul 30, 2020","Jul 31, 2020","Aug 01, 2020","Aug 02, 2020","Aug 03, 2020","Aug 04, 2020","Aug 05, 2020","Aug 06, 2020","Aug 07, 2020","Aug 08, 2020","Aug 09, 2020","Aug 10, 2020","Aug 11, 2020","Aug 12, 2020","Aug 13, 2020","Aug 14, 2020","Aug 15, 2020","Aug 16, 2020","Aug 17, 2020","Aug 18, 2020","Aug 19, 2020","Aug 20, 2020","Aug 21, 2020","Aug 22, 2020","Aug 23, 2020","Aug 24, 2020","Aug 25, 2020","Aug 26, 2020","Aug 27, 2020","Aug 28, 2020","Aug 29, 2020","Aug 30, 2020","Aug 31, 2020","Sep 01, 2020","Sep 02, 2020","Sep 03, 2020","Sep 04, 2020","Sep 05, 2020","Sep 06, 2020","Sep 07, 2020","Sep 08, 2020","Sep 09, 2020","Sep 10, 2020","Sep 11, 2020","Sep 12, 2020","Sep 13, 2020","Sep 14, 2020","Sep 15, 2020","Sep 16, 2020","Sep 17, 2020","Sep 18, 2020","Sep 19, 2020","Sep 20, 2020","Sep 21, 2020","Sep 22, 2020","Sep 23, 2020","Sep 24, 2020","Sep 25, 2020","Sep 26, 2020","Sep 27, 2020","Sep 28, 2020","Sep 29, 2020","Sep 30, 2020","Oct 01, 2020","Oct 02, 2020","Oct 03, 2020","Oct 04, 2020","Oct 05, 2020","Oct 06, 2020","Oct 07, 2020","Oct 08, 2020","Oct 09, 2020","Oct 10, 2020","Oct 11, 2020","Oct 12, 2020","Oct 13, 2020","Oct 14, 2020","Oct 15, 2020","Oct 16, 2020","Oct 17, 2020","Oct 18, 2020","Oct 19, 2020","Oct 20, 2020","Oct 21, 2020","Oct 22, 2020","Oct 23, 2020","Oct 24, 2020","Oct 25, 2020","Oct 26, 2020","Oct 27, 2020","Oct 28, 2020","Oct 29, 2020","Oct 30, 2020","Oct 31, 2020","Nov 01, 2020","Nov 02, 2020","Nov 03, 2020","Nov 04, 2020","Nov 05, 2020","Nov 06, 2020","Nov 07, 2020","Nov 08, 2020","Nov 09, 2020","Nov 10, 2020","Nov 11, 2020","Nov 12, 2020","Nov 13, 2020","Nov 14, 2020","Nov 15, 2020","Nov 16, 2020","Nov 17, 2020","Nov 18, 2020","Nov 19, 2020","Nov 20, 2020","Nov 21, 2020","Nov 22, 2020","Nov 23, 2020","Nov 24, 2020","Nov 25, 2020","Nov 26, 2020","Nov 27, 2020","Nov 28, 2020","Nov 29, 2020","Nov 30, 2020","Dec 01, 2020","Dec 02, 2020","Dec 03, 2020","Dec 04, 2020","Dec 05, 2020","Dec 06, 2020","Dec 07, 2020","Dec 08, 2020","Dec 09, 2020","Dec 10, 2020","Dec 11, 2020","Dec 12, 2020","Dec 13, 2020","Dec 14, 2020","Dec 15, 2020","Dec 16, 2020","Dec 17, 2020","Dec 18, 2020","Dec 19, 2020","Dec 20, 2020","Dec 21, 2020","Dec 22, 2020","Dec 23, 2020","Dec 24, 2020","Dec 25, 2020","Dec 26, 2020","Dec 27, 2020","Dec 28, 2020","Dec 29, 2020","Dec 30, 2020","Dec 31, 2020","Jan 01, 2021","Jan 02, 2021","Jan 03, 2021","Jan 04, 2021","Jan 05, 2021","Jan 06, 2021","Jan 07, 2021","Jan 08, 2021","Jan 09, 2021","Jan 10, 2021","Jan 11, 2021","Jan 12, 2021","Jan 13, 2021","Jan 14, 2021","Jan 15, 2021","Jan 16, 2021","Jan 17, 2021","Jan 18, 2021","Jan 19, 2021","Jan 20, 2021","Jan 21, 2021","Jan 22, 2021","Jan 23, 2021","Jan 24, 2021","Jan 25, 2021","Jan 26, 2021","Jan 27, 2021","Jan 28, 2021","Jan 29, 2021","Jan 30, 2021","Jan 31, 2021","Feb 01, 2021","Feb 02, 2021","Feb 03, 2021","Feb 04, 2021","Feb 05, 2021","Feb 06, 2021","Feb 07, 2021","Feb 08, 2021","Feb 09, 2021","Feb 10, 2021","Feb 11, 2021","Feb 12, 2021","Feb 13, 2021","Feb 14, 2021","Feb 15, 2021","Feb 16, 2021","Feb 17, 2021","Feb 18, 2021","Feb 19, 2021","Feb 20, 2021","Feb 21, 2021","Feb 22, 2021","Feb 23, 2021","Feb 24, 2021","Feb 25, 2021","Feb 26, 2021","Feb 27, 2021","Feb 28, 2021","Mar 01, 2021","Mar 02, 2021","Mar 03, 2021","Mar 04, 2021","Mar 05, 2021","Mar 06, 2021","Mar 07, 2021","Mar 08, 2021","Mar 09, 2021","Mar 10, 2021","Mar 11, 2021","Mar 12, 2021","Mar 13, 2021","Mar 14, 2021","Mar 15, 2021","Mar 16, 2021","Mar 17, 2021","Mar 18, 2021","Mar 19, 2021","Mar 20, 2021","Mar 21, 2021","Mar 22, 2021","Mar 23, 2021","Mar 24, 2021","Mar 25, 2021","Mar 26, 2021","Mar 27, 2021","Mar 28, 2021","Mar 29, 2021","Mar 30, 2021","Mar 31, 2021","Apr 01, 2021","Apr 02, 2021","Apr 03, 2021","Apr 04, 2021","Apr 05, 2021","Apr 06, 2021","Apr 07, 2021","Apr 08, 2021","Apr 09, 2021","Apr 10, 2021","Apr 11, 2021","Apr 12, 2021","Apr 13, 2021","Apr 14, 2021","Apr 15, 2021","Apr 16, 2021","Apr 17, 2021","Apr 18, 2021","Apr 19, 2021","Apr 20, 2021","Apr 21, 2021","Apr 22, 2021","Apr 23, 2021","Apr 24, 2021","Apr 25, 2021","Apr 26, 2021","Apr 27, 2021","Apr 28, 2021","Apr 29, 2021","Apr 30, 2021","May 01, 2021","May 02, 2021","May 03, 2021","May 04, 2021","May 05, 2021","May 06, 2021","May 07, 2021","May 08, 2021","May 09, 2021","May 10, 2021","May 11, 2021","May 12, 2021","May 13, 2021","May 14, 2021","May 15, 2021","May 16, 2021","May 17, 2021","May 18, 2021","May 19, 2021","May 20, 2021","May 21, 2021","May 22, 2021","May 23, 2021","May 24, 2021","May 25, 2021","May 26, 2021","May 27, 2021","May 28, 2021","May 29, 2021","May 30, 2021","May 31, 2021","Jun 01, 2021","Jun 02, 2021","Jun 03, 2021","Jun 04, 2021","Jun 05, 2021","Jun 06, 2021","Jun 07, 2021","Jun 08, 2021","Jun 09, 2021","Jun 10, 2021","Jun 11, 2021","Jun 12, 2021","Jun 13, 2021","Jun 14, 2021","Jun 15, 2021","Jun 16, 2021","Jun 17, 2021","Jun 18, 2021","Jun 19, 2021","Jun 20, 2021","Jun 21, 2021","Jun 22, 2021","Jun 23, 2021","Jun 24, 2021","Jun 25, 2021","Jun 26, 2021","Jun 27, 2021","Jun 28, 2021","Jun 29, 2021","Jun 30, 2021","Jul 01, 2021","Jul 02, 2021","Jul 03, 2021","Jul 04, 2021","Jul 05, 2021","Jul 06, 2021","Jul 07, 2021","Jul 08, 2021","Jul 09, 2021","Jul 10, 2021","Jul 11, 2021","Jul 12, 2021","Jul 13, 2021","Jul 14, 2021","Jul 15, 2021","Jul 16, 2021","Jul 17, 2021","Jul 18, 2021","Jul 19, 2021","Jul 20, 2021","Jul 21, 2021","Jul 22, 2021","Jul 23, 2021","Jul 24, 2021","Jul 25, 2021","Jul 26, 2021","Jul 27, 2021","Jul 28, 2021","Jul 29, 2021","Jul 30, 2021","Jul 31, 2021","Aug 01, 2021","Aug 02, 2021","Aug 03, 2021","Aug 04, 2021","Aug 05, 2021","Aug 06, 2021","Aug 07, 2021","Aug 08, 2021","Aug 09, 2021","Aug 10, 2021","Aug 11, 2021","Aug 12, 2021","Aug 13, 2021","Aug 14, 2021","Aug 15, 2021","Aug 16, 2021","Aug 17, 2021","Aug 18, 2021","Aug 19, 2021","Aug 20, 2021","Aug 21, 2021","Aug 22, 2021","Aug 23, 2021","Aug 24, 2021","Aug 25, 2021","Aug 26, 2021","Aug 27, 2021","Aug 28, 2021","Aug 29, 2021","Aug 30, 2021","Aug 31, 2021","Sep 01, 2021","Sep 02, 2021","Sep 03, 2021","Sep 04, 2021","Sep 05, 2021","Sep 06, 2021","Sep 07, 2021","Sep 08, 2021","Sep 09, 2021","Sep 10, 2021","Sep 11, 2021","Sep 12, 2021","Sep 13, 2021","Sep 14, 2021","Sep 15, 2021","Sep 16, 2021","Sep 17, 2021","Sep 18, 2021","Sep 19, 2021","Sep 20, 2021","Sep 21, 2021","Sep 22, 2021","Sep 23, 2021","Sep 24, 2021","Sep 25, 2021","Sep 26, 2021","Sep 27, 2021","Sep 28, 2021","Sep 29, 2021","Sep 30, 2021","Oct 01, 2021","Oct 02, 2021","Oct 03, 2021","Oct 04, 2021","Oct 05, 2021","Oct 06, 2021","Oct 07, 2021","Oct 08, 2021","Oct 09, 2021","Oct 10, 2021","Oct 11, 2021","Oct 12, 2021","Oct 13, 2021","Oct 14, 2021","Oct 15, 2021","Oct 16, 2021","Oct 17, 2021","Oct 18, 2021","Oct 19, 2021","Oct 20, 2021","Oct 21, 2021","Oct 22, 2021","Oct 23, 2021","Oct 24, 2021","Oct 25, 2021","Oct 26, 2021","Oct 27, 2021","Oct 28, 2021","Oct 29, 2021","Oct 30, 2021","Oct 31, 2021","Nov 01, 2021","Nov 02, 2021","Nov 03, 2021","Nov 04, 2021","Nov 05, 2021","Nov 06, 2021","Nov 07, 2021","Nov 08, 2021","Nov 09, 2021","Nov 10, 2021","Nov 11, 2021","Nov 12, 2021","Nov 13, 2021","Nov 14, 2021","Nov 15, 2021","Nov 16, 2021","Nov 17, 2021","Nov 18, 2021","Nov 19, 2021","Nov 20, 2021","Nov 21, 2021","Nov 22, 2021","Nov 23, 2021","Nov 24, 2021","Nov 25, 2021","Nov 26, 2021","Nov 27, 2021","Nov 28, 2021","Nov 29, 2021","Nov 30, 2021","Dec 01, 2021","Dec 02, 2021","Dec 03, 2021","Dec 04, 2021","Dec 05, 2021","Dec 06, 2021","Dec 07, 2021","Dec 08, 2021","Dec 09, 2021","Dec 10, 2021","Dec 11, 2021","Dec 12, 2021","Dec 13, 2021","Dec 14, 2021","Dec 15, 2021","Dec 16, 2021","Dec 17, 2021","Dec 18, 2021","Dec 19, 2021","Dec 20, 2021","Dec 21, 2021","Dec 22, 2021","Dec 23, 2021","Dec 24, 2021","Dec 25, 2021","Dec 26, 2021","Dec 27, 2021","Dec 28, 2021","Dec 29, 2021","Dec 30, 2021","Dec 31, 2021","Jan 01, 2022","Jan 02, 2022","Jan 03, 2022","Jan 04, 2022","Jan 05, 2022","Jan 06, 2022","Jan 07, 2022","Jan 08, 2022","Jan 09, 2022","Jan 10, 2022","Jan 11, 2022","Jan 12, 2022","Jan 13, 2022","Jan 14, 2022","Jan 15, 2022","Jan 16, 2022","Jan 17, 2022","Jan 18, 2022","Jan 19, 2022","Jan 20, 2022","Jan 21, 2022","Jan 22, 2022","Jan 23, 2022","Jan 24, 2022","Jan 25, 2022","Jan 26, 2022","Jan 27, 2022","Jan 28, 2022","Jan 29, 2022","Jan 30, 2022","Jan 31, 2022","Feb 01, 2022","Feb 02, 2022","Feb 03, 2022","Feb 04, 2022","Feb 05, 2022","Feb 06, 2022","Feb 07, 2022","Feb 08, 2022","Feb 09, 2022","Feb 10, 2022","Feb 11, 2022","Feb 12, 2022","Feb 13, 2022","Feb 14, 2022","Feb 15, 2022","Feb 16, 2022","Feb 17, 2022","Feb 18, 2022","Feb 19, 2022","Feb 20, 2022","Feb 21, 2022","Feb 22, 2022","Feb 23, 2022","Feb 24, 2022","Feb 25, 2022","Feb 26, 2022","Feb 27, 2022","Feb 28, 2022","Mar 01, 2022","Mar 02, 2022","Mar 03, 2022","Mar 04, 2022","Mar 05, 2022","Mar 06, 2022","Mar 07, 2022","Mar 08, 2022","Mar 09, 2022","Mar 10, 2022","Mar 11, 2022","Mar 12, 2022","Mar 13, 2022","Mar 14, 2022","Mar 15, 2022","Mar 16, 2022","Mar 17, 2022","Mar 18, 2022","Mar 19, 2022","Mar 20, 2022","Mar 21, 2022","Mar 22, 2022","Mar 23, 2022","Mar 24, 2022","Mar 25, 2022","Mar 26, 2022","Mar 27, 2022","Mar 28, 2022","Mar 29, 2022","Mar 30, 2022","Mar 31, 2022","Apr 01, 2022","Apr 02, 2022","Apr 03, 2022","Apr 04, 2022","Apr 05, 2022","Apr 06, 2022","Apr 07, 2022","Apr 08, 2022","Apr 09, 2022","Apr 10, 2022","Apr 11, 2022","Apr 12, 2022","Apr 13, 2022","Apr 14, 2022","Apr 15, 2022","Apr 16, 2022","Apr 17, 2022","Apr 18, 2022","Apr 19, 2022","Apr 20, 2022","Apr 21, 2022","Apr 22, 2022","Apr 23, 2022","Apr 24, 2022","Apr 25, 2022","Apr 26, 2022","Apr 27, 2022","Apr 28, 2022","Apr 29, 2022","Apr 30, 2022","May 01, 2022","May 02, 2022","May 03, 2022","May 04, 2022","May 05, 2022","May 06, 2022","May 07, 2022","May 08, 2022","May 09, 2022","May 10, 2022","May 11, 2022","May 12, 2022","May 13, 2022","May 14, 2022","May 15, 2022","May 16, 2022","May 17, 2022","May 18, 2022","May 19, 2022","May 20, 2022","May 21, 2022","May 22, 2022","May 23, 2022","May 24, 2022","May 25, 2022","May 26, 2022","May 27, 2022","May 28, 2022","May 29, 2022","May 30, 2022","May 31, 2022","Jun 01, 2022","Jun 02, 2022","Jun 03, 2022","Jun 04, 2022","Jun 05, 2022","Jun 06, 2022","Jun 07, 2022","Jun 08, 2022","Jun 09, 2022","Jun 10, 2022","Jun 11, 2022","Jun 12, 2022","Jun 13, 2022","Jun 14, 2022","Jun 15, 2022","Jun 16, 2022","Jun 17, 2022","Jun 18, 2022","Jun 19, 2022","Jun 20, 2022","Jun 21, 2022","Jun 22, 2022","Jun 23, 2022","Jun 24, 2022","Jun 25, 2022","Jun 26, 2022","Jun 27, 2022","Jun 28, 2022","Jun 29, 2022","Jun 30, 2022","Jul 01, 2022","Jul 02, 2022","Jul 03, 2022","Jul 04, 2022","Jul 05, 2022","Jul 06, 2022","Jul 07, 2022","Jul 08, 2022","Jul 09, 2022","Jul 10, 2022","Jul 11, 2022","Jul 12, 2022","Jul 13, 2022","Jul 14, 2022"] },
yAxis: {
title: {
text: null //'Novel Coronavirus Daily Deaths'
}
},
legend: {
enabled: true,
layout: 'vertical',
align: 'right',
verticalAlign: 'middle'
},
credits: {
enabled: false
},
plotOptions: {
series: {
showCheckbox: true,
selected: true
},
spline: {
events: {
legendItemClick: function(event) {
this.checkbox.click();
return false;
}
},
showInLegend: true
}
},
series: [{
name: 'Daily Deaths',
color: '#999',
lineWidth: 5,
showCheckbox: false,
showInLegend: false,
data: [null,9,19,15,24,26,27,39,44,46,45,58,64,67,73,73,86,94,98,108,97,146,122,143,142,106,98,136,117,121,113,100,158,81,64,36,58,65,54,73,67,85,85,100,107,105,227,199,277,333,383,464,423,712,682,877,1024,1093,1431,1709,1820,2082,2607,2642,3171,3605,3896,3684,4469,4867,5397,6422,6279,6405,5579,6297,7479,6956,7884,7250,6617,6252,6375,7514,8476,7066,8828,6684,5760,6484,7352,7016,7273,6468,6650,4917,5780,7128,7059,6289,6526,6366,4845,5681,6200,7261,6252,6062,5594,5386,4869,6209,5670,5907,5750,4975,4428,4601,5798,5367,5742,5431,4832,4034,4611,4841,5472,5111,5343,4867,4294,4188,5504,5543,5598,5157,4932,4702,4423,5473,5804,5625,5412,5145,4472,4648,7413,5925,5949,5853,5091,4545,4136,5805,5537,5562,5402,5221,4333,4809,5768,5453,5704,5734,5283,4410,4645,6221,5923,6093,5989,5680,5120,4861,6369,6340,6665,6321,5796,5158,5161,6729,7602,6905,6867,6376,5149,5376,6485,7237,7003,6788,6219,5102,5486,6882,7422,7009,6968,6049,5483,5380,6748,6943,7006,6447,6077,5197,5244,6878,6852,6659,6617,6066,5098,5103,6674,6605,6527,6246,5709,4762,4919,6449,6497,6177,6139,5330,4650,4610,5069,6095,5913,5929,5288,4400,4795,6331,5994,5719,5802,5188,4331,4271,5745,5831,5502,5522,5261,4181,4043,5773,5673,5595,5734,4970,4367,4778,5890,5993,6595,5984,5324,4744,4374,5257,6187,6119,6423,5857,4494,5061,6522,6922,6645,6713,5967,4944,5840,7248,7120,7226,7640,6943,6065,6769,8615,9251,9376,9520,8131,7019,7866,9738,9980,9756,10320,9725,7984,8695,10860,11894,11387,11360,9806,8667,9425,12313,12112,11482,11344,10207,8711,9836,12466,12343,12750,12461,11034,8902,9802,12415,12475,12941,12708,11321,9101,10241,13430,13682,13371,13125,11564,9407,11186,13779,13568,12242,9722,8904,9218,11022,14976,15120,13865,10756,9754,9119,11127,14739,14659,14882,15108,12976,10553,11579,16454,16156,15809,15472,13776,10911,11570,15861,16751,16818,15868,14476,11161,11909,16387,16677,16464,15123,13093,10187,11306,14871,14713,14123,13814,11367,8585,9928,13063,13281,13033,11938,10334,7695,7822,10169,10703,11279,11053,8817,7086,7516,10527,10314,10469,9729,8423,6698,7443,9748,10519,9973,9667,8075,6240,7250,9048,9924,9738,9497,8395,6342,7371,10193,10358,10207,10475,8620,6404,7772,10823,10243,10796,11578,10142,7340,8160,11322,12201,11842,10698,9228,7744,8147,12480,13227,14050,13568,11504,9137,9698,13213,13772,14334,13016,12129,10230,10829,14706,14325,13890,14781,14211,10669,11694,15658,15710,15931,14764,14065,11031,11799,14855,15286,14748,14663,13727,11211,11790,14626,14734,14652,14286,13519,10824,11719,14983,13793,14199,13762,11844,10765,9793,12975,12855,12081,12178,11164,8767,9194,11249,11467,11216,10611,9527,7958,8084,10359,10316,10338,9560,8790,7082,6923,9329,9591,8870,9191,8892,6979,6593,8984,9175,8752,8867,7828,6488,6502,7947,8895,8405,8655,7467,6449,6468,8315,8502,8977,8588,7774,6711,6643,8203,8774,8597,8773,7489,7245,6980,8562,8719,9065,8841,8590,7264,7731,9692,10406,10710,9430,9398,8190,8685,10216,10320,10572,10337,9719,8939,8560,10977,10732,11033,10644,9526,9062,8455,10521,11191,11554,10821,10186,9031,8340,11047,11865,11460,10662,9904,8584,8609,10330,10493,11364,10583,9065,7896,7918,9347,10154,10248,9816,9058,7560,7571,9356,10773,9860,9022,8068,7096,6599,8725,9722,9223,8943,7200,6264,6227,8591,9162,8277,7870,6786,5778,5650,7818,8517,8061,8008,6581,5355,5318,7005,7751,7827,7329,6344,5239,5473,7343,7408,7641,8049,6536,5672,5945,7795,8757,8322,7919,6800,5447,5984,7215,7948,7741,7873,7025,5467,6179,7848,8375,7595,7978,6696,5415,5968,7716,8546,8348,7899,6564,5246,6292,8412,8322,7765,7429,6672,5234,6306,8094,8545,7987,7978,6676,5061,6346,8167,8198,8362,8218,6598,5135,6070,7838,8295,7633,7623,6171,4805,6086,7610,7902,7310,6508,5021,4240,5529,7262,7684,7357,6584,5018,4071,5208,7639,7563,7721,7096,6130,4821,6099,8629,8697,8418,8279,7116,5823,6711,8755,9547,9933,9461,7638,6609,7723,10600,10994,10896,11123,9286,7601,9120,12318,12481,12410,12154,9503,8079,9362,13080,12508,12106,11974,9697,7345,8499,10824,11914,12287,11033,9629,6830,7322,9381,10815,10667,9140,7765,5882,6561,7876,8035,8204,8639,6744,5158,5345,7259,7182,7284,6471,5868,4538,4605,5836,6008,6504,5713,4714,3700,4059,5125,5070,5265,4867,3753,3018,3352,4263,4619,4470,4063,3521,2686,3059,3988,4045,4054,3946,2997,2353,2527,3335,3355,3576,2910,2237,1825,1890,2738,3250,3260,2623,2154,1626,2160,2711,2854,3016,2506,1867,1418,1833,2090,2193,2444,2044,1511,1086,1351,2087,2123,2139,2027,1402,1068,1345,1950,1990,2048,1656,1319,935,1440,1811,1807,1805,1605,1199,916,1114,1633,1709,1841,1460,1184,873,1057,1650,1945,1769,1556,1328,916,1059,1481,1659,1619,1305,1098,902,1026,1397,1806,1994,1705,1247,891,1198,1769,1859,1866,1773,1205,995,1206,1742,2076,2307,1943,1312,987,1438,1814,1812,1367] }, {
name: '7-day moving average',
type: 'spline',
data: [null,null,null,null,null,null,null,null,28,31,36,41,46,52,57,61,66,74,79,86,89,101,107,115,123,123,122,128,123,123,119,113,121,118,108,96,87,80,74,61,60,63,69,76,81,89,111,130,157,192,233,284,330,399,467,554,652,753,892,1076,1233,1434,1681,1912,2209,2519,2832,3098,3439,3762,4156,4620,5002,5360,5631,5893,6265,6488,6697,6836,6866,6962,6973,6979,7195,7079,7304,7313,7244,7258,7236,7027,7057,6720,6714,6595,6493,6462,6468,6327,6336,6295,6284,6271,6138,6167,6161,6096,5985,6062,5946,5948,5720,5671,5627,5538,5401,5363,5304,5261,5237,5192,5171,5115,5116,4980,4995,4904,4892,4897,4934,4874,4969,4978,5048,5022,5031,5089,5123,5118,5155,5160,5196,5226,5193,5226,5503,5520,5566,5629,5622,5632,5559,5329,5274,5218,5154,5173,5142,5238,5233,5222,5241,5289,5298,5308,5286,5350,5417,5472,5510,5565,5668,5698,5719,5779,5861,5908,5924,5930,5973,6024,6205,6239,6317,6399,6399,6429,6394,6342,6356,6345,6323,6315,6332,6388,6415,6415,6441,6417,6471,6456,6437,6369,6368,6294,6298,6256,6238,6256,6243,6193,6218,6216,6202,6182,6153,6117,6099,6045,5995,5946,5921,5888,5873,5822,5808,5753,5737,5693,5496,5439,5401,5371,5365,5329,5355,5536,5522,5493,5476,5461,5452,5376,5293,5270,5238,5199,5209,5187,5155,5159,5137,5149,5180,5139,5165,5270,5287,5332,5475,5511,5562,5615,5558,5467,5495,5427,5490,5566,5530,5628,5809,5914,5989,6031,6046,6111,6222,6325,6354,6437,6569,6709,6869,7001,7197,7502,7808,8077,8247,8383,8539,8701,8804,8858,8973,9201,9338,9457,9617,9891,10123,10273,10283,10382,10485,10693,10725,10737,10736,10793,10799,10858,10880,10912,11094,11254,11371,11399,11394,11387,11405,11433,11468,11509,11538,11600,11746,11917,11979,12039,12074,12117,12252,12302,12286,12124,11638,11259,11231,11208,11379,11600,11833,11980,12101,12088,12102,12069,12002,12148,12770,13230,13435,13499,13745,13958,14091,14143,14257,14308,14307,14222,14307,14451,14508,14608,14643,14692,14768,14756,14706,14600,14402,14263,14176,13960,13680,13345,13158,12912,12683,12485,12228,12023,11867,11600,11451,11325,11024,10610,10242,9991,9865,9649,9561,9517,9569,9513,9398,9208,9152,9097,9086,8975,9004,8933,8924,8875,8809,8782,8682,8597,8563,8539,8584,8599,8617,8780,8842,8909,9048,9081,9090,9147,9237,9221,9304,9463,9679,9814,9869,9940,10220,10369,10243,10113,10171,10169,10334,10481,10796,11207,11531,11731,11952,12056,12135,12175,12096,12186,12342,12503,12716,12796,12732,12984,13282,13345,13468,13604,13801,14094,14091,14070,14122,14137,14022,13961,13793,13778,13730,13756,13754,13721,13643,13629,13575,13546,13490,13480,13531,13396,13332,13257,13018,13009,12734,12448,12313,12011,11784,11687,11402,11317,11069,10872,10748,10524,10290,10174,10016,9889,9725,9599,9448,9344,9218,9053,8905,8802,8592,8540,8554,8539,8492,8443,8384,8366,8320,8169,8098,8085,7937,7897,7847,7818,7765,7760,7755,7808,7752,7833,7824,7867,7905,7930,7914,7953,7899,7925,7884,7960,8009,8060,8052,8119,8129,8286,8289,8396,8557,8799,9033,9118,9233,9365,9501,9577,9564,9544,9674,9720,9827,9809,9918,9976,10043,10086,10059,10076,10061,9997,10061,10136,10162,10256,10251,10235,10310,10406,10393,10370,10330,10266,10304,10202,10006,9993,9981,9861,9763,9664,9523,9476,9316,9206,9205,9157,9108,9109,9198,9142,9028,8887,8821,8682,8592,8442,8350,8340,8215,8097,8043,8025,7944,7809,7656,7597,7527,7445,7334,7242,7212,7231,7202,7141,7094,6978,6869,6835,6738,6704,6687,6710,6758,6709,6682,6786,6812,6875,6942,7007,7199,7296,7278,7316,7284,7289,7206,7091,7008,7001,7033,7036,7064,7155,7215,7195,7209,7163,7155,7125,7106,7131,7238,7227,7208,7183,7231,7329,7298,7214,7147,7163,7161,7162,7118,7149,7181,7260,7260,7235,7241,7251,7202,7256,7289,7279,7289,7250,7202,7217,7112,7028,6966,6920,6921,6889,6833,6787,6627,6463,6383,6303,6253,6222,6228,6240,6239,6215,6169,6223,6206,6258,6331,6489,6597,6724,6866,7027,7128,7296,7437,7580,7667,7686,7807,8023,8193,8267,8379,8523,8788,8994,9131,9369,9605,9746,9946,10191,10403,10620,10767,10798,10867,10901,11010,11013,10971,10944,10973,10867,10744,10422,10337,10363,10228,10219,10145,9977,9771,9614,9382,9112,8846,8710,8602,8386,7990,7637,7566,7421,7316,7143,7055,6933,6802,6492,6366,6278,6173,5969,5801,5690,5582,5417,5297,5219,5118,4983,4807,4686,4548,4451,4350,4227,4162,4049,3934,3901,3854,3811,3772,3691,3631,3614,3539,3492,3415,3323,3224,3155,3008,2899,2823,2733,2647,2633,2587,2546,2534,2506,2544,2541,2484,2449,2433,2391,2362,2315,2226,2132,2050,1984,1933,1886,1817,1817,1806,1763,1761,1745,1742,1742,1722,1703,1690,1637,1625,1606,1620,1600,1574,1539,1531,1515,1512,1465,1440,1426,1431,1410,1408,1402,1394,1396,1430,1420,1433,1454,1461,1460,1436,1396,1374,1338,1305,1303,1299,1287,1307,1361,1419,1439,1438,1463,1515,1524,1505,1514,1509,1524,1524,1521,1552,1615,1639,1655,1653,1686,1697,1659,1525],
lineWidth: 2,
color: '#ad6c0a',
selected: false,
visible: false,
}],
responsive: {
rules: [{
condition: {
maxWidth: 800
},
chartOptions: {
legend: {
layout: 'horizontal',
align: 'center',
verticalAlign: 'bottom'
}
}
}]
}
}
,
function(chart) {
Highcharts.each(chart.legend.allItems, function(p, i) {
$(p.checkbox).change(
function() {
if (this.checked) {
chart.legend.allItems[i].show();
} else {
chart.legend.allItems[i].hide();
}
});
});
});
</script>
<div style="font-size:16px; margin-top:20px; margin-bottom:20px">
</div>
</div>
</div>
<div style="margin-top:40px; clear:both">
<div style="color:#aaa; font-size:13px; margin-bottom:5px">
The charts above are updated after the close of the day in GMT+0.
<a href="/coronavirus/worldwide-graphs/">
See more graphs
</a>
</div>
</div>
<div style="margin-bottom:60px; clear:both; margin-top:60px ">
<p>
</p>
</div>
<div style="margin-top:40px; margin-bottom:40px;">
<script async="" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js">
</script>
<ins class="adsbygoogle" data-ad-client="ca-pub-3701697624350410" data-ad-format="auto" data-ad-slot="6385142158" data-full-width-responsive="true" style="display:block">
</ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
</div>
</div>
<div class="col-md-4">
<div>
<script async="" src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js">
</script>
<ins class="adsbygoogle" data-ad-client="ca-pub-3701697624350410" data-ad-slot="2348228155" style="display:inline-block;width:300px;height:600px">
</ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div style="margin-top:40px; margin-bottom:40px;">
<script async="" src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js">
</script>
<ins class="adsbygoogle" data-ad-client="ca-pub-3701697624350410" data-ad-slot="2348228155" style="display:inline-block;width:300px;height:600px">
</ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div style="margin-top:40px; margin-bottom:40px; ">
<div align="center" id="worldometers_300x600_160x600_300x250_336x280_Right">
<script data-cfasync="false" type="text/javascript">
freestar.config.enabled_slots.push({ placementName: "worldometers_300x600_160x600_300x250_336x280_Right", slotId: "worldometers_300x600_160x600_300x250_336x280_Right" });
</script>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8">
<h3 id="countries">
Reported Cases and Deaths by Country or Territory
</h3>
<p>
The
<strong>
coronavirus
</strong>
COVID-19 is affecting
<strong>
228 countries and territories
</strong>
.
<strong>
The day is reset after midnight GMT+0
</strong>
. The list of countries and their regional classification is based on the
<a href="https://unstats.un.org/unsd/methodology/m49/">
United Nations Geoscheme
</a>
. Sources are
<a class="underline" href="#news">
provided under "Latest News
</a>
."
<a href="/coronavirus/about/">
<strong>
Learn more about Worldometer's COVID-19 data
</strong>
</a>
<br/>
<br/>
<br/>
<script src="/js/js.cookie.min.js">
</script>
<script src="https://cdn.datatables.net/select/1.3.1/js/dataTables.select.min.js">
</script>
<div style="margin-bottom:30px">
<a href="/report_us/" style="text-decoration: underline;">
<strong>
Report coronavirus cases
</strong>
</a>
</div>
<script>
var tabs = ["today","yesterday","yesterday2"];
var cur_continent = 'All';
var cur_table = 'main_table_countries_today';
var tables = {};
$(document).ready(function() {
tabs.forEach(function(val) {
$('#nav-' + val + '-tab a').click(function(e) {
e.preventDefault();
$(this).tab('show');
})
tables[val] = $('#main_table_countries_' + val).DataTable({
/*buttons: [
'print'
],*/
"scrollCollapse": true,
"scrollX": true,
"order": [
[2, 'desc']
],
//"dom": '<"top"f><"clear">',
"dom": "<'row pills_row'<'col-sm-9 col-md-9'><'col-sm-3 col-md-3'f>>" +
"<'#ctabs-row.row'<'#continents-tab" + val + ".w-100'>>",
"paging": false,
columnDefs: [{
"searchable": false,
"orderable": false,
"targets": 0
},
{
orderSequence: ["asc", "desc"],
"targets": [1]
},
{
orderSequence: ["desc", "asc"],
"targets": "_all"
},
{
// Total Recovered
data: function(source, type, val) {
if (type === 'set') {
source[6] = val;
return;
} else if (type === 'sort') {
// source[iColIndex] = is the cell value (<td> DATA THAT NEEDS TO BE SORTED <span>Data Label</span> </td>)
// return the right data to sort
if (source[6] == 'N/A') {
return 0;
}
}
return source[6];
},
type: 'num-fmt',
aTargets: [6]
}, {
// Active Source
data: function(source, type, val) {
if (type === 'set') {
source[7] = val;
return;
} else if (type === 'sort') {
// source[iColIndex] = is the cell value (<td> DATA THAT NEEDS TO BE SORTED <span>Data Label</span> </td>)
// return the right data to sort
if (source[7] == 'N/A') {
return 0;
}
}
return source[7];
},
type: 'num-fmt',
aTargets: [7]
}, {
// Active Source
data: function(source, type, val) {
if (type === 'set') {
source[8] = val;
return;
} else if (type === 'sort') {
// source[iColIndex] = is the cell value (<td> DATA THAT NEEDS TO BE SORTED <span>Data Label</span> </td>)
// return the right data to sort
if (source[8] == 'N/A') {
return 0;
}
}
return source[8];
},
type: 'num-fmt',
aTargets: [8]
}
],
initComplete: function(settings, json) {
var ctabs = $('#ctabs').clone();
ctabs.attr('id', 'ctabs' + val);
ctabs.appendTo($('#continents-tab' + val));
ctabs.find('a').on('click', function() {
cur_continent = $(this).html();
var cur_continent_original = cur_continent;
if (cur_continent == 'Oceania') {
cur_continent = 'Australia/Oceania';
}
if (cur_continent != 'All') {
$('.total_row_body').hide();
} else {
$('.total_row_body').show();
}
cur_table = 'main_table_countries_' + val;
// trigger yesterday
tabs.forEach(function(tabs_val) {
if (tabs_val == val) {
return;
}
$('#ctabs' + tabs_val + ' li').removeClass('active');
$('#ctabs' + tabs_val).find('a:contains("' + cur_continent_original + '")').parent().addClass('active');
$('#main_table_countries_' + tabs_val).find('.row_continent').hide();
$('#main_table_countries_' + tabs_val).DataTable().draw();
$('#main_table_countries_' + tabs_val).find('tr[data-continent="' + cur_continent + '"]').show();
});
$('#main_table_countries_' + val).find('.row_continent').hide();
$('#main_table_countries_' + val).DataTable().draw();
$('#main_table_countries_' + val).find('tr[data-continent="' + cur_continent + '"]').show();
})
ctabs.show();
$('#main_table_controls_loading').hide();
$('#main_table_controls').show();
$('#main_table_countries_' + val).show();
$('#main_table_countries_' + val).DataTable().draw();
}
});
$('#main_table_countries_' + val).on('order.dt search.dt', function() {
var $global_i = 1;
$('#main_table_countries_' + val).DataTable().column(0, {
search: 'applied',
order: 'applied'
}).nodes().each(function(cell, i) {
if ($(cell).parent().hasClass("total_row_world")) {
cell.innerHTML = '';
} else {
cell.innerHTML = $global_i;
$global_i++;
}
//console.log(cell);
});
}).DataTable().draw();
//$( '.main_table_countries th' ).stickybits();
$.fn.dataTable.ext.search.push(
function(settings, data, dataIndex) {
// Don't filter on anything other than "myTable"
/* if (settings.nTable.id !== cur_table) {
return true;
}*/
// Filtering for "myTable".
if (cur_continent == 'All') {
return true;
}
if (
data[15] == cur_continent
) {
return true;
} else {
return false;
}
}
);
$('#main_table_countries_today_filter input').on('change', function() {
$('#main_table_countries_yesterday_filter input').val($(this).val());
$('#main_table_countries_yesterday_filter input').keyup();
$('#main_table_countries_yesterday2_filter input').val($(this).val());
$('#main_table_countries_yesterday2_filter input').keyup();
})
$('#main_table_countries_yesterday_filter input').on('change', function() {
$('#main_table_countries_today_filter input').val($(this).val());
$('#main_table_countries_today_filter input').keyup();
$('#main_table_countries_yesterday2_filter input').val($(this).val());
$('#main_table_countries_yesterday2_filter input').keyup();
})
$('#main_table_countries_yesterday2_filter input').on('change', function() {
$('#main_table_countries_today_filter input').val($(this).val());
$('#main_table_countries_today_filter input').keyup();
$('#main_table_countries_yesterday_filter input').val($(this).val());
$('#main_table_countries_yesterday_filter input').keyup();
})
});
//
var columns = {
'Total Cases': 2,
'New Cases': 3,
'Total Deaths': 4,
'New Deaths': 5,
'Total Recovered': 6,
'New Recovered': 7,
'Active Cases': 8,
'Serious, Critical': 9,
'Tot Cases/1M pop': 10,
'Deaths/1M pop': 11,
'Total Tests': 12,
'Tests/1M pop': 13,
'Population': 14,
'1 Case every X ppl': 16,
'1 Death every X ppl': 17,
'1 Test every X ppl': 18,
'New Cases/1M pop': 19,
'New Deaths/1M pop': 20,
'Active Cases/1M pop': 21,
};
vcolumns = Cookies.get('vcolumns');
if (typeof vcolumns === 'undefined') {
vcolumns = {
/*7: false,*/
16: false,
17: false,
18: false,
19: false,
20: false,
21: false
};
} else {
vcolumns = JSON.parse(vcolumns);
Object.keys(vcolumns).forEach(function(column_idx) {
// new recovered
/*if (typeof vcolumns[7] === 'undefined') {
vcolumns[7] = false;
}*/
// 1 Case/death/test per X ppl
for (col_hide = 16; col_hide <= 21; col_hide++) {
if (typeof vcolumns[col_hide] === 'undefined') {
vcolumns[col_hide] = false;
}
}
});
}
Object.keys(columns).forEach(function(column_name) {
var col_num = columns[column_name];
var checked = true;
if (col_num in vcolumns) {
if (vcolumns[col_num] === false) {
checked = false;
}
}
// add checkbox to columns dropdown
$('#colsDrop').append('<li>' +
'<div class="checkbox">' +
'<label for="column_' + col_num + '">' +
'<input id="column_' + col_num + '" ' + (checked ? 'checked' : '') +
' type="checkbox" class="toggle-vis" data-column="' +
col_num + '">' + column_name +
'</label>' +
'</div>' +
'</li>');
// hide columns saved in cookies
Object.keys(tables).forEach(function(day) {
var table = tables[day];
var column = table.column(col_num);
if (!checked) {
$('.body_continents tr').each(function(tr) {
$(this).children().eq(col_num).css('display', 'none');
});
$('.body_world').each(function(tr) {
$(this).find('tr').children().eq(col_num).css('display', 'none');
});
try {
column.visible(false);
}
catch(err) {
}
}
})
})
// show tables
tabs.forEach(function(val) {
$('#main_table_countries_' + val).show();
});
$(document).on('click', '.div_visible_columns .dropdown-menu', function(e) {
e.stopPropagation();
});
$(".toggle-vis").change(function(e) {
e.preventDefault();
//e.stopPropagation();
var t = this;
var column_num = $(this).attr('data-column');
// Get the column API object
Object.keys(tables).forEach(function(day) {
var table = tables[day];
var column = table.column(column_num);
try {
if (t.checked) {
$('.body_continents tr').each(function(tr) {
$(this).children().eq(column_num).css('display', 'block');
});
$('.body_world').each(function(tr) {
$(this).find('tr').children().eq(column_num).css('display', 'block');
});
vcolumns[column_num] = true;
Cookies.set('vcolumns', JSON.stringify(vcolumns));
column.visible(true);
} else {
$('.body_continents tr').each(function(tr) {
$(this).children().eq(column_num).css('display', 'none');
});
$('.body_world').each(function(tr) {
$(this).find('tr').children().eq(column_num).css('display', 'none');
});
vcolumns[column_num] = false;
Cookies.set('vcolumns', JSON.stringify(vcolumns));
column.visible(false);
}
// process child tbodies
}
catch(err) {
}
});
});
});
</script>
<style type="text/css">
.small_font_td {
font-size: 12px;
}
.total_row td {
font-weight: bold;
text-align: right;
}
.main_table_countries_div {
font-size: 15.5px;
text-align: left;
width: 100%;
overflow-x: unset !important;
overflow-y: unset !important;
}
.main_table_countries td {
border-color: #ccc !important;
}
.main_table_countries th {
font-size: 14px;
font-weight: bold;
border-color: #ccc !important;
color: #666666;
position: sticky !important;
position: -webkit-sticky !important;
-webkit-transform: translateZ(0) !important;
transform: translateZ(0) !important;
top: 0;
background: #fff;
box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
}
.main_table_countries th>* {
-webkit-transform: translateZ(0) !important;
transform: translateZ(0) !important;
}
.mt_a {
text-decoration: underline;
}
.mt_pills a {
padding: 0 !important;
padding-top: 4px !important;
padding-bottom: 4px !important;
padding-left: 14px !important;
padding-right: 14px !important;
text-decoration: none;
}
.mt_pills_c.active a {
background-color: #6C757D !important;
color: #fff !important;
}
.mt_buttons {
margin-bottom: 16px !important;
}
@media (min-width: 900px) {
.mt_buttons {
position: absolute;
top: 0px;
}
}
.total_row_world {
text-align: right !important;
background-color: #DFDFDF !important;
color: #363945 !important;
font-weight: normal !important;
}
.total_row_world td {
background-color: #DFDFDF;
}
#ctabs-row {
margin-left: 0;
margin-right: 0;
}
.nav-tabs {
border-bottom: none !important;
}
.nav-tabs a {
/*color: #fff !important;*/
}
#main_table_countries_today,
#main_table_countries_yesterday {
margin-top: 0px !important;
}
.pills_row {
margin-bottom: 16px !important;
}
#main_table_countries_today td:nth-child(1),
#main_table_countries_yesterday td:nth-child(1) {
padding-left: 3px !important;
padding-right: 3px !important;
}
/* fixed header fixes
table.dataTable {
margin-top: 0 !important;
}*/
.main_table_countries_div {
/*width: 900px;
margin: 0 auto;
overflow: auto !important;
position: relative;*/
}
.div_visible_columns {
float: right;
margin-left: 30px;
}
#colsDrop {
padding-left: 10px;
padding-right: 10px;
}
#colsDrop label {
/*font-size: 12px;*/
}
.lds-ellipsis {
margin: 0 auto;
display: none;
position: relative;
width: 74px;
height: 30px;
}
.lds-ellipsis div {
position: absolute;
top: 10px;
width: 13px;
height: 13px;
border-radius: 50%;
background: #777;
animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
left: 8px;
animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
left: 8px;
animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
left: 32px;
animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
left: 56px;
animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
0% {
transform: scale(0);
}
100% {
transform: scale(1);
}
}
@keyframes lds-ellipsis3 {
0% {
transform: scale(1);
}
100% {
transform: scale(0);
}
}
@keyframes lds-ellipsis2 {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(24px, 0);
}
}
</style>
<div id="main_table">
</div>
<div id="main_table_controls_loading" style="width:100px;">
<div style="width:100%;text-align:center; ">
<div class="loading lds-ellipsis" style="display:inline-block;">
<div>
</div>
<div>
</div>
<div>
</div>
<div>
</div>
</div>
</div>
</div>
<div>
<ul class="nav nav-pills" style="margin-bottom:20px;">
<li class="mt_pills active" id="nav-main-table-tab">
<a href="#main_table">
MAIN
</a>
</li>
<li class="mt_pills" id="nav-weekly-trends">
<a href="/coronavirus/weekly-trends/#weekly_table">
WEEKLY TRENDS
</a>
</li>
</ul>
</div>
<div id="main_table_controls" style="position:relative;display:none;">
<ul class="nav nav-pills mt_buttons" role="tablist">
<li aria-controls="nav-today" class="mt_pills active" data-toggle="tab" id="nav-today-tab" role="tab">
<a href="#nav-today">
Now
</a>
</li>
<li aria-controls="nav-yesterday" class="mt_pills" data-toggle="tab" id="nav-yesterday-tab" role="tab">
<a href="#nav-yesterday">
Yesterday
</a>
</li>
<li aria-controls="nav-yesterday2" class="mt_pills" data-toggle="tab" id="nav-yesterday2-tab" role="tab">
<a href="#nav-yesterday2">
2 Days Ago
</a>
</li>
<div class="div_visible_columns">
<button aria-expanded="false" aria-haspopup="true" class="btn btn-sm btn-secondary dropdown-toggle" data-toggle="dropdown" style="margin-top:-2px;font-size:14px;" title="Click to hide/show columns" type="button">
Columns
<b class="caret">
</b>
</button>
<ul class="dropdown-menu dropdown-menu-right" id="colsDrop">
</ul>
</div>
</ul>
<nav class="ctabs" id="ctabs" style="display:none">
<ul class="nav nav-tabs" id="continents_buttons">
<li aria-controls="nav-all" aria-selected="true" class="mt_pills mt_pills_c active" data-toggle="pill" href="#nav-all" id="nav-all-tab" role="tab">
<a href='#c-all"'>
All
</a>
</li>
<li aria-controls="nav-all" aria-selected="true" class="mt_pills mt_pills_c" data-toggle="pill" href="#nav-europe" id="nav-europe-tab" role="tab">
<a href='#c-europe"'>
Europe
</a>
</li>
<li aria-controls="nav-all" aria-selected="true" class="mt_pills mt_pills_c" data-toggle="pill" href="#nav-na" id="nav-na-tab" role="tab">
<a href='#c-north-america"'>
North America
</a>
</li>
<li aria-controls="nav-all" aria-selected="true" class="mt_pills mt_pills_c" data-toggle="pill" href="#nav-asia" id="nav-asia-tab" role="tab">
<a href='#c-asia"'>
Asia
</a>
</li>
<li aria-controls="nav-all" aria-selected="true" class="mt_pills mt_pills_c" data-toggle="pill" href="#nav-sa" id="nav-sa-tab" role="tab">
<a href='#c-south-america"'>
South America
</a>
</li>
<li aria-controls="nav-all" aria-selected="true" class="mt_pills mt_pills_c" data-toggle="pill" href="#nav-africa" id="nav-africa-tab" role="tab">
<a href='#c-africa"'>
Africa
</a>
</li>
<li aria-controls="nav-all" aria-selected="true" class="mt_pills mt_pills_c" data-toggle="pill" href="#nav-oceania" id="nav-oceania-tab" role="tab">
<a href='#c-oceania"'>
Oceania
</a>
</li>
</ul>
</nav>
</div>
<div class="tab-content" id="nav-tabContent">
<div aria-labelledby="nav-today-tab" class="tab-pane active" id="nav-today" role="tabpanel">
<div class="main_table_countries_div">
<table class="table table-bordered table-hover main_table_countries" id="main_table_countries_today" style="width:100%;margin-top: 0px !important;display:none;">
<thead>
<tr>
<th width="1%">
#
</th>
<th width="100">
Country,
<br>
Other
</br>
</th>
<th width="20">
Total
<br>
Cases
</br>
</th>
<th width="30">
New
<br>
Cases
</br>
</th>
<th width="30">
Total
<br>
Deaths
</br>
</th>
<th width="30">
New
<br>
Deaths
</br>
</th>
<th width="30">
Total
<br>
Recovered
</br>
</th>
<th width="30">
New
<br>
Recovered
</br>
</th>
<th width="30">
Active
<br/>
Cases
</th>
<th width="30">
Serious,
<br/>
Critical
</th>
<th width="30">
Tot Cases/
<br/>
1M pop
</th>
<th width="30">
Deaths/
<br/>
1M pop
</th>
<th width="30">
Total
<br/>
Tests
</th>
<th width="30">
Tests/
<br/>
<nobr>
1M pop
</nobr>
</th>
<th width="30">
Population
</th>
<th style="display:none" width="30">
Continent
</th>
<th width="30">
1 Case
<br/>
every X ppl
</th>
<th width="30">
1 Death
<br/>
every X ppl
</th>
<th width="30">
1 Test
<br/>
every X ppl
</th>
<th width="30">
New Cases/1M pop
</th>
<th width="30">
New Deaths/1M pop
</th>
<th width="30">
Active Cases/1M pop
</th>
</tr>
</thead>
<tbody>
<tr class="total_row_world row_continent" data-continent="North America" style="display: none">
<td>
</td>
<td style="text-align:left;">
<nobr>
North America
</nobr>
</td>
<td>
107,794,852
</td>
<td>
+34,885
</td>
<td>
1,494,690
</td>
<td>
+74
</td>
<td>
100,746,314
</td>
<td>
+19,748
</td>
<td>
5,553,848
</td>
<td>
9,502
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="North America" style="display:none;">
North America
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="total_row_world row_continent" data-continent="Asia" style="display: none">
<td>
</td>
<td style="text-align:left;">
<nobr>
Asia
</nobr>
</td>
<td>
163,765,129
</td>
<td>
+41,272
</td>
<td>
1,442,533
</td>
<td>
+39
</td>
<td>
157,775,292
</td>
<td>
+6,032
</td>
<td>
4,547,304
</td>
<td>
11,043
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Asia" style="display:none;">
Asia
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="total_row_world row_continent" data-continent="South America" style="display: none">
<td>
</td>
<td style="text-align:left;">
<nobr>
South America
</nobr>
</td>
<td>
60,877,685
</td>
<td>
</td>
<td>
1,309,819
</td>
<td>
</td>
<td>
57,886,539
</td>
<td>
+10,093
</td>
<td>
1,681,327
</td>
<td>
10,454
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="South America" style="display:none;">
South America
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="total_row_world row_continent" data-continent="Europe" style="display: none">
<td>
</td>
<td style="text-align:left;">
<nobr>
Europe
</nobr>
</td>
<td>
209,911,879
</td>
<td>
</td>
<td>
1,863,623
</td>
<td>
</td>
<td>
198,908,016
</td>
<td>
+25,445
</td>
<td>
9,140,240
</td>
<td>
6,729
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Europe" style="display:none;">
Europe
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="total_row_world row_continent" data-continent="Australia/Oceania" style="display: none">
<td>
</td>
<td style="text-align:left;">
<nobr>
Oceania
</nobr>
</td>
<td>
10,492,349
</td>
<td>
+30,830
</td>
<td>
14,997
</td>
<td>
+55
</td>
<td>
9,945,183
</td>
<td>
</td>
<td>
532,169
</td>
<td>
176
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Australia/Oceania" style="display:none;">
Australia/Oceania
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="total_row_world row_continent" data-continent="Africa" style="display: none">
<td>
</td>
<td style="text-align:left;">
<nobr>
Africa
</nobr>
</td>
<td>
12,431,054
</td>
<td>
</td>
<td>
256,378
</td>
<td>
</td>
<td>
11,578,374
</td>
<td>
</td>
<td>
596,302
</td>
<td>
1,005
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Africa" style="display:none;">
Africa
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="total_row_world row_continent" data-continent="" style="display: none">
<td>
</td>
<td style="text-align:left;">
<nobr>
</nobr>
</td>
<td>
721
</td>
<td>
</td>
<td>
15
</td>
<td>
</td>
<td>
706
</td>
<td>
</td>
<td>
0
</td>
<td>
0
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="" style="display:none;">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="total_row_world">
<td>
</td>
<td style="text-align:left;">
World
</td>
<td>
565,273,669
</td>
<td>
+106,987
</td>
<td>
6,382,055
</td>
<td>
+168
</td>
<td>
536,840,424
</td>
<td>
+61,318
</td>
<td>
22,051,190
</td>
<td>
38,909
</td>
<td>
72,519
</td>
<td>
818.8
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="all" style="display:none">
All
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
1
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/us/">
USA
</a>
</td>
<td style="font-weight: bold; text-align:right">
91,060,225
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,048,232
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
86,371,941
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
3,640,052
</td>
<td style="font-weight: bold; text-align:right">
4,180
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,059,620,672
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
2
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/india/">
India
</a>
</td>
<td style="font-weight: bold; text-align:right">
43,704,925
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
525,557
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
43,028,356
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
151,012
</td>
<td style="font-weight: bold; text-align:right">
698
</td>
<td style="font-weight: bold; text-align:right">
31,051
</td>
<td style="font-weight: bold; text-align:right">
373
</td>
<td style="font-weight: bold; text-align:right">
867,769,574
</td>
<td style="font-weight: bold; text-align:right">
616,518
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/india-population/">
1,407,532,492
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
32
</td>
<td>
2,678
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
107
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
3
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/brazil/">
Brazil
</a>
</td>
<td style="font-weight: bold; text-align:right">
33,142,158
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
674,846
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
31,451,590
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,015,722
</td>
<td style="font-weight: bold; text-align:right">
8,318
</td>
<td style="font-weight: bold; text-align:right">
153,703
</td>
<td style="font-weight: bold; text-align:right">
3,130
</td>
<td style="font-weight: bold; text-align:right">
63,776,166
</td>
<td style="font-weight: bold; text-align:right">
295,774
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/brazil-population/">
215,624,945
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
7
</td>
<td>
320
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,711
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
4
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/france/">
France
</a>
</td>
<td style="font-weight: bold; text-align:right">
32,795,874
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
150,468
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
<span style="color:grey; font-style: italic;">
30,363,245
</span>
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
2,282,161
</td>
<td style="font-weight: bold; text-align:right">
869
</td>
<td style="font-weight: bold; text-align:right">
500,192
</td>
<td style="font-weight: bold; text-align:right">
2,295
</td>
<td style="font-weight: bold; text-align:right">
271,490,188
</td>
<td style="font-weight: bold; text-align:right">
4,140,684
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/france-population/">
65,566,505
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
436
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
34,807
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
5
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/germany/">
Germany
</a>
</td>
<td style="font-weight: bold; text-align:right">
29,460,249
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
142,284
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
27,548,900
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,769,065
</td>
<td style="font-weight: bold; text-align:right">
1,238
</td>
<td style="font-weight: bold; text-align:right">
349,356
</td>
<td style="font-weight: bold; text-align:right">
1,687
</td>
<td style="font-weight: bold; text-align:right">
122,332,384
</td>
<td style="font-weight: bold; text-align:right">
1,450,683
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/germany-population/">
84,327,414
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
593
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
20,979
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
6
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/uk/">
UK
</a>
</td>
<td style="font-weight: bold; text-align:right">
23,075,360
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
181,580
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
<span style="color:grey; font-style: italic;">
22,325,335
</span>
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
568,445
</td>
<td style="font-weight: bold; text-align:right">
146
</td>
<td style="font-weight: bold; text-align:right">
336,329
</td>
<td style="font-weight: bold; text-align:right">
2,647
</td>
<td style="font-weight: bold; text-align:right">
522,526,476
</td>
<td style="font-weight: bold; text-align:right">
7,615,952
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/uk-population/">
68,609,479
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
378
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
8,285
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
7
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/italy/">
Italy
</a>
</td>
<td style="font-weight: bold; text-align:right">
19,887,543
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
169,601
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
18,294,517
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,423,425
</td>
<td style="font-weight: bold; text-align:right">
388
</td>
<td style="font-weight: bold; text-align:right">
329,911
</td>
<td style="font-weight: bold; text-align:right">
2,813
</td>
<td style="font-weight: bold; text-align:right">
231,776,628
</td>
<td style="font-weight: bold; text-align:right">
3,844,904
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/italy-population/">
60,281,506
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
355
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
23,613
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
8
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/south-korea/">
S. Korea
</a>
</td>
<td style="font-weight: bold; text-align:right">
18,680,142
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+38,864
</td>
<td style="font-weight: bold; text-align:right;">
24,712
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+16
</td>
<td style="font-weight: bold; text-align:right">
<span style="color:grey; font-style: italic;">
18,304,752
</span>
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+3,413
</td>
<td style="text-align:right;font-weight:bold;">
350,678
</td>
<td style="font-weight: bold; text-align:right">
65
</td>
<td style="font-weight: bold; text-align:right">
363,719
</td>
<td style="font-weight: bold; text-align:right">
481
</td>
<td style="font-weight: bold; text-align:right">
15,804,065
</td>
<td style="font-weight: bold; text-align:right">
307,719
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/south-korea-population/">
51,358,685
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
3
</td>
<td>
2,078
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
757
</td>
<td style="font-weight: bold; text-align:right">
0.3
</td>
<td style="font-weight: bold; text-align:right">
6,828
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
9
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/russia/">
Russia
</a>
</td>
<td style="font-weight: bold; text-align:right">
18,476,477
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
381,754
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
17,900,518
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
194,205
</td>
<td style="font-weight: bold; text-align:right">
2,300
</td>
<td style="font-weight: bold; text-align:right">
126,498
</td>
<td style="font-weight: bold; text-align:right">
2,614
</td>
<td style="font-weight: bold; text-align:right">
273,400,000
</td>
<td style="font-weight: bold; text-align:right">
1,871,816
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/russia-population/">
146,061,390
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
8
</td>
<td>
383
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,330
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
10
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/turkey/">
Turkey
</a>
</td>
<td style="font-weight: bold; text-align:right">
15,297,539
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
99,088
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
15,096,774
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
101,677
</td>
<td style="font-weight: bold; text-align:right">
975
</td>
<td style="font-weight: bold; text-align:right">
177,506
</td>
<td style="font-weight: bold; text-align:right">
1,150
</td>
<td style="font-weight: bold; text-align:right">
162,743,369
</td>
<td style="font-weight: bold; text-align:right">
1,888,403
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/turkey-population/">
86,180,421
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
6
</td>
<td>
870
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,180
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
11
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/spain/">
Spain
</a>
</td>
<td style="font-weight: bold; text-align:right">
13,032,841
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
108,948
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
12,370,046
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
553,847
</td>
<td style="font-weight: bold; text-align:right">
339
</td>
<td style="font-weight: bold; text-align:right">
278,530
</td>
<td style="font-weight: bold; text-align:right">
2,328
</td>
<td style="font-weight: bold; text-align:right">
471,036,328
</td>
<td style="font-weight: bold; text-align:right">
10,066,705
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/spain-population/">
46,791,511
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
4
</td>
<td>
429
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
11,836
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
12
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/viet-nam/">
Vietnam
</a>
</td>
<td style="font-weight: bold; text-align:right">
10,758,189
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
43,090
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
9,793,800
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
921,299
</td>
<td style="font-weight: bold; text-align:right">
36
</td>
<td style="font-weight: bold; text-align:right">
108,542
</td>
<td style="font-weight: bold; text-align:right">
435
</td>
<td style="font-weight: bold; text-align:right">
85,826,548
</td>
<td style="font-weight: bold; text-align:right">
865,924
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/viet-nam-population/">
99,115,541
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
9
</td>
<td>
2,300
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
9,295
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
13
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/japan/">
Japan
</a>
</td>
<td style="font-weight: bold; text-align:right">
9,903,381
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
31,494
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
9,389,831
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
482,056
</td>
<td style="font-weight: bold; text-align:right">
100
</td>
<td style="font-weight: bold; text-align:right">
78,791
</td>
<td style="font-weight: bold; text-align:right">
251
</td>
<td style="font-weight: bold; text-align:right">
58,169,163
</td>
<td style="font-weight: bold; text-align:right">
462,794
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/japan-population/">
125,691,242
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
13
</td>
<td>
3,991
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,835
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
14
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/argentina/">
Argentina
</a>
</td>
<td style="font-weight: bold; text-align:right">
9,426,171
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
129,145
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
<span style="color:grey; font-style: italic;">
9,223,351
</span>
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+3,668
</td>
<td style="text-align:right;font-weight:bold;">
73,675
</td>
<td style="font-weight: bold; text-align:right">
393
</td>
<td style="font-weight: bold; text-align:right">
204,751
</td>
<td style="font-weight: bold; text-align:right">
2,805
</td>
<td style="font-weight: bold; text-align:right">
35,716,069
</td>
<td style="font-weight: bold; text-align:right">
775,808
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/argentina-population/">
46,037,228
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
5
</td>
<td>
356
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,600
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
15
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/australia/">
Australia
</a>
</td>
<td style="font-weight: bold; text-align:right">
8,683,848
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+30,830
</td>
<td style="font-weight: bold; text-align:right;">
10,570
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+55
</td>
<td style="font-weight: bold; text-align:right">
8,278,603
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
394,675
</td>
<td style="font-weight: bold; text-align:right">
144
</td>
<td style="font-weight: bold; text-align:right">
332,712
</td>
<td style="font-weight: bold; text-align:right">
405
</td>
<td style="font-weight: bold; text-align:right">
75,046,362
</td>
<td style="font-weight: bold; text-align:right">
2,875,318
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/australia-population/">
26,100,194
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
3
</td>
<td>
2,469
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
1,181
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
15,122
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
16
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/netherlands/">
Netherlands
</a>
</td>
<td style="font-weight: bold; text-align:right">
8,267,718
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
22,417
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
<span style="color:grey; font-style: italic;">
8,088,398
</span>
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
156,903
</td>
<td style="font-weight: bold; text-align:right">
60
</td>
<td style="font-weight: bold; text-align:right">
480,352
</td>
<td style="font-weight: bold; text-align:right">
1,302
</td>
<td style="font-weight: bold; text-align:right">
21,107,399
</td>
<td style="font-weight: bold; text-align:right">
1,226,334
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/netherlands-population/">
17,211,781
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
768
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
9,116
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
17
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/iran/">
Iran
</a>
</td>
<td style="font-weight: bold; text-align:right">
7,265,251
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
141,464
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
7,066,475
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
57,312
</td>
<td style="font-weight: bold; text-align:right">
413
</td>
<td style="font-weight: bold; text-align:right">
84,309
</td>
<td style="font-weight: bold; text-align:right">
1,642
</td>
<td style="font-weight: bold; text-align:right">
52,690,831
</td>
<td style="font-weight: bold; text-align:right">
611,445
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/iran-population/">
86,174,268
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
12
</td>
<td>
609
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
665
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
18
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/mexico/">
Mexico
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,373,876
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+34,885
</td>
<td style="font-weight: bold; text-align:right;">
326,335
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+74
</td>
<td style="font-weight: bold; text-align:right">
5,435,342
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+19,748
</td>
<td style="text-align:right;font-weight:bold;">
612,199
</td>
<td style="font-weight: bold; text-align:right">
4,798
</td>
<td style="font-weight: bold; text-align:right">
48,404
</td>
<td style="font-weight: bold; text-align:right">
2,478
</td>
<td style="font-weight: bold; text-align:right">
17,084,916
</td>
<td style="font-weight: bold; text-align:right">
129,744
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/mexico-population/">
131,681,236
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
21
</td>
<td>
404
</td>
<td>
8
</td>
<td style="font-weight: bold; text-align:right">
265
</td>
<td style="font-weight: bold; text-align:right">
0.6
</td>
<td style="font-weight: bold; text-align:right">
4,649
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
19
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/colombia/">
Colombia
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,198,848
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
140,202
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
6,008,044
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
50,602
</td>
<td style="font-weight: bold; text-align:right">
342
</td>
<td style="font-weight: bold; text-align:right">
119,247
</td>
<td style="font-weight: bold; text-align:right">
2,697
</td>
<td style="font-weight: bold; text-align:right">
35,662,857
</td>
<td style="font-weight: bold; text-align:right">
686,045
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/colombia-population/">
51,983,287
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
8
</td>
<td>
371
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
973
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
20
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/indonesia/">
Indonesia
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,123,753
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
156,827
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
5,942,436
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
24,490
</td>
<td style="font-weight: bold; text-align:right">
2,771
</td>
<td style="font-weight: bold; text-align:right">
21,918
</td>
<td style="font-weight: bold; text-align:right">
561
</td>
<td style="font-weight: bold; text-align:right">
101,907,052
</td>
<td style="font-weight: bold; text-align:right">
364,746
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/indonesia-population/">
279,392,080
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
46
</td>
<td>
1,782
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
88
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
21
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/poland/">
Poland
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,027,974
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
116,468
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
5,335,742
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
575,764
</td>
<td style="font-weight: bold; text-align:right">
408
</td>
<td style="font-weight: bold; text-align:right">
159,628
</td>
<td style="font-weight: bold; text-align:right">
3,084
</td>
<td style="font-weight: bold; text-align:right">
36,537,808
</td>
<td style="font-weight: bold; text-align:right">
967,568
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/poland-population/">
37,762,538
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
6
</td>
<td>
324
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
15,247
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
22
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/portugal/">
Portugal
</a>
</td>
<td style="font-weight: bold; text-align:right">
5,273,845
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
24,369
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
<span style="color:grey; font-style: italic;">
4,997,384
</span>
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+17,840
</td>
<td style="text-align:right;font-weight:bold;">
252,092
</td>
<td style="font-weight: bold; text-align:right">
61
</td>
<td style="font-weight: bold; text-align:right">
520,287
</td>
<td style="font-weight: bold; text-align:right">
2,404
</td>
<td style="font-weight: bold; text-align:right">
43,527,258
</td>
<td style="font-weight: bold; text-align:right">
4,294,148
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/portugal-population/">
10,136,412
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
416
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
24,870
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
23
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/ukraine/">
Ukraine
</a>
</td>
<td style="font-weight: bold; text-align:right">
5,019,125
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
108,671
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
<span style="color:grey; font-style: italic;">
4,907,770
</span>
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+149
</td>
<td style="text-align:right;font-weight:bold;">
2,684
</td>
<td style="font-weight: bold; text-align:right">
177
</td>
<td style="font-weight: bold; text-align:right">
116,181
</td>
<td style="font-weight: bold; text-align:right">
2,515
</td>
<td style="font-weight: bold; text-align:right">
19,521,252
</td>
<td style="font-weight: bold; text-align:right">
451,870
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/ukraine-population/">
43,200,993
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
9
</td>
<td>
398
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
62
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
24
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/north-korea/">
DPRK
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,770,400
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+500
</td>
<td style="font-weight: bold; text-align:right;">
74
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
4,769,210
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+700
</td>
<td style="text-align:right;font-weight:bold;">
1,116
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
183,420
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/north-korea-population/">
26,008,008
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
5
</td>
<td>
351,460
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
19
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
43
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
25
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/malaysia/">
Malaysia
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,608,768
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
35,836
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
4,534,019
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
38,913
</td>
<td style="font-weight: bold; text-align:right">
53
</td>
<td style="font-weight: bold; text-align:right">
138,787
</td>
<td style="font-weight: bold; text-align:right">
1,079
</td>
<td style="font-weight: bold; text-align:right">
61,607,295
</td>
<td style="font-weight: bold; text-align:right">
1,855,228
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/malaysia-population/">
33,207,396
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
7
</td>
<td>
927
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,172
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
26
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/austria/">
Austria
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,574,722
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
18,916
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
4,436,588
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
119,218
</td>
<td style="font-weight: bold; text-align:right">
71
</td>
<td style="font-weight: bold; text-align:right">
502,129
</td>
<td style="font-weight: bold; text-align:right">
2,076
</td>
<td style="font-weight: bold; text-align:right">
191,905,533
</td>
<td style="font-weight: bold; text-align:right">
21,063,859
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/austria-population/">
9,110,654
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
482
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
13,086
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
27
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/thailand/">
Thailand
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,554,976
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,795
</td>
<td style="font-weight: bold; text-align:right;">
30,961
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+23
</td>
<td style="font-weight: bold; text-align:right">
4,499,975
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1,920
</td>
<td style="text-align:right;font-weight:bold;">
24,040
</td>
<td style="font-weight: bold; text-align:right">
1,496
</td>
<td style="font-weight: bold; text-align:right">
64,927
</td>
<td style="font-weight: bold; text-align:right">
441
</td>
<td style="font-weight: bold; text-align:right">
17,270,775
</td>
<td style="font-weight: bold; text-align:right">
246,179
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/thailand-population/">
70,155,276
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
15
</td>
<td>
2,266
</td>
<td>
4
</td>
<td style="font-weight: bold; text-align:right">
26
</td>
<td style="font-weight: bold; text-align:right">
0.3
</td>
<td style="font-weight: bold; text-align:right">
343
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
28
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/israel/">
Israel
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,489,396
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
11,101
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
4,399,889
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
78,406
</td>
<td style="font-weight: bold; text-align:right">
310
</td>
<td style="font-weight: bold; text-align:right">
481,385
</td>
<td style="font-weight: bold; text-align:right">
1,190
</td>
<td style="font-weight: bold; text-align:right">
41,373,364
</td>
<td style="font-weight: bold; text-align:right">
4,436,346
</td>
<td style="font-weight: bold; text-align:right">
9,326,000
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
2
</td>
<td>
840
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
8,407
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
29
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/belgium/">
Belgium
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,320,107
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
32,015
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
<span style="color:grey; font-style: italic;">
4,148,925
</span>
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+3,500
</td>
<td style="text-align:right;font-weight:bold;">
139,167
</td>
<td style="font-weight: bold; text-align:right">
74
</td>
<td style="font-weight: bold; text-align:right">
369,494
</td>
<td style="font-weight: bold; text-align:right">
2,738
</td>
<td style="font-weight: bold; text-align:right">
34,708,412
</td>
<td style="font-weight: bold; text-align:right">
2,968,574
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/belgium-population/">
11,691,948
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
365
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
11,903
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
30
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/taiwan/">
Taiwan
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,189,929
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
7,917
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
<span style="color:grey; font-style: italic;">
3,525,388
</span>
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
656,624
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
175,280
</td>
<td style="font-weight: bold; text-align:right">
331
</td>
<td style="font-weight: bold; text-align:right">
21,858,576
</td>
<td style="font-weight: bold; text-align:right">
914,423
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/taiwan-population/">
23,904,219
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
6
</td>
<td>
3,019
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
27,469
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
31
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/chile/">
Chile
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,113,288
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
58,955
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
<span style="color:grey; font-style: italic;">
3,775,065
</span>
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
279,268
</td>
<td style="font-weight: bold; text-align:right">
190
</td>
<td style="font-weight: bold; text-align:right">
211,490
</td>
<td style="font-weight: bold; text-align:right">
3,031
</td>
<td style="font-weight: bold; text-align:right">
41,226,395
</td>
<td style="font-weight: bold; text-align:right">
2,119,704
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/chile-population/">
19,449,130
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
5
</td>
<td>
330
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
14,359
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
32
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/south-africa/">
South Africa
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,999,345
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
101,915
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
3,889,998
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
7,432
</td>
<td style="font-weight: bold; text-align:right">
192
</td>
<td style="font-weight: bold; text-align:right">
65,751
</td>
<td style="font-weight: bold; text-align:right">
1,676
</td>
<td style="font-weight: bold; text-align:right">
25,858,208
</td>
<td style="font-weight: bold; text-align:right">
425,118
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/south-africa-population/">
60,825,910
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
15
</td>
<td>
597
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
122
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
33
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/canada/">
Canada
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,992,960
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
42,278
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
3,570,058
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
380,624
</td>
<td style="font-weight: bold; text-align:right">
195
</td>
<td style="font-weight: bold; text-align:right">
103,947
</td>
<td style="font-weight: bold; text-align:right">
1,101
</td>
<td style="font-weight: bold; text-align:right">
62,586,673
</td>
<td style="font-weight: bold; text-align:right">
1,629,286
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/canada-population/">
38,413,557
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
10
</td>
<td>
909
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
9,909
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
34
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/czech-republic/">
Czechia
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,947,772
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
40,343
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
3,896,636
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
10,793
</td>
<td style="font-weight: bold; text-align:right">
11
</td>
<td style="font-weight: bold; text-align:right">
367,259
</td>
<td style="font-weight: bold; text-align:right">
3,753
</td>
<td style="font-weight: bold; text-align:right">
55,608,407
</td>
<td style="font-weight: bold; text-align:right">
5,173,221
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/czech-republic-population/">
10,749,282
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
266
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,004
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
35
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/switzerland/">
Switzerland
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,843,522
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
14,008
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
<span style="color:grey; font-style: italic;">
3,671,804
</span>
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+4,101
</td>
<td style="text-align:right;font-weight:bold;">
157,710
</td>
<td style="font-weight: bold; text-align:right">
60
</td>
<td style="font-weight: bold; text-align:right">
437,608
</td>
<td style="font-weight: bold; text-align:right">
1,595
</td>
<td style="font-weight: bold; text-align:right">
21,598,881
</td>
<td style="font-weight: bold; text-align:right">
2,459,160
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/switzerland-population/">
8,783,033
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
627
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
17,956
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
36
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/greece/">
Greece
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,843,142
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
30,476
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
3,614,441
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
198,225
</td>
<td style="font-weight: bold; text-align:right">
103
</td>
<td style="font-weight: bold; text-align:right">
372,404
</td>
<td style="font-weight: bold; text-align:right">
2,953
</td>
<td style="font-weight: bold; text-align:right">
86,634,526
</td>
<td style="font-weight: bold; text-align:right">
8,394,971
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/greece-population/">
10,319,812
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
339
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
19,208
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
37
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/philippines/">
Philippines
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,725,382
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
60,641
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
3,648,497
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
16,244
</td>
<td style="font-weight: bold; text-align:right">
534
</td>
<td style="font-weight: bold; text-align:right">
33,103
</td>
<td style="font-weight: bold; text-align:right">
539
</td>
<td style="font-weight: bold; text-align:right">
31,081,194
</td>
<td style="font-weight: bold; text-align:right">
276,178
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/philippines-population/">
112,540,376
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
30
</td>
<td>
1,856
</td>
<td>
4
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
144
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
38
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/peru/">
Peru
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,703,751
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
213,731
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
<span style="color:grey; font-style: italic;">
3,416,065
</span>
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+4,688
</td>
<td style="text-align:right;font-weight:bold;">
73,955
</td>
<td style="font-weight: bold; text-align:right">
171
</td>
<td style="font-weight: bold; text-align:right">
109,243
</td>
<td style="font-weight: bold; text-align:right">
6,304
</td>
<td style="font-weight: bold; text-align:right">
31,998,554
</td>
<td style="font-weight: bold; text-align:right">
943,805
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/peru-population/">
33,903,781
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
9
</td>
<td>
159
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,181
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
39
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/denmark/">
Denmark
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,038,292
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
6,543
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
<span style="color:grey; font-style: italic;">
3,008,051
</span>
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
23,698
</td>
<td style="font-weight: bold; text-align:right">
14
</td>
<td style="font-weight: bold; text-align:right">
520,828
</td>
<td style="font-weight: bold; text-align:right">
1,122
</td>
<td style="font-weight: bold; text-align:right">
127,815,844
</td>
<td style="font-weight: bold; text-align:right">
21,910,357
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/denmark-population/">
5,833,581
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
892
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,062
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
40
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/romania/">
Romania
</a>
</td>
<td style="font-weight: bold; text-align:right">
2,953,944
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
65,802
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
<span style="color:grey; font-style: italic;">
2,853,659
</span>
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
34,483
</td>
<td style="font-weight: bold; text-align:right">
99
</td>
<td style="font-weight: bold; text-align:right">
155,655
</td>
<td style="font-weight: bold; text-align:right">
3,467
</td>
<td style="font-weight: bold; text-align:right">
23,694,574
</td>
<td style="font-weight: bold; text-align:right">
1,248,563
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/romania-population/">
18,977,479
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
6
</td>
<td>
288
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,817
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
41
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/sweden/">
Sweden
</a>
</td>
<td style="font-weight: bold; text-align:right">
2,528,166
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
19,170
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
<span style="color:grey; font-style: italic;">
2,492,906
</span>
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
16,090
</td>
<td style="font-weight: bold; text-align:right">
16
</td>
<td style="font-weight: bold; text-align:right">
247,204
</td>
<td style="font-weight: bold; text-align:right">
1,874
</td>
<td style="font-weight: bold; text-align:right">
18,709,369
</td>
<td style="font-weight: bold; text-align:right">
1,829,405
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/sweden-population/">
10,227,026
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
4
</td>
<td>
533
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,573
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
42
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/iraq/">
Iraq
</a>
</td>
<td style="font-weight: bold; text-align:right">
2,396,707
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
25,261
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
2,335,448
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
35,998
</td>
<td style="font-weight: bold; text-align:right">
30
</td>
<td style="font-weight: bold; text-align:right">
56,991
</td>
<td style="font-weight: bold; text-align:right">
601
</td>
<td style="font-weight: bold; text-align:right">
18,912,241
</td>
<td style="font-weight: bold; text-align:right">
449,716
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/iraq-population/">
42,053,775
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
18
</td>
<td>
1,665
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
856
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
43
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/serbia/">
Serbia
</a>
</td>
<td style="font-weight: bold; text-align:right">
2,049,388
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
16,162
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
2,009,887
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
23,339
</td>
<td style="font-weight: bold; text-align:right">
9
</td>
<td style="font-weight: bold; text-align:right">
236,486
</td>
<td style="font-weight: bold; text-align:right">
1,865
</td>
<td style="font-weight: bold; text-align:right">
10,016,279
</td>
<td style="font-weight: bold; text-align:right">
1,155,813
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/serbia-population/">
8,666,000
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
4
</td>
<td>
536
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,693
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
44
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bangladesh/">
Bangladesh
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,993,382
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
29,223
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,919,166
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
44,993
</td>
<td style="font-weight: bold; text-align:right">
1,228
</td>
<td style="font-weight: bold; text-align:right">
11,864
</td>
<td style="font-weight: bold; text-align:right">
174
</td>
<td style="font-weight: bold; text-align:right">
14,475,361
</td>
<td style="font-weight: bold; text-align:right">
86,153
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bangladesh-population/">
168,018,411
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
84
</td>
<td>
5,750
</td>
<td>
12
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
268
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
45
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/hungary/">
Hungary
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,940,824
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
46,696
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,878,221
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
15,907
</td>
<td style="font-weight: bold; text-align:right">
16
</td>
<td style="font-weight: bold; text-align:right">
201,946
</td>
<td style="font-weight: bold; text-align:right">
4,859
</td>
<td style="font-weight: bold; text-align:right">
11,394,556
</td>
<td style="font-weight: bold; text-align:right">
1,185,624
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/hungary-population/">
9,610,602
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
5
</td>
<td>
206
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,655
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
46
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/slovakia/">
Slovakia
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,803,688
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
20,168
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
<span style="color:grey; font-style: italic;">
1,775,849
</span>
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
7,671
</td>
<td style="font-weight: bold; text-align:right">
16
</td>
<td style="font-weight: bold; text-align:right">
330,043
</td>
<td style="font-weight: bold; text-align:right">
3,690
</td>
<td style="font-weight: bold; text-align:right">
7,195,329
</td>
<td style="font-weight: bold; text-align:right">
1,316,619
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/slovakia-population/">
5,465,006
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
271
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,404
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
47
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/jordan/">
Jordan
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,700,526
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
14,068
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,685,354
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,104
</td>
<td style="font-weight: bold; text-align:right">
124
</td>
<td style="font-weight: bold; text-align:right">
163,376
</td>
<td style="font-weight: bold; text-align:right">
1,352
</td>
<td style="font-weight: bold; text-align:right">
16,894,012
</td>
<td style="font-weight: bold; text-align:right">
1,623,075
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/jordan-population/">
10,408,648
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
6
</td>
<td>
740
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
106
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
48
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/georgia/">
Georgia
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,662,299
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
16,844
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,637,293
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
8,162
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
418,332
</td>
<td style="font-weight: bold; text-align:right">
4,239
</td>
<td style="font-weight: bold; text-align:right">
16,920,079
</td>
<td style="font-weight: bold; text-align:right">
4,258,084
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/georgia-population/">
3,973,637
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
2
</td>
<td>
236
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,054
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
49
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/ireland/">
Ireland
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,628,745
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
7,537
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
<span style="color:grey; font-style: italic;">
1,566,323
</span>
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
54,885
</td>
<td style="font-weight: bold; text-align:right">
43
</td>
<td style="font-weight: bold; text-align:right">
322,543
</td>
<td style="font-weight: bold; text-align:right">
1,493
</td>
<td style="font-weight: bold; text-align:right">
12,473,972
</td>
<td style="font-weight: bold; text-align:right">
2,470,241
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/ireland-population/">
5,049,698
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
670
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
10,869
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
50
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/singapore/">
Singapore
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,569,420
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,444
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,453,373
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
114,603
</td>
<td style="font-weight: bold; text-align:right">
20
</td>
<td style="font-weight: bold; text-align:right">
264,048
</td>
<td style="font-weight: bold; text-align:right">
243
</td>
<td style="font-weight: bold; text-align:right">
24,107,231
</td>
<td style="font-weight: bold; text-align:right">
4,055,935
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/singapore-population/">
5,943,693
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
4
</td>
<td>
4,116
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
19,281
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
51
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/pakistan/">
Pakistan
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,544,131
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
30,426
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,503,023
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
10,682
</td>
<td style="font-weight: bold; text-align:right">
175
</td>
<td style="font-weight: bold; text-align:right">
6,725
</td>
<td style="font-weight: bold; text-align:right">
133
</td>
<td style="font-weight: bold; text-align:right">
29,219,351
</td>
<td style="font-weight: bold; text-align:right">
127,265
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/pakistan-population/">
229,594,826
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
149
</td>
<td>
7,546
</td>
<td>
8
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
47
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
52
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/new-zealand/">
New Zealand
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,473,955
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,697
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,401,411
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
70,847
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
294,667
</td>
<td style="font-weight: bold; text-align:right">
339
</td>
<td style="font-weight: bold; text-align:right">
7,327,116
</td>
<td style="font-weight: bold; text-align:right">
1,464,808
</td>
<td style="font-weight: bold; text-align:right">
5,002,100
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
3
</td>
<td>
2,948
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
14,163
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
53
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/norway/">
Norway
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,452,176
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
3,504
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
<span style="color:grey; font-style: italic;">
1,442,320
</span>
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
6,352
</td>
<td style="font-weight: bold; text-align:right">
20
</td>
<td style="font-weight: bold; text-align:right">
263,685
</td>
<td style="font-weight: bold; text-align:right">
636
</td>
<td style="font-weight: bold; text-align:right">
11,002,430
</td>
<td style="font-weight: bold; text-align:right">
1,997,809
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/norway-population/">
5,507,247
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
4
</td>
<td>
1,572
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,153
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
54
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/kazakhstan/">
Kazakhstan
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,312,294
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
13,663
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,293,793
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
4,838
</td>
<td style="font-weight: bold; text-align:right">
24
</td>
<td style="font-weight: bold; text-align:right">
68,233
</td>
<td style="font-weight: bold; text-align:right">
710
</td>
<td style="font-weight: bold; text-align:right">
11,575,012
</td>
<td style="font-weight: bold; text-align:right">
601,849
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/kazakhstan-population/">
19,232,410
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
15
</td>
<td>
1,408
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
252
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
55
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/china-hong-kong-sar/">
Hong Kong
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,283,514
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
9,427
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
<span style="color:grey; font-style: italic;">
1,206,801
</span>
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
67,286
</td>
<td style="font-weight: bold; text-align:right">
8
</td>
<td style="font-weight: bold; text-align:right">
168,432
</td>
<td style="font-weight: bold; text-align:right">
1,237
</td>
<td style="font-weight: bold; text-align:right">
50,415,048
</td>
<td style="font-weight: bold; text-align:right">
6,615,815
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/china-hong-kong-sar-population/">
7,620,384
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
6
</td>
<td>
808
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
8,830
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
56
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/morocco/">
Morocco
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,246,835
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
16,167
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,213,862
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
16,806
</td>
<td style="font-weight: bold; text-align:right">
293
</td>
<td style="font-weight: bold; text-align:right">
32,987
</td>
<td style="font-weight: bold; text-align:right">
428
</td>
<td style="font-weight: bold; text-align:right">
12,080,887
</td>
<td style="font-weight: bold; text-align:right">
319,615
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/morocco-population/">
37,798,233
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
30
</td>
<td>
2,338
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
445
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
57
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bulgaria/">
Bulgaria
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,182,764
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
37,283
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,134,552
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
10,929
</td>
<td style="font-weight: bold; text-align:right">
38
</td>
<td style="font-weight: bold; text-align:right">
172,858
</td>
<td style="font-weight: bold; text-align:right">
5,449
</td>
<td style="font-weight: bold; text-align:right">
10,167,636
</td>
<td style="font-weight: bold; text-align:right">
1,485,977
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bulgaria-population/">
6,842,392
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
6
</td>
<td>
184
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,597
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
58
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/finland/">
Finland
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,171,034
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
5,012
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
<span style="color:grey; font-style: italic;">
1,120,330
</span>
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
45,692
</td>
<td style="font-weight: bold; text-align:right">
21
</td>
<td style="font-weight: bold; text-align:right">
210,687
</td>
<td style="font-weight: bold; text-align:right">
902
</td>
<td style="font-weight: bold; text-align:right">
11,129,795
</td>
<td style="font-weight: bold; text-align:right">
2,002,417
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/finland-population/">
5,558,180
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
5
</td>
<td>
1,109
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
8,221
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
59
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/croatia/">
Croatia
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,163,824
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
16,135
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,138,102
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
9,587
</td>
<td style="font-weight: bold; text-align:right">
17
</td>
<td style="font-weight: bold; text-align:right">
287,085
</td>
<td style="font-weight: bold; text-align:right">
3,980
</td>
<td style="font-weight: bold; text-align:right">
4,986,129
</td>
<td style="font-weight: bold; text-align:right">
1,229,949
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/croatia-population/">
4,053,933
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
251
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,365
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
60
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/lebanon/">
Lebanon
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,125,720
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
10,477
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,087,587
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
27,656
</td>
<td style="font-weight: bold; text-align:right">
186
</td>
<td style="font-weight: bold; text-align:right">
166,441
</td>
<td style="font-weight: bold; text-align:right">
1,549
</td>
<td style="font-weight: bold; text-align:right">
4,795,578
</td>
<td style="font-weight: bold; text-align:right">
709,042
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/lebanon-population/">
6,763,462
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
6
</td>
<td>
646
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,089
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
61
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cuba/">
Cuba
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,106,602
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
8,529
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,097,788
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
285
</td>
<td style="font-weight: bold; text-align:right">
23
</td>
<td style="font-weight: bold; text-align:right">
97,820
</td>
<td style="font-weight: bold; text-align:right">
754
</td>
<td style="font-weight: bold; text-align:right">
13,852,049
</td>
<td style="font-weight: bold; text-align:right">
1,224,480
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cuba-population/">
11,312,593
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
10
</td>
<td>
1,326
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
25
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
62
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/tunisia/">
Tunisia
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,087,030
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
28,823
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
29
</td>
<td style="font-weight: bold; text-align:right">
90,064
</td>
<td style="font-weight: bold; text-align:right">
2,388
</td>
<td style="font-weight: bold; text-align:right">
4,743,992
</td>
<td style="font-weight: bold; text-align:right">
393,055
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/tunisia-population/">
12,069,534
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
11
</td>
<td>
419
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,606
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
63
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/lithuania/">
Lithuania
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,073,128
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
9,188
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,038,300
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
25,640
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
405,673
</td>
<td style="font-weight: bold; text-align:right">
3,473
</td>
<td style="font-weight: bold; text-align:right">
10,024,830
</td>
<td style="font-weight: bold; text-align:right">
3,789,667
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/lithuania-population/">
2,645,306
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
288
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
9,693
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
64
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/slovenia/">
Slovenia
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,056,179
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
6,665
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,032,092
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
17,422
</td>
<td style="font-weight: bold; text-align:right">
12
</td>
<td style="font-weight: bold; text-align:right">
507,896
</td>
<td style="font-weight: bold; text-align:right">
3,205
</td>
<td style="font-weight: bold; text-align:right">
2,691,730
</td>
<td style="font-weight: bold; text-align:right">
1,294,401
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/slovenia-population/">
2,079,518
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
312
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
8,378
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
65
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/belarus/">
Belarus
</a>
</td>
<td style="font-weight: bold; text-align:right">
994,037
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
7,118
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
985,592
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,327
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
105,267
</td>
<td style="font-weight: bold; text-align:right">
754
</td>
<td style="font-weight: bold; text-align:right">
13,646,641
</td>
<td style="font-weight: bold; text-align:right">
1,445,157
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/belarus-population/">
9,443,019
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
9
</td>
<td>
1,327
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
141
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
66
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/nepal/">
Nepal
</a>
</td>
<td style="font-weight: bold; text-align:right">
980,981
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
11,952
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
967,858
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,171
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
32,483
</td>
<td style="font-weight: bold; text-align:right">
396
</td>
<td style="font-weight: bold; text-align:right">
5,780,700
</td>
<td style="font-weight: bold; text-align:right">
191,413
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/nepal-population/">
30,200,104
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
31
</td>
<td>
2,527
</td>
<td>
5
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
39
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
67
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/guatemala/">
Guatemala
</a>
</td>
<td style="font-weight: bold; text-align:right">
970,621
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
18,768
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
881,742
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
70,111
</td>
<td style="font-weight: bold; text-align:right">
5
</td>
<td style="font-weight: bold; text-align:right">
52,218
</td>
<td style="font-weight: bold; text-align:right">
1,010
</td>
<td style="font-weight: bold; text-align:right">
5,106,651
</td>
<td style="font-weight: bold; text-align:right">
274,729
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/guatemala-population/">
18,587,983
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
19
</td>
<td>
990
</td>
<td>
4
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,772
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
68
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/united-arab-emirates/">
UAE
</a>
</td>
<td style="font-weight: bold; text-align:right">
969,097
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
2,325
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
949,218
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
17,554
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
95,639
</td>
<td style="font-weight: bold; text-align:right">
229
</td>
<td style="font-weight: bold; text-align:right">
173,273,059
</td>
<td style="font-weight: bold; text-align:right">
17,100,110
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/united-arab-emirates-population/">
10,132,862
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
10
</td>
<td>
4,358
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,732
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
69
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/uruguay/">
Uruguay
</a>
</td>
<td style="font-weight: bold; text-align:right">
965,370
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
7,373
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
955,371
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
2,626
</td>
<td style="font-weight: bold; text-align:right">
18
</td>
<td style="font-weight: bold; text-align:right">
275,966
</td>
<td style="font-weight: bold; text-align:right">
2,108
</td>
<td style="font-weight: bold; text-align:right">
6,114,822
</td>
<td style="font-weight: bold; text-align:right">
1,748,015
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/uruguay-population/">
3,498,152
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
4
</td>
<td>
474
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
751
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
70
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bolivia/">
Bolivia
</a>
</td>
<td style="font-weight: bold; text-align:right">
956,629
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
21,977
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
897,166
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
37,486
</td>
<td style="font-weight: bold; text-align:right">
220
</td>
<td style="font-weight: bold; text-align:right">
79,745
</td>
<td style="font-weight: bold; text-align:right">
1,832
</td>
<td style="font-weight: bold; text-align:right">
2,705,422
</td>
<td style="font-weight: bold; text-align:right">
225,525
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bolivia-population/">
11,996,097
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
13
</td>
<td>
546
</td>
<td>
4
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,125
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
71
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/panama/">
Panama
</a>
</td>
<td style="font-weight: bold; text-align:right">
932,710
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
8,384
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
910,900
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
13,426
</td>
<td style="font-weight: bold; text-align:right">
16
</td>
<td style="font-weight: bold; text-align:right">
209,476
</td>
<td style="font-weight: bold; text-align:right">
1,883
</td>
<td style="font-weight: bold; text-align:right">
6,637,861
</td>
<td style="font-weight: bold; text-align:right">
1,490,789
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/panama-population/">
4,452,581
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
5
</td>
<td>
531
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,015
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
72
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/mongolia/">
Mongolia
</a>
</td>
<td style="font-weight: bold; text-align:right">
930,418
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
2,179
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
192
</td>
<td style="font-weight: bold; text-align:right">
274,832
</td>
<td style="font-weight: bold; text-align:right">
644
</td>
<td style="font-weight: bold; text-align:right">
4,030,048
</td>
<td style="font-weight: bold; text-align:right">
1,190,418
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/mongolia-population/">
3,385,407
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
4
</td>
<td>
1,554
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
181,657
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
73
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/ecuador/">
Ecuador
</a>
</td>
<td style="font-weight: bold; text-align:right">
927,700
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
35,769
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
<span style="color:grey; font-style: italic;">
872,779
</span>
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1,808
</td>
<td style="text-align:right;font-weight:bold;">
19,152
</td>
<td style="font-weight: bold; text-align:right">
759
</td>
<td style="font-weight: bold; text-align:right">
51,010
</td>
<td style="font-weight: bold; text-align:right">
1,967
</td>
<td style="font-weight: bold; text-align:right">
2,470,170
</td>
<td style="font-weight: bold; text-align:right">
135,823
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/ecuador-population/">
18,186,639
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
20
</td>
<td>
508
</td>
<td>
7
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,053
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
74
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/costa-rica/">
Costa Rica
</a>
</td>
<td style="font-weight: bold; text-align:right">
904,934
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
8,525
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
860,711
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
35,698
</td>
<td style="font-weight: bold; text-align:right">
52
</td>
<td style="font-weight: bold; text-align:right">
174,412
</td>
<td style="font-weight: bold; text-align:right">
1,643
</td>
<td style="font-weight: bold; text-align:right">
4,659,757
</td>
<td style="font-weight: bold; text-align:right">
898,094
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/costa-rica-population/">
5,188,498
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
6
</td>
<td>
609
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6,880
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
75
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/latvia/">
Latvia
</a>
</td>
<td style="font-weight: bold; text-align:right">
844,142
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
5,873
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
829,937
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
8,332
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
457,796
</td>
<td style="font-weight: bold; text-align:right">
3,185
</td>
<td style="font-weight: bold; text-align:right">
7,358,973
</td>
<td style="font-weight: bold; text-align:right">
3,990,926
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/latvia-population/">
1,843,926
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
314
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,519
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
76
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saudi-arabia/">
Saudi Arabia
</a>
</td>
<td style="font-weight: bold; text-align:right">
801,935
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
9,228
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
786,711
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
5,996
</td>
<td style="font-weight: bold; text-align:right">
169
</td>
<td style="font-weight: bold; text-align:right">
22,329
</td>
<td style="font-weight: bold; text-align:right">
257
</td>
<td style="font-weight: bold; text-align:right">
43,628,872
</td>
<td style="font-weight: bold; text-align:right">
1,214,817
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saudi-arabia-population/">
35,913,946
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
45
</td>
<td>
3,892
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
167
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
77
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/azerbaijan/">
Azerbaijan
</a>
</td>
<td style="font-weight: bold; text-align:right">
793,918
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
9,719
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
783,453
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
746
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
76,896
</td>
<td style="font-weight: bold; text-align:right">
941
</td>
<td style="font-weight: bold; text-align:right">
6,972,527
</td>
<td style="font-weight: bold; text-align:right">
675,332
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/azerbaijan-population/">
10,324,599
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
13
</td>
<td>
1,062
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
72
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
78
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/paraguay/">
Paraguay
</a>
</td>
<td style="font-weight: bold; text-align:right">
673,829
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
19,036
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
639,340
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
15,453
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
92,175
</td>
<td style="font-weight: bold; text-align:right">
2,604
</td>
<td style="font-weight: bold; text-align:right">
2,646,163
</td>
<td style="font-weight: bold; text-align:right">
361,977
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/paraguay-population/">
7,310,305
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
11
</td>
<td>
384
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,114
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
79
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/sri-lanka/">
Sri Lanka
</a>
</td>
<td style="font-weight: bold; text-align:right">
664,364
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
16,526
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
647,445
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
393
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
30,764
</td>
<td style="font-weight: bold; text-align:right">
765
</td>
<td style="font-weight: bold; text-align:right">
6,486,117
</td>
<td style="font-weight: bold; text-align:right">
300,347
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/sri-lanka-population/">
21,595,391
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
33
</td>
<td>
1,307
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
18
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
80
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/kuwait/">
Kuwait
</a>
</td>
<td style="font-weight: bold; text-align:right">
648,216
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
2,556
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
641,752
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
3,908
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
147,365
</td>
<td style="font-weight: bold; text-align:right">
581
</td>
<td style="font-weight: bold; text-align:right">
8,242,720
</td>
<td style="font-weight: bold; text-align:right">
1,873,891
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/kuwait-population/">
4,398,718
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
7
</td>
<td>
1,721
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
888
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
81
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bahrain/">
Bahrain
</a>
</td>
<td style="font-weight: bold; text-align:right">
645,399
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,503
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
633,093
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
10,803
</td>
<td style="font-weight: bold; text-align:right">
18
</td>
<td style="font-weight: bold; text-align:right">
354,309
</td>
<td style="font-weight: bold; text-align:right">
825
</td>
<td style="font-weight: bold; text-align:right">
10,099,771
</td>
<td style="font-weight: bold; text-align:right">
5,544,533
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bahrain-population/">
1,821,573
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
3
</td>
<td>
1,212
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
5,931
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
82
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/dominican-republic/">
Dominican Republic
</a>
</td>
<td style="font-weight: bold; text-align:right">
621,047
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
4,383
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
611,734
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
4,930
</td>
<td style="font-weight: bold; text-align:right">
27
</td>
<td style="font-weight: bold; text-align:right">
56,109
</td>
<td style="font-weight: bold; text-align:right">
396
</td>
<td style="font-weight: bold; text-align:right">
3,552,150
</td>
<td style="font-weight: bold; text-align:right">
320,921
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/dominican-republic-population/">
11,068,627
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
18
</td>
<td>
2,525
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
445
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
83
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/myanmar/">
Myanmar
</a>
</td>
<td style="font-weight: bold; text-align:right">
613,784
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
19,434
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
592,700
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,650
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
11,129
</td>
<td style="font-weight: bold; text-align:right">
352
</td>
<td style="font-weight: bold; text-align:right">
8,442,405
</td>
<td style="font-weight: bold; text-align:right">
153,081
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/myanmar-population/">
55,149,826
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
90
</td>
<td>
2,838
</td>
<td>
7
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
30
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
84
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/state-of-palestine/">
Palestine
</a>
</td>
<td style="font-weight: bold; text-align:right">
586,058
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
5,358
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
578,920
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,780
</td>
<td style="font-weight: bold; text-align:right">
17
</td>
<td style="font-weight: bold; text-align:right">
109,707
</td>
<td style="font-weight: bold; text-align:right">
1,003
</td>
<td style="font-weight: bold; text-align:right">
3,078,533
</td>
<td style="font-weight: bold; text-align:right">
576,286
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/state-of-palestine-population/">
5,342,019
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
9
</td>
<td>
997
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
333
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
85
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/estonia/">
Estonia
</a>
</td>
<td style="font-weight: bold; text-align:right">
585,143
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
2,608
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
523,576
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
58,959
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
440,505
</td>
<td style="font-weight: bold; text-align:right">
1,963
</td>
<td style="font-weight: bold; text-align:right">
3,424,969
</td>
<td style="font-weight: bold; text-align:right">
2,578,373
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/estonia-population/">
1,328,345
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
509
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
44,385
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
86
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cyprus/">
Cyprus
</a>
</td>
<td style="font-weight: bold; text-align:right">
530,510
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,079
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
124,370
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
405,061
</td>
<td style="font-weight: bold; text-align:right">
60
</td>
<td style="font-weight: bold; text-align:right">
433,002
</td>
<td style="font-weight: bold; text-align:right">
881
</td>
<td style="font-weight: bold; text-align:right">
9,477,138
</td>
<td style="font-weight: bold; text-align:right">
7,735,233
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cyprus-population/">
1,225,191
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
2
</td>
<td>
1,135
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
330,610
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
87
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/venezuela/">
Venezuela
</a>
</td>
<td style="font-weight: bold; text-align:right">
528,785
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
5,742
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
520,353
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
2,690
</td>
<td style="font-weight: bold; text-align:right">
36
</td>
<td style="font-weight: bold; text-align:right">
18,703
</td>
<td style="font-weight: bold; text-align:right">
203
</td>
<td style="font-weight: bold; text-align:right">
3,359,014
</td>
<td style="font-weight: bold; text-align:right">
118,808
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/venezuela-population/">
28,272,539
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
53
</td>
<td>
4,924
</td>
<td>
8
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
95
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
88
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/moldova/">
Moldova
</a>
</td>
<td style="font-weight: bold; text-align:right">
520,321
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
11,567
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
504,142
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
4,612
</td>
<td style="font-weight: bold; text-align:right">
49
</td>
<td style="font-weight: bold; text-align:right">
129,596
</td>
<td style="font-weight: bold; text-align:right">
2,881
</td>
<td style="font-weight: bold; text-align:right">
3,216,305
</td>
<td style="font-weight: bold; text-align:right">
801,083
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/moldova-population/">
4,014,948
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
8
</td>
<td>
347
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,149
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
89
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/egypt/">
Egypt
</a>
</td>
<td style="font-weight: bold; text-align:right">
515,645
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
24,613
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
442,182
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
48,850
</td>
<td style="font-weight: bold; text-align:right">
122
</td>
<td style="font-weight: bold; text-align:right">
4,853
</td>
<td style="font-weight: bold; text-align:right">
232
</td>
<td style="font-weight: bold; text-align:right">
3,693,367
</td>
<td style="font-weight: bold; text-align:right">
34,761
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/egypt-population/">
106,250,559
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
206
</td>
<td>
4,317
</td>
<td>
29
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
460
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
90
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/libya/">
Libya
</a>
</td>
<td style="font-weight: bold; text-align:right">
502,289
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
6,430
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
490,973
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
4,886
</td>
<td style="font-weight: bold; text-align:right">
101
</td>
<td style="font-weight: bold; text-align:right">
71,137
</td>
<td style="font-weight: bold; text-align:right">
911
</td>
<td style="font-weight: bold; text-align:right">
2,477,219
</td>
<td style="font-weight: bold; text-align:right">
350,837
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/libya-population/">
7,060,876
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
14
</td>
<td>
1,098
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
692
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
91
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/ethiopia/">
Ethiopia
</a>
</td>
<td style="font-weight: bold; text-align:right">
490,816
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
7,559
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
467,952
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
15,305
</td>
<td style="font-weight: bold; text-align:right">
41
</td>
<td style="font-weight: bold; text-align:right">
4,065
</td>
<td style="font-weight: bold; text-align:right">
63
</td>
<td style="font-weight: bold; text-align:right">
5,096,984
</td>
<td style="font-weight: bold; text-align:right">
42,214
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/ethiopia-population/">
120,741,154
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
246
</td>
<td>
15,973
</td>
<td>
24
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
127
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
92
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/honduras/">
Honduras
</a>
</td>
<td style="font-weight: bold; text-align:right">
430,672
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
10,912
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
132,498
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
287,262
</td>
<td style="font-weight: bold; text-align:right">
105
</td>
<td style="font-weight: bold; text-align:right">
42,123
</td>
<td style="font-weight: bold; text-align:right">
1,067
</td>
<td style="font-weight: bold; text-align:right">
1,415,120
</td>
<td style="font-weight: bold; text-align:right">
138,408
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/honduras-population/">
10,224,234
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
24
</td>
<td>
937
</td>
<td>
7
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
28,096
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
93
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/reunion/">
Réunion
</a>
</td>
<td style="font-weight: bold; text-align:right">
425,638
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
819
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
418,572
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
6,247
</td>
<td style="font-weight: bold; text-align:right">
10
</td>
<td style="font-weight: bold; text-align:right">
468,622
</td>
<td style="font-weight: bold; text-align:right">
902
</td>
<td style="font-weight: bold; text-align:right">
1,603,660
</td>
<td style="font-weight: bold; text-align:right">
1,765,611
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/reunion-population/">
908,275
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
2
</td>
<td>
1,109
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6,878
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
94
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/armenia/">
Armenia
</a>
</td>
<td style="font-weight: bold; text-align:right">
423,771
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
8,629
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
412,661
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
2,481
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
142,469
</td>
<td style="font-weight: bold; text-align:right">
2,901
</td>
<td style="font-weight: bold; text-align:right">
3,109,931
</td>
<td style="font-weight: bold; text-align:right">
1,045,538
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/armenia-population/">
2,974,478
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
7
</td>
<td>
345
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
834
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
95
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/qatar/">
Qatar
</a>
</td>
<td style="font-weight: bold; text-align:right">
391,945
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
680
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
385,818
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
5,447
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
139,591
</td>
<td style="font-weight: bold; text-align:right">
242
</td>
<td style="font-weight: bold; text-align:right">
3,693,147
</td>
<td style="font-weight: bold; text-align:right">
1,315,315
</td>
<td style="font-weight: bold; text-align:right">
2,807,805
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
7
</td>
<td>
4,129
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,940
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
96
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/oman/">
Oman
</a>
</td>
<td style="font-weight: bold; text-align:right">
391,641
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
4,260
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
384,669
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
2,712
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
72,930
</td>
<td style="font-weight: bold; text-align:right">
793
</td>
<td style="font-weight: bold; text-align:right">
25,000,000
</td>
<td style="font-weight: bold; text-align:right">
4,655,385
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/oman-population/">
5,370,125
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
14
</td>
<td>
1,261
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
505
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
97
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bosnia-and-herzegovina/">
Bosnia and Herzegovina
</a>
</td>
<td style="font-weight: bold; text-align:right">
380,498
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
15,814
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
117,458
</td>
<td style="font-weight: bold; text-align:right">
4,882
</td>
<td style="font-weight: bold; text-align:right">
1,800,193
</td>
<td style="font-weight: bold; text-align:right">
555,711
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bosnia-and-herzegovina-population/">
3,239,440
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
9
</td>
<td>
205
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
53,239
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
98
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/kenya/">
Kenya
</a>
</td>
<td style="font-weight: bold; text-align:right">
336,445
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
5,668
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
329,122
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,655
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
5,989
</td>
<td style="font-weight: bold; text-align:right">
101
</td>
<td style="font-weight: bold; text-align:right">
3,790,310
</td>
<td style="font-weight: bold; text-align:right">
67,474
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/kenya-population/">
56,174,415
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
167
</td>
<td>
9,911
</td>
<td>
15
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
29
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
99
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/zambia/">
Zambia
</a>
</td>
<td style="font-weight: bold; text-align:right">
327,102
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
4,008
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
322,093
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,001
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
16,836
</td>
<td style="font-weight: bold; text-align:right">
206
</td>
<td style="font-weight: bold; text-align:right">
3,576,701
</td>
<td style="font-weight: bold; text-align:right">
184,095
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/zambia-population/">
19,428,522
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
59
</td>
<td>
4,847
</td>
<td>
5
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
52
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
100
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/botswana/">
Botswana
</a>
</td>
<td style="font-weight: bold; text-align:right">
324,841
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
2,760
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
321,024
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,057
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
132,698
</td>
<td style="font-weight: bold; text-align:right">
1,127
</td>
<td style="font-weight: bold; text-align:right">
2,026,898
</td>
<td style="font-weight: bold; text-align:right">
827,993
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/botswana-population/">
2,447,965
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
8
</td>
<td>
887
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
432
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
101
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/macedonia/">
North Macedonia
</a>
</td>
<td style="font-weight: bold; text-align:right">
317,634
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
9,337
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
305,988
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
2,309
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
152,474
</td>
<td style="font-weight: bold; text-align:right">
4,482
</td>
<td style="font-weight: bold; text-align:right">
2,081,293
</td>
<td style="font-weight: bold; text-align:right">
999,084
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/macedonia-population/">
2,083,201
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
7
</td>
<td>
223
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,108
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
102
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/albania/">
Albania
</a>
</td>
<td style="font-weight: bold; text-align:right">
290,954
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
3,517
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
280,374
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
7,063
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
101,327
</td>
<td style="font-weight: bold; text-align:right">
1,225
</td>
<td style="font-weight: bold; text-align:right">
1,866,752
</td>
<td style="font-weight: bold; text-align:right">
650,114
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/albania-population/">
2,871,424
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
10
</td>
<td>
816
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,460
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
103
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/algeria/">
Algeria
</a>
</td>
<td style="font-weight: bold; text-align:right">
266,356
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
6,875
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
178,747
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
80,734
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
5,859
</td>
<td style="font-weight: bold; text-align:right">
151
</td>
<td style="font-weight: bold; text-align:right">
230,861
</td>
<td style="font-weight: bold; text-align:right">
5,079
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/algeria-population/">
45,457,663
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
171
</td>
<td>
6,612
</td>
<td>
197
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,776
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
104
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/luxembourg/">
Luxembourg
</a>
</td>
<td style="font-weight: bold; text-align:right">
263,167
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,094
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
251,249
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
10,824
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
406,975
</td>
<td style="font-weight: bold; text-align:right">
1,692
</td>
<td style="font-weight: bold; text-align:right">
4,307,055
</td>
<td style="font-weight: bold; text-align:right">
6,660,659
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/luxembourg-population/">
646,641
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
591
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
16,739
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
105
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/nigeria/">
Nigeria
</a>
</td>
<td style="font-weight: bold; text-align:right">
258,934
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
3,144
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
250,472
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
5,318
</td>
<td style="font-weight: bold; text-align:right">
11
</td>
<td style="font-weight: bold; text-align:right">
1,196
</td>
<td style="font-weight: bold; text-align:right">
15
</td>
<td style="font-weight: bold; text-align:right">
5,349,305
</td>
<td style="font-weight: bold; text-align:right">
24,707
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/nigeria-population/">
216,505,530
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
836
</td>
<td>
68,863
</td>
<td>
40
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
25
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
106
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/zimbabwe/">
Zimbabwe
</a>
</td>
<td style="font-weight: bold; text-align:right">
256,047
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
5,566
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
249,834
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
647
</td>
<td style="font-weight: bold; text-align:right">
12
</td>
<td style="font-weight: bold; text-align:right">
16,733
</td>
<td style="font-weight: bold; text-align:right">
364
</td>
<td style="font-weight: bold; text-align:right">
2,421,838
</td>
<td style="font-weight: bold; text-align:right">
158,270
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/zimbabwe-population/">
15,301,924
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
60
</td>
<td>
2,749
</td>
<td>
6
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
42
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
107
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/montenegro/">
Montenegro
</a>
</td>
<td style="font-weight: bold; text-align:right">
245,369
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
2,730
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
239,369
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
3,270
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
390,574
</td>
<td style="font-weight: bold; text-align:right">
4,346
</td>
<td style="font-weight: bold; text-align:right">
2,513,663
</td>
<td style="font-weight: bold; text-align:right">
4,001,202
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/montenegro-population/">
628,227
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
230
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
5,205
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
108
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/uzbekistan/">
Uzbekistan
</a>
</td>
<td style="font-weight: bold; text-align:right">
241,953
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,637
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
238,891
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,425
</td>
<td style="font-weight: bold; text-align:right">
23
</td>
<td style="font-weight: bold; text-align:right">
7,023
</td>
<td style="font-weight: bold; text-align:right">
48
</td>
<td style="font-weight: bold; text-align:right">
1,377,915
</td>
<td style="font-weight: bold; text-align:right">
39,994
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/uzbekistan-population/">
34,453,391
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
142
</td>
<td>
21,047
</td>
<td>
25
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
41
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
109
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/mozambique/">
Mozambique
</a>
</td>
<td style="font-weight: bold; text-align:right">
228,887
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
2,215
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
226,271
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
401
</td>
<td style="font-weight: bold; text-align:right">
11
</td>
<td style="font-weight: bold; text-align:right">
6,929
</td>
<td style="font-weight: bold; text-align:right">
67
</td>
<td style="font-weight: bold; text-align:right">
1,358,293
</td>
<td style="font-weight: bold; text-align:right">
41,120
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/mozambique-population/">
33,032,036
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
144
</td>
<td>
14,913
</td>
<td>
24
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
12
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
110
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/laos/">
Laos
</a>
</td>
<td style="font-weight: bold; text-align:right">
210,433
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
757
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
28,096
</td>
<td style="font-weight: bold; text-align:right">
101
</td>
<td style="font-weight: bold; text-align:right">
1,233,207
</td>
<td style="font-weight: bold; text-align:right">
164,652
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/laos-population/">
7,489,772
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
36
</td>
<td>
9,894
</td>
<td>
6
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
26,972
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
111
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/martinique/">
Martinique
</a>
</td>
<td style="font-weight: bold; text-align:right">
207,969
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
987
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
104
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
206,878
</td>
<td style="font-weight: bold; text-align:right">
8
</td>
<td style="font-weight: bold; text-align:right">
555,065
</td>
<td style="font-weight: bold; text-align:right">
2,634
</td>
<td style="font-weight: bold; text-align:right">
828,928
</td>
<td style="font-weight: bold; text-align:right">
2,212,392
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/martinique-population/">
374,675
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
2
</td>
<td>
380
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
552,153
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
112
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/kyrgyzstan/">
Kyrgyzstan
</a>
</td>
<td style="font-weight: bold; text-align:right">
201,329
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
2,991
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
196,406
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,932
</td>
<td style="font-weight: bold; text-align:right">
131
</td>
<td style="font-weight: bold; text-align:right">
29,859
</td>
<td style="font-weight: bold; text-align:right">
444
</td>
<td style="font-weight: bold; text-align:right">
1,907,195
</td>
<td style="font-weight: bold; text-align:right">
282,858
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/kyrgyzstan-population/">
6,742,594
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
33
</td>
<td>
2,254
</td>
<td>
4
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
287
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
113
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/iceland/">
Iceland
</a>
</td>
<td style="font-weight: bold; text-align:right">
198,721
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
179
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
574,777
</td>
<td style="font-weight: bold; text-align:right">
518
</td>
<td style="font-weight: bold; text-align:right">
1,977,641
</td>
<td style="font-weight: bold; text-align:right">
5,720,090
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/iceland-population/">
345,736
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
1,931
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
355,349
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
114
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/maldives/">
Maldives
</a>
</td>
<td style="font-weight: bold; text-align:right">
183,491
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
307
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
163,687
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
19,497
</td>
<td style="font-weight: bold; text-align:right">
25
</td>
<td style="font-weight: bold; text-align:right">
327,744
</td>
<td style="font-weight: bold; text-align:right">
548
</td>
<td style="font-weight: bold; text-align:right">
2,213,831
</td>
<td style="font-weight: bold; text-align:right">
3,954,251
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/maldives-population/">
559,861
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
3
</td>
<td>
1,824
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
34,825
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
115
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/afghanistan/">
Afghanistan
</a>
</td>
<td style="font-weight: bold; text-align:right">
183,358
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
7,728
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
165,318
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
10,312
</td>
<td style="font-weight: bold; text-align:right">
1,124
</td>
<td style="font-weight: bold; text-align:right">
4,504
</td>
<td style="font-weight: bold; text-align:right">
190
</td>
<td style="font-weight: bold; text-align:right">
1,012,596
</td>
<td style="font-weight: bold; text-align:right">
24,875
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/afghanistan-population/">
40,707,111
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
222
</td>
<td>
5,267
</td>
<td>
40
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
253
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
116
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/el-salvador/">
El Salvador
</a>
</td>
<td style="font-weight: bold; text-align:right">
180,970
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
4,167
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
165,895
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
10,908
</td>
<td style="font-weight: bold; text-align:right">
8
</td>
<td style="font-weight: bold; text-align:right">
27,618
</td>
<td style="font-weight: bold; text-align:right">
636
</td>
<td style="font-weight: bold; text-align:right">
2,284,873
</td>
<td style="font-weight: bold; text-align:right">
348,697
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/el-salvador-population/">
6,552,601
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
36
</td>
<td>
1,572
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,665
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
117
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/brunei-darussalam/">
Brunei
</a>
</td>
<td style="font-weight: bold; text-align:right">
179,759
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
225
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
164,116
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
15,418
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
403,067
</td>
<td style="font-weight: bold; text-align:right">
505
</td>
<td style="font-weight: bold; text-align:right">
717,784
</td>
<td style="font-weight: bold; text-align:right">
1,609,461
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/brunei-darussalam-population/">
445,978
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
2
</td>
<td>
1,982
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
34,571
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
118
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/guadeloupe/">
Guadeloupe
</a>
</td>
<td style="font-weight: bold; text-align:right">
175,348
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
958
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
2,250
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
172,140
</td>
<td style="font-weight: bold; text-align:right">
19
</td>
<td style="font-weight: bold; text-align:right">
438,082
</td>
<td style="font-weight: bold; text-align:right">
2,393
</td>
<td style="font-weight: bold; text-align:right">
938,039
</td>
<td style="font-weight: bold; text-align:right">
2,343,557
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/guadeloupe-population/">
400,263
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
2
</td>
<td>
418
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
430,067
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
119
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/namibia/">
Namibia
</a>
</td>
<td style="font-weight: bold; text-align:right">
169,253
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
4,065
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
164,813
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
375
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
64,250
</td>
<td style="font-weight: bold; text-align:right">
1,543
</td>
<td style="font-weight: bold; text-align:right">
1,062,663
</td>
<td style="font-weight: bold; text-align:right">
403,400
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/namibia-population/">
2,634,269
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
16
</td>
<td>
648
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
142
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
120
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/trinidad-and-tobago/">
Trinidad and Tobago
</a>
</td>
<td style="font-weight: bold; text-align:right">
168,808
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
4,034
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
158,668
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
6,106
</td>
<td style="font-weight: bold; text-align:right">
18
</td>
<td style="font-weight: bold; text-align:right">
119,834
</td>
<td style="font-weight: bold; text-align:right">
2,864
</td>
<td style="font-weight: bold; text-align:right">
781,653
</td>
<td style="font-weight: bold; text-align:right">
554,883
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/trinidad-and-tobago-population/">
1,408,681
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
8
</td>
<td>
349
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,335
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
121
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/uganda/">
Uganda
</a>
</td>
<td style="font-weight: bold; text-align:right">
168,569
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
3,627
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
100,420
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
64,522
</td>
<td style="font-weight: bold; text-align:right">
10
</td>
<td style="font-weight: bold; text-align:right">
3,463
</td>
<td style="font-weight: bold; text-align:right">
75
</td>
<td style="font-weight: bold; text-align:right">
2,975,238
</td>
<td style="font-weight: bold; text-align:right">
61,129
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/uganda-population/">
48,671,743
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
289
</td>
<td>
13,419
</td>
<td>
16
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,326
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
122
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/ghana/">
Ghana
</a>
</td>
<td style="font-weight: bold; text-align:right">
167,215
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,456
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
165,153
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
606
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
5,163
</td>
<td style="font-weight: bold; text-align:right">
45
</td>
<td style="font-weight: bold; text-align:right">
2,479,277
</td>
<td style="font-weight: bold; text-align:right">
76,547
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/ghana-population/">
32,388,938
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
194
</td>
<td>
22,245
</td>
<td>
13
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
19
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
123
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/jamaica/">
Jamaica
</a>
</td>
<td style="font-weight: bold; text-align:right">
144,349
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
3,164
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
92,028
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
49,157
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
48,319
</td>
<td style="font-weight: bold; text-align:right">
1,059
</td>
<td style="font-weight: bold; text-align:right">
1,138,135
</td>
<td style="font-weight: bold; text-align:right">
380,980
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/jamaica-population/">
2,987,387
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
21
</td>
<td>
944
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
16,455
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
124
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cambodia/">
Cambodia
</a>
</td>
<td style="font-weight: bold; text-align:right">
136,407
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
3,056
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
133,267
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
84
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
7,936
</td>
<td style="font-weight: bold; text-align:right">
178
</td>
<td style="font-weight: bold; text-align:right">
3,002,402
</td>
<td style="font-weight: bold; text-align:right">
174,676
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cambodia-population/">
17,188,440
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
126
</td>
<td>
5,624
</td>
<td>
6
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
5
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
125
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/rwanda/">
Rwanda
</a>
</td>
<td style="font-weight: bold; text-align:right">
131,808
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,462
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
45,522
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
84,824
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
9,689
</td>
<td style="font-weight: bold; text-align:right">
107
</td>
<td style="font-weight: bold; text-align:right">
5,608,157
</td>
<td style="font-weight: bold; text-align:right">
412,254
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/rwanda-population/">
13,603,629
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
103
</td>
<td>
9,305
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6,235
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
126
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cameroon/">
Cameroon
</a>
</td>
<td style="font-weight: bold; text-align:right">
120,068
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,931
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
117,791
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
346
</td>
<td style="font-weight: bold; text-align:right">
13
</td>
<td style="font-weight: bold; text-align:right">
4,306
</td>
<td style="font-weight: bold; text-align:right">
69
</td>
<td style="font-weight: bold; text-align:right">
1,751,774
</td>
<td style="font-weight: bold; text-align:right">
62,818
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cameroon-population/">
27,886,520
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
232
</td>
<td>
14,441
</td>
<td>
16
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
12
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
127
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/malta/">
Malta
</a>
</td>
<td style="font-weight: bold; text-align:right">
110,191
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
768
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
101,772
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
7,651
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
248,218
</td>
<td style="font-weight: bold; text-align:right">
1,730
</td>
<td style="font-weight: bold; text-align:right">
1,994,827
</td>
<td style="font-weight: bold; text-align:right">
4,493,582
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/malta-population/">
443,928
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
4
</td>
<td>
578
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
17,235
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
128
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/angola/">
Angola
</a>
</td>
<td style="font-weight: bold; text-align:right">
101,600
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,900
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
97,149
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
2,551
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,908
</td>
<td style="font-weight: bold; text-align:right">
54
</td>
<td style="font-weight: bold; text-align:right">
1,499,795
</td>
<td style="font-weight: bold; text-align:right">
42,924
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/angola-population/">
34,940,471
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
344
</td>
<td>
18,390
</td>
<td>
23
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
73
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
129
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/democratic-republic-of-the-congo/">
DRC
</a>
</td>
<td style="font-weight: bold; text-align:right">
91,737
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,376
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
50,930
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
39,431
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
965
</td>
<td style="font-weight: bold; text-align:right">
14
</td>
<td style="font-weight: bold; text-align:right">
846,704
</td>
<td style="font-weight: bold; text-align:right">
8,905
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/democratic-republic-of-the-congo-population/">
95,085,590
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
1,037
</td>
<td>
69,103
</td>
<td>
112
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
415
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
130
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/french-guiana/">
French Guiana
</a>
</td>
<td style="font-weight: bold; text-align:right">
89,779
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
402
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
11,254
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
78,123
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
285,567
</td>
<td style="font-weight: bold; text-align:right">
1,279
</td>
<td style="font-weight: bold; text-align:right">
644,972
</td>
<td style="font-weight: bold; text-align:right">
2,051,509
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/french-guiana-population/">
314,389
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
4
</td>
<td>
782
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
248,492
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
131
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/barbados/">
Barbados
</a>
</td>
<td style="font-weight: bold; text-align:right">
87,002
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
479
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
84,706
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,817
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
301,997
</td>
<td style="font-weight: bold; text-align:right">
1,663
</td>
<td style="font-weight: bold; text-align:right">
714,126
</td>
<td style="font-weight: bold; text-align:right">
2,478,838
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/barbados-population/">
288,089
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
3
</td>
<td>
601
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6,307
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
132
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/malawi/">
Malawi
</a>
</td>
<td style="font-weight: bold; text-align:right">
86,823
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
2,651
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
83,506
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
666
</td>
<td style="font-weight: bold; text-align:right">
67
</td>
<td style="font-weight: bold; text-align:right">
4,312
</td>
<td style="font-weight: bold; text-align:right">
132
</td>
<td style="font-weight: bold; text-align:right">
596,340
</td>
<td style="font-weight: bold; text-align:right">
29,620
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/malawi-population/">
20,132,870
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
232
</td>
<td>
7,594
</td>
<td>
34
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
33
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
133
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/senegal/">
Senegal
</a>
</td>
<td style="font-weight: bold; text-align:right">
86,631
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,968
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
84,535
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
128
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,911
</td>
<td style="font-weight: bold; text-align:right">
112
</td>
<td style="font-weight: bold; text-align:right">
1,123,868
</td>
<td style="font-weight: bold; text-align:right">
63,714
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/senegal-population/">
17,639,141
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
204
</td>
<td>
8,963
</td>
<td>
16
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
134
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/channel-islands/">
Channel Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
85,848
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
181
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
82,813
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
2,854
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
484,705
</td>
<td style="font-weight: bold; text-align:right">
1,022
</td>
<td style="font-weight: bold; text-align:right">
1,252,808
</td>
<td style="font-weight: bold; text-align:right">
7,073,456
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/channel-islands-population/">
177,114
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
979
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
16,114
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
135
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cote-d-ivoire/">
Ivory Coast
</a>
</td>
<td style="font-weight: bold; text-align:right">
84,347
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
806
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
83,259
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
282
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,045
</td>
<td style="font-weight: bold; text-align:right">
29
</td>
<td style="font-weight: bold; text-align:right">
1,563,566
</td>
<td style="font-weight: bold; text-align:right">
56,439
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cote-d-ivoire-population/">
27,703,542
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
328
</td>
<td>
34,372
</td>
<td>
18
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
10
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
136
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/suriname/">
Suriname
</a>
</td>
<td style="font-weight: bold; text-align:right">
80,919
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,377
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
49,590
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
29,952
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
135,476
</td>
<td style="font-weight: bold; text-align:right">
2,305
</td>
<td style="font-weight: bold; text-align:right">
238,251
</td>
<td style="font-weight: bold; text-align:right">
398,883
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/suriname-population/">
597,296
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
7
</td>
<td>
434
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
50,146
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
137
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/french-polynesia/">
French Polynesia
</a>
</td>
<td style="font-weight: bold; text-align:right">
73,858
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
649
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
<td style="font-weight: bold; text-align:right">
259,879
</td>
<td style="font-weight: bold; text-align:right">
2,284
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/french-polynesia-population/">
284,202
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
4
</td>
<td>
438
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
139,721
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
138
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/swaziland/">
Eswatini
</a>
</td>
<td style="font-weight: bold; text-align:right">
73,230
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,417
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
71,731
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
82
</td>
<td style="font-weight: bold; text-align:right">
11
</td>
<td style="font-weight: bold; text-align:right">
61,822
</td>
<td style="font-weight: bold; text-align:right">
1,196
</td>
<td style="font-weight: bold; text-align:right">
1,038,765
</td>
<td style="font-weight: bold; text-align:right">
876,938
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/swaziland-population/">
1,184,537
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
16
</td>
<td>
836
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
69
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
139
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/guyana/">
Guyana
</a>
</td>
<td style="font-weight: bold; text-align:right">
68,627
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,264
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
66,447
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
916
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
86,405
</td>
<td style="font-weight: bold; text-align:right">
1,591
</td>
<td style="font-weight: bold; text-align:right">
668,394
</td>
<td style="font-weight: bold; text-align:right">
841,539
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/guyana-population/">
794,252
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
12
</td>
<td>
628
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,153
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
140
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/fiji/">
Fiji
</a>
</td>
<td style="font-weight: bold; text-align:right">
66,713
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
869
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
64,320
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,524
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
73,341
</td>
<td style="font-weight: bold; text-align:right">
955
</td>
<td style="font-weight: bold; text-align:right">
587,132
</td>
<td style="font-weight: bold; text-align:right">
645,467
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/fiji-population/">
909,624
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
14
</td>
<td>
1,047
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,675
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
141
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/new-caledonia/">
New Caledonia
</a>
</td>
<td style="font-weight: bold; text-align:right">
66,596
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
314
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
64,483
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,799
</td>
<td style="font-weight: bold; text-align:right">
9
</td>
<td style="font-weight: bold; text-align:right">
228,800
</td>
<td style="font-weight: bold; text-align:right">
1,079
</td>
<td style="font-weight: bold; text-align:right">
98,964
</td>
<td style="font-weight: bold; text-align:right">
340,004
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/new-caledonia-population/">
291,067
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
4
</td>
<td>
927
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6,181
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
142
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/madagascar/">
Madagascar
</a>
</td>
<td style="font-weight: bold; text-align:right">
66,098
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,403
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
63,895
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
800
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
2,269
</td>
<td style="font-weight: bold; text-align:right">
48
</td>
<td style="font-weight: bold; text-align:right">
478,036
</td>
<td style="font-weight: bold; text-align:right">
16,407
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/madagascar-population/">
29,135,325
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
441
</td>
<td>
20,766
</td>
<td>
61
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
27
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
143
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/belize/">
Belize
</a>
</td>
<td style="font-weight: bold; text-align:right">
65,840
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
680
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
64,409
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
751
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
159,700
</td>
<td style="font-weight: bold; text-align:right">
1,649
</td>
<td style="font-weight: bold; text-align:right">
576,016
</td>
<td style="font-weight: bold; text-align:right">
1,397,168
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/belize-population/">
412,274
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
6
</td>
<td>
606
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,822
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
144
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/sudan/">
Sudan
</a>
</td>
<td style="font-weight: bold; text-align:right">
62,795
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
4,955
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,367
</td>
<td style="font-weight: bold; text-align:right">
108
</td>
<td style="font-weight: bold; text-align:right">
562,941
</td>
<td style="font-weight: bold; text-align:right">
12,257
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/sudan-population/">
45,926,466
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
731
</td>
<td>
9,269
</td>
<td>
82
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
381
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
145
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cabo-verde/">
Cabo Verde
</a>
</td>
<td style="font-weight: bold; text-align:right">
61,776
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
409
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
60,941
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
426
</td>
<td style="font-weight: bold; text-align:right">
23
</td>
<td style="font-weight: bold; text-align:right">
108,715
</td>
<td style="font-weight: bold; text-align:right">
720
</td>
<td style="font-weight: bold; text-align:right">
401,416
</td>
<td style="font-weight: bold; text-align:right">
706,421
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cabo-verde-population/">
568,239
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
9
</td>
<td>
1,389
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
750
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
146
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/mauritania/">
Mauritania
</a>
</td>
<td style="font-weight: bold; text-align:right">
61,640
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
986
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
58,986
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,668
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
12,586
</td>
<td style="font-weight: bold; text-align:right">
201
</td>
<td style="font-weight: bold; text-align:right">
887,638
</td>
<td style="font-weight: bold; text-align:right">
181,239
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/mauritania-population/">
4,897,620
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
79
</td>
<td>
4,967
</td>
<td>
6
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
341
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
147
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bhutan/">
Bhutan
</a>
</td>
<td style="font-weight: bold; text-align:right">
59,940
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
21
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
59,845
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
74
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
75,984
</td>
<td style="font-weight: bold; text-align:right">
27
</td>
<td style="font-weight: bold; text-align:right">
2,303,734
</td>
<td style="font-weight: bold; text-align:right">
2,920,381
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bhutan-population/">
788,847
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
13
</td>
<td>
37,564
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
94
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
148
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/syria/">
Syria
</a>
</td>
<td style="font-weight: bold; text-align:right">
55,966
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
3,150
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
52,778
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
38
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,048
</td>
<td style="font-weight: bold; text-align:right">
172
</td>
<td style="font-weight: bold; text-align:right">
146,269
</td>
<td style="font-weight: bold; text-align:right">
7,965
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/syria-population/">
18,363,203
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
328
</td>
<td>
5,830
</td>
<td>
126
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
149
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/gabon/">
Gabon
</a>
</td>
<td style="font-weight: bold; text-align:right">
48,157
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
305
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
47,391
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
461
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
20,648
</td>
<td style="font-weight: bold; text-align:right">
131
</td>
<td style="font-weight: bold; text-align:right">
1,604,748
</td>
<td style="font-weight: bold; text-align:right">
688,057
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/gabon-population/">
2,332,288
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
48
</td>
<td>
7,647
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
198
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
150
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/seychelles/">
Seychelles
</a>
</td>
<td style="font-weight: bold; text-align:right">
45,185
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
167
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
44,755
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
263
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
453,747
</td>
<td style="font-weight: bold; text-align:right">
1,677
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/seychelles-population/">
99,582
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
2
</td>
<td>
596
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,641
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
151
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/curacao/">
Curaçao
</a>
</td>
<td style="font-weight: bold; text-align:right">
44,782
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
280
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
44,339
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
163
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
270,661
</td>
<td style="font-weight: bold; text-align:right">
1,692
</td>
<td style="font-weight: bold; text-align:right">
496,693
</td>
<td style="font-weight: bold; text-align:right">
3,002,001
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/curacao-population/">
165,454
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
4
</td>
<td>
591
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
985
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
152
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/papua-new-guinea/">
Papua New Guinea
</a>
</td>
<td style="font-weight: bold; text-align:right">
44,758
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
662
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
43,982
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
114
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
<td style="font-weight: bold; text-align:right">
4,817
</td>
<td style="font-weight: bold; text-align:right">
71
</td>
<td style="font-weight: bold; text-align:right">
249,149
</td>
<td style="font-weight: bold; text-align:right">
26,816
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/papua-new-guinea-population/">
9,290,895
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
208
</td>
<td>
14,035
</td>
<td>
37
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
12
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
153
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/andorra/">
Andorra
</a>
</td>
<td style="font-weight: bold; text-align:right">
44,671
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
153
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
43,802
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
716
</td>
<td style="font-weight: bold; text-align:right">
14
</td>
<td style="font-weight: bold; text-align:right">
576,281
</td>
<td style="font-weight: bold; text-align:right">
1,974
</td>
<td style="font-weight: bold; text-align:right">
249,838
</td>
<td style="font-weight: bold; text-align:right">
3,223,051
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/andorra-population/">
77,516
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
507
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
9,237
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
154
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/burundi/">
Burundi
</a>
</td>
<td style="font-weight: bold; text-align:right">
43,060
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
38
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,415
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
345,742
</td>
<td style="font-weight: bold; text-align:right">
27,420
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/burundi-population/">
12,609,279
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
293
</td>
<td>
331,823
</td>
<td>
36
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,351
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
155
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/aruba/">
Aruba
</a>
</td>
<td style="font-weight: bold; text-align:right">
41,448
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
224
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
40,882
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
342
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
384,897
</td>
<td style="font-weight: bold; text-align:right">
2,080
</td>
<td style="font-weight: bold; text-align:right">
177,885
</td>
<td style="font-weight: bold; text-align:right">
1,651,886
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/aruba-population/">
107,686
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
3
</td>
<td>
481
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,176
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
156
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/mauritius/">
Mauritius
</a>
</td>
<td style="font-weight: bold; text-align:right">
38,737
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,008
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
36,856
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
873
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
30,357
</td>
<td style="font-weight: bold; text-align:right">
790
</td>
<td style="font-weight: bold; text-align:right">
358,675
</td>
<td style="font-weight: bold; text-align:right">
281,082
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/mauritius-population/">
1,276,049
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
33
</td>
<td>
1,266
</td>
<td>
4
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
684
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
157
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/mayotte/">
Mayotte
</a>
</td>
<td style="font-weight: bold; text-align:right">
37,958
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
187
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
2,964
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
34,807
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
132,641
</td>
<td style="font-weight: bold; text-align:right">
653
</td>
<td style="font-weight: bold; text-align:right">
176,919
</td>
<td style="font-weight: bold; text-align:right">
618,230
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/mayotte-population/">
286,170
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
8
</td>
<td>
1,530
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
121,630
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
158
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/togo/">
Togo
</a>
</td>
<td style="font-weight: bold; text-align:right">
37,718
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
275
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
37,164
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
279
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,349
</td>
<td style="font-weight: bold; text-align:right">
32
</td>
<td style="font-weight: bold; text-align:right">
760,061
</td>
<td style="font-weight: bold; text-align:right">
87,641
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/togo-population/">
8,672,391
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
230
</td>
<td>
31,536
</td>
<td>
11
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
32
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
159
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/tanzania/">
Tanzania
</a>
</td>
<td style="font-weight: bold; text-align:right">
37,510
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
841
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
<td style="font-weight: bold; text-align:right">
594
</td>
<td style="font-weight: bold; text-align:right">
13
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/tanzania-population/">
63,186,161
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
1,685
</td>
<td>
75,132
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
577
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
160
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/guinea/">
Guinea
</a>
</td>
<td style="font-weight: bold; text-align:right">
37,358
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
443
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
36,419
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
496
</td>
<td style="font-weight: bold; text-align:right">
8
</td>
<td style="font-weight: bold; text-align:right">
2,696
</td>
<td style="font-weight: bold; text-align:right">
32
</td>
<td style="font-weight: bold; text-align:right">
660,107
</td>
<td style="font-weight: bold; text-align:right">
47,642
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/guinea-population/">
13,855,517
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
371
</td>
<td>
31,277
</td>
<td>
21
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
36
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
161
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/isle-of-man/">
Isle of Man
</a>
</td>
<td style="font-weight: bold; text-align:right">
37,239
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
110
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
26,794
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
10,335
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
433,284
</td>
<td style="font-weight: bold; text-align:right">
1,280
</td>
<td style="font-weight: bold; text-align:right">
150,753
</td>
<td style="font-weight: bold; text-align:right">
1,754,043
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/isle-of-man-population/">
85,946
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
781
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
120,250
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
162
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bahamas/">
Bahamas
</a>
</td>
<td style="font-weight: bold; text-align:right">
36,354
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
822
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
34,842
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
690
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
90,688
</td>
<td style="font-weight: bold; text-align:right">
2,051
</td>
<td style="font-weight: bold; text-align:right">
241,422
</td>
<td style="font-weight: bold; text-align:right">
602,248
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bahamas-population/">
400,868
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
11
</td>
<td>
488
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,721
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
163
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/faeroe-islands/">
Faeroe Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
34,658
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
28
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
5
</td>
<td style="font-weight: bold; text-align:right">
703,859
</td>
<td style="font-weight: bold; text-align:right">
569
</td>
<td style="font-weight: bold; text-align:right">
778,000
</td>
<td style="font-weight: bold; text-align:right">
15,800,162
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/faeroe-islands-population/">
49,240
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
1
</td>
<td>
1,759
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
547,055
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
164
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/lesotho/">
Lesotho
</a>
</td>
<td style="font-weight: bold; text-align:right">
34,040
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
702
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
24,155
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
9,183
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
15,638
</td>
<td style="font-weight: bold; text-align:right">
323
</td>
<td style="font-weight: bold; text-align:right">
431,221
</td>
<td style="font-weight: bold; text-align:right">
198,107
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/lesotho-population/">
2,176,704
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
64
</td>
<td>
3,101
</td>
<td>
5
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,219
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
165
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/haiti/">
Haiti
</a>
</td>
<td style="font-weight: bold; text-align:right">
32,070
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
837
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
29,884
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,349
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,745
</td>
<td style="font-weight: bold; text-align:right">
72
</td>
<td style="font-weight: bold; text-align:right">
132,422
</td>
<td style="font-weight: bold; text-align:right">
11,333
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/haiti-population/">
11,684,564
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
364
</td>
<td>
13,960
</td>
<td>
88
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
115
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
166
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/mali/">
Mali
</a>
</td>
<td style="font-weight: bold; text-align:right">
31,196
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
737
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
30,367
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
92
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,455
</td>
<td style="font-weight: bold; text-align:right">
34
</td>
<td style="font-weight: bold; text-align:right">
707,472
</td>
<td style="font-weight: bold; text-align:right">
33,007
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/mali-population/">
21,434,224
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
687
</td>
<td>
29,083
</td>
<td>
30
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
167
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cayman-islands/">
Cayman Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
27,966
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
29
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
8,553
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
19,384
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
415,616
</td>
<td style="font-weight: bold; text-align:right">
431
</td>
<td style="font-weight: bold; text-align:right">
222,773
</td>
<td style="font-weight: bold; text-align:right">
3,310,739
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cayman-islands-population/">
67,288
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
2
</td>
<td>
2,320
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
288,075
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
168
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saint-lucia/">
Saint Lucia
</a>
</td>
<td style="font-weight: bold; text-align:right">
27,408
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
385
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
26,840
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
183
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
147,888
</td>
<td style="font-weight: bold; text-align:right">
2,077
</td>
<td style="font-weight: bold; text-align:right">
209,716
</td>
<td style="font-weight: bold; text-align:right">
1,131,582
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saint-lucia-population/">
185,330
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
7
</td>
<td>
481
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
987
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
169
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/benin/">
Benin
</a>
</td>
<td style="font-weight: bold; text-align:right">
27,216
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
163
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
25,506
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,547
</td>
<td style="font-weight: bold; text-align:right">
5
</td>
<td style="font-weight: bold; text-align:right">
2,132
</td>
<td style="font-weight: bold; text-align:right">
13
</td>
<td style="font-weight: bold; text-align:right">
604,310
</td>
<td style="font-weight: bold; text-align:right">
47,332
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/benin-population/">
12,767,443
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
469
</td>
<td>
78,328
</td>
<td>
21
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
121
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
170
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/somalia/">
Somalia
</a>
</td>
<td style="font-weight: bold; text-align:right">
26,900
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,350
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
13,182
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
12,368
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,602
</td>
<td style="font-weight: bold; text-align:right">
80
</td>
<td style="font-weight: bold; text-align:right">
400,466
</td>
<td style="font-weight: bold; text-align:right">
23,847
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/somalia-population/">
16,792,828
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
624
</td>
<td>
12,439
</td>
<td>
42
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
737
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
171
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/congo/">
Congo
</a>
</td>
<td style="font-weight: bold; text-align:right">
24,421
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
386
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
20,178
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
3,857
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,215
</td>
<td style="font-weight: bold; text-align:right">
67
</td>
<td style="font-weight: bold; text-align:right">
347,815
</td>
<td style="font-weight: bold; text-align:right">
60,034
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/congo-population/">
5,793,654
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
237
</td>
<td>
15,009
</td>
<td>
17
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
666
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
172
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/timor-leste/">
Timor-Leste
</a>
</td>
<td style="font-weight: bold; text-align:right">
22,975
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
133
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
22,829
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
13
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
16,777
</td>
<td style="font-weight: bold; text-align:right">
97
</td>
<td style="font-weight: bold; text-align:right">
271,206
</td>
<td style="font-weight: bold; text-align:right">
198,048
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/timor-leste-population/">
1,369,395
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
60
</td>
<td>
10,296
</td>
<td>
5
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
9
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
173
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/solomon-islands/">
Solomon Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
21,544
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
153
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
16,357
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
5,034
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
29,878
</td>
<td style="font-weight: bold; text-align:right">
212
</td>
<td style="font-weight: bold; text-align:right">
5,117
</td>
<td style="font-weight: bold; text-align:right">
7,097
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/solomon-islands-population/">
721,059
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
33
</td>
<td>
4,713
</td>
<td>
141
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6,981
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
174
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/burkina-faso/">
Burkina Faso
</a>
</td>
<td style="font-weight: bold; text-align:right">
20,853
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
382
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
20,439
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
32
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
945
</td>
<td style="font-weight: bold; text-align:right">
17
</td>
<td style="font-weight: bold; text-align:right">
248,995
</td>
<td style="font-weight: bold; text-align:right">
11,284
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/burkina-faso-population/">
22,066,182
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
1,058
</td>
<td>
57,765
</td>
<td>
89
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
175
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/gibraltar/">
Gibraltar
</a>
</td>
<td style="font-weight: bold; text-align:right">
19,862
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
105
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
16,579
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
3,178
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
589,884
</td>
<td style="font-weight: bold; text-align:right">
3,118
</td>
<td style="font-weight: bold; text-align:right">
534,283
</td>
<td style="font-weight: bold; text-align:right">
15,867,750
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/gibraltar-population/">
33,671
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
321
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
94,384
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
176
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/san-marino/">
San Marino
</a>
</td>
<td style="font-weight: bold; text-align:right">
18,977
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
116
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
18,267
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
594
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
556,902
</td>
<td style="font-weight: bold; text-align:right">
3,404
</td>
<td style="font-weight: bold; text-align:right">
152,231
</td>
<td style="font-weight: bold; text-align:right">
4,467,396
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/san-marino-population/">
34,076
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
294
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
17,432
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
177
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/grenada/">
Grenada
</a>
</td>
<td style="font-weight: bold; text-align:right">
18,592
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
233
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
18,178
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
181
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
163,689
</td>
<td style="font-weight: bold; text-align:right">
2,051
</td>
<td style="font-weight: bold; text-align:right">
172,268
</td>
<td style="font-weight: bold; text-align:right">
1,516,697
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/grenada-population/">
113,581
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
6
</td>
<td>
487
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,594
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
178
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/nicaragua/">
Nicaragua
</a>
</td>
<td style="font-weight: bold; text-align:right">
18,491
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
225
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
4,225
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
14,041
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,725
</td>
<td style="font-weight: bold; text-align:right">
33
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/nicaragua-population/">
6,784,471
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
367
</td>
<td>
30,153
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,070
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
179
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/liechtenstein/">
Liechtenstein
</a>
</td>
<td style="font-weight: bold; text-align:right">
18,299
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
85
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
17,958
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
256
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
477,158
</td>
<td style="font-weight: bold; text-align:right">
2,216
</td>
<td style="font-weight: bold; text-align:right">
102,174
</td>
<td style="font-weight: bold; text-align:right">
2,664,250
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/liechtenstein-population/">
38,350
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
451
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6,675
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
180
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/tajikistan/">
Tajikistan
</a>
</td>
<td style="font-weight: bold; text-align:right">
17,786
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
125
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
17,264
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
397
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,784
</td>
<td style="font-weight: bold; text-align:right">
13
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/tajikistan-population/">
9,972,283
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
561
</td>
<td>
79,778
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
40
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
181
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/south-sudan/">
South Sudan
</a>
</td>
<td style="font-weight: bold; text-align:right">
17,733
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
138
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
15,630
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,965
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
1,547
</td>
<td style="font-weight: bold; text-align:right">
12
</td>
<td style="font-weight: bold; text-align:right">
410,280
</td>
<td style="font-weight: bold; text-align:right">
35,801
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/south-sudan-population/">
11,460,002
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
646
</td>
<td>
83,043
</td>
<td>
28
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
171
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
182
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bermuda/">
Bermuda
</a>
</td>
<td style="font-weight: bold; text-align:right">
16,722
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
141
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
16,201
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
380
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
270,534
</td>
<td style="font-weight: bold; text-align:right">
2,281
</td>
<td style="font-weight: bold; text-align:right">
958,749
</td>
<td style="font-weight: bold; text-align:right">
15,510,977
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bermuda-population/">
61,811
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
4
</td>
<td>
438
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6,148
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
183
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/equatorial-guinea/">
Equatorial Guinea
</a>
</td>
<td style="font-weight: bold; text-align:right">
16,504
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
183
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
15,862
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
459
</td>
<td style="font-weight: bold; text-align:right">
5
</td>
<td style="font-weight: bold; text-align:right">
11,028
</td>
<td style="font-weight: bold; text-align:right">
122
</td>
<td style="font-weight: bold; text-align:right">
346,685
</td>
<td style="font-weight: bold; text-align:right">
231,664
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/equatorial-guinea-population/">
1,496,500
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
91
</td>
<td>
8,178
</td>
<td>
4
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
307
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
184
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/djibouti/">
Djibouti
</a>
</td>
<td style="font-weight: bold; text-align:right">
15,690
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
189
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
15,427
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
74
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
15,425
</td>
<td style="font-weight: bold; text-align:right">
186
</td>
<td style="font-weight: bold; text-align:right">
305,941
</td>
<td style="font-weight: bold; text-align:right">
300,782
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/djibouti-population/">
1,017,152
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
65
</td>
<td>
5,382
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
73
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
185
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/samoa/">
Samoa
</a>
</td>
<td style="font-weight: bold; text-align:right">
15,134
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
29
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,605
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
13,500
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
75,260
</td>
<td style="font-weight: bold; text-align:right">
144
</td>
<td style="font-weight: bold; text-align:right">
168,260
</td>
<td style="font-weight: bold; text-align:right">
836,744
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/samoa-population/">
201,089
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
13
</td>
<td>
6,934
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
67,134
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
186
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/dominica/">
Dominica
</a>
</td>
<td style="font-weight: bold; text-align:right">
14,852
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
68
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
14,554
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
230
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
205,283
</td>
<td style="font-weight: bold; text-align:right">
940
</td>
<td style="font-weight: bold; text-align:right">
210,195
</td>
<td style="font-weight: bold; text-align:right">
2,905,292
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/dominica-population/">
72,349
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
5
</td>
<td>
1,064
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,179
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
187
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/central-african-republic/">
CAR
</a>
</td>
<td style="font-weight: bold; text-align:right">
14,712
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
113
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
6,859
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
7,740
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
2,942
</td>
<td style="font-weight: bold; text-align:right">
23
</td>
<td style="font-weight: bold; text-align:right">
81,294
</td>
<td style="font-weight: bold; text-align:right">
16,258
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/central-african-republic-population/">
5,000,148
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
340
</td>
<td>
44,249
</td>
<td>
62
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,548
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
188
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/monaco/">
Monaco
</a>
</td>
<td style="font-weight: bold; text-align:right">
13,696
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
57
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
13,338
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
301
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
344,069
</td>
<td style="font-weight: bold; text-align:right">
1,432
</td>
<td style="font-weight: bold; text-align:right">
77,770
</td>
<td style="font-weight: bold; text-align:right">
1,953,726
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/monaco-population/">
39,806
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
698
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
7,562
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
189
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/tonga/">
Tonga
</a>
</td>
<td style="font-weight: bold; text-align:right">
12,382
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
12
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
12,223
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
147
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
114,515
</td>
<td style="font-weight: bold; text-align:right">
111
</td>
<td style="font-weight: bold; text-align:right">
535,009
</td>
<td style="font-weight: bold; text-align:right">
4,948,014
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/tonga-population/">
108,126
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
9
</td>
<td>
9,011
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,360
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
190
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/gambia/">
Gambia
</a>
</td>
<td style="font-weight: bold; text-align:right">
12,009
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
365
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
11,591
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
53
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,701
</td>
<td style="font-weight: bold; text-align:right">
143
</td>
<td style="font-weight: bold; text-align:right">
155,686
</td>
<td style="font-weight: bold; text-align:right">
60,948
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/gambia-population/">
2,554,413
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
213
</td>
<td>
6,998
</td>
<td>
16
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
21
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
191
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/greenland/">
Greenland
</a>
</td>
<td style="font-weight: bold; text-align:right">
11,971
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
21
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
2,761
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
9,189
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
210,128
</td>
<td style="font-weight: bold; text-align:right">
369
</td>
<td style="font-weight: bold; text-align:right">
164,926
</td>
<td style="font-weight: bold; text-align:right">
2,894,962
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/greenland-population/">
56,970
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
5
</td>
<td>
2,713
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
161,295
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
192
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/yemen/">
Yemen
</a>
</td>
<td style="font-weight: bold; text-align:right">
11,832
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
2,149
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
9,108
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
575
</td>
<td style="font-weight: bold; text-align:right">
23
</td>
<td style="font-weight: bold; text-align:right">
380
</td>
<td style="font-weight: bold; text-align:right">
69
</td>
<td style="font-weight: bold; text-align:right">
265,253
</td>
<td style="font-weight: bold; text-align:right">
8,513
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/yemen-population/">
31,158,750
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
2,633
</td>
<td>
14,499
</td>
<td>
117
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
18
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
193
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/vanuatu/">
Vanuatu
</a>
</td>
<td style="font-weight: bold; text-align:right">
11,690
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
14
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
11,502
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
174
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
36,337
</td>
<td style="font-weight: bold; text-align:right">
44
</td>
<td style="font-weight: bold; text-align:right">
24,976
</td>
<td style="font-weight: bold; text-align:right">
77,636
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/vanuatu-population/">
321,707
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
28
</td>
<td>
22,979
</td>
<td>
13
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
541
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
194
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saint-martin/">
Saint Martin
</a>
</td>
<td style="font-weight: bold; text-align:right">
11,224
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
63
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,399
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
9,762
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
<td style="font-weight: bold; text-align:right">
280,572
</td>
<td style="font-weight: bold; text-align:right">
1,575
</td>
<td style="font-weight: bold; text-align:right">
112,382
</td>
<td style="font-weight: bold; text-align:right">
2,809,269
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saint-martin-population/">
40,004
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
4
</td>
<td>
635
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
244,026
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
195
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/sint-maarten/">
Sint Maarten
</a>
</td>
<td style="font-weight: bold; text-align:right">
10,656
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
87
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
10,524
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
45
</td>
<td style="font-weight: bold; text-align:right">
10
</td>
<td style="font-weight: bold; text-align:right">
242,933
</td>
<td style="font-weight: bold; text-align:right">
1,983
</td>
<td style="font-weight: bold; text-align:right">
62,056
</td>
<td style="font-weight: bold; text-align:right">
1,414,736
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/sint-maarten-population/">
43,864
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
4
</td>
<td>
504
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,026
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
196
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/caribbean-netherlands/">
Caribbean Netherlands
</a>
</td>
<td style="font-weight: bold; text-align:right">
10,567
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
35
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
10,424
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
108
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
395,501
</td>
<td style="font-weight: bold; text-align:right">
1,310
</td>
<td style="font-weight: bold; text-align:right">
30,126
</td>
<td style="font-weight: bold; text-align:right">
1,127,554
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/caribbean-netherlands-population/">
26,718
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
3
</td>
<td>
763
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,042
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
197
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/eritrea/">
Eritrea
</a>
</td>
<td style="font-weight: bold; text-align:right">
9,852
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
103
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
9,702
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
47
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,702
</td>
<td style="font-weight: bold; text-align:right">
28
</td>
<td style="font-weight: bold; text-align:right">
23,693
</td>
<td style="font-weight: bold; text-align:right">
6,498
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/eritrea-population/">
3,646,011
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
370
</td>
<td>
35,398
</td>
<td>
154
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
13
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
198
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/niger/">
Niger
</a>
</td>
<td style="font-weight: bold; text-align:right">
9,096
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
311
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
8,628
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
157
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
350
</td>
<td style="font-weight: bold; text-align:right">
12
</td>
<td style="font-weight: bold; text-align:right">
254,538
</td>
<td style="font-weight: bold; text-align:right">
9,796
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/niger-population/">
25,984,404
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
2,857
</td>
<td>
83,551
</td>
<td>
102
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
199
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/antigua-and-barbuda/">
Antigua and Barbuda
</a>
</td>
<td style="font-weight: bold; text-align:right">
8,704
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
143
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
8,528
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
33
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
87,412
</td>
<td style="font-weight: bold; text-align:right">
1,436
</td>
<td style="font-weight: bold; text-align:right">
18,901
</td>
<td style="font-weight: bold; text-align:right">
189,819
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/antigua-and-barbuda-population/">
99,574
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
11
</td>
<td>
696
</td>
<td>
5
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
331
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
200
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/guinea-bissau/">
Guinea-Bissau
</a>
</td>
<td style="font-weight: bold; text-align:right">
8,400
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
171
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
8,151
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
78
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
4,073
</td>
<td style="font-weight: bold; text-align:right">
83
</td>
<td style="font-weight: bold; text-align:right">
145,231
</td>
<td style="font-weight: bold; text-align:right">
70,419
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/guinea-bissau-population/">
2,062,372
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
246
</td>
<td>
12,061
</td>
<td>
14
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
38
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
201
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/comoros/">
Comoros
</a>
</td>
<td style="font-weight: bold; text-align:right">
8,209
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
160
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
7,933
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
116
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
9,049
</td>
<td style="font-weight: bold; text-align:right">
176
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/comoros-population/">
907,185
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
111
</td>
<td>
5,670
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
128
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
202
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/sierra-leone/">
Sierra Leone
</a>
</td>
<td style="font-weight: bold; text-align:right">
7,718
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
125
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
929
</td>
<td style="font-weight: bold; text-align:right">
15
</td>
<td style="font-weight: bold; text-align:right">
259,958
</td>
<td style="font-weight: bold; text-align:right">
31,297
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/sierra-leone-population/">
8,306,116
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
1,076
</td>
<td>
66,449
</td>
<td>
32
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
334
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
203
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/liberia/">
Liberia
</a>
</td>
<td style="font-weight: bold; text-align:right">
7,504
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
294
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
5,747
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,463
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
1,416
</td>
<td style="font-weight: bold; text-align:right">
55
</td>
<td style="font-weight: bold; text-align:right">
139,824
</td>
<td style="font-weight: bold; text-align:right">
26,388
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/liberia-population/">
5,298,865
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
706
</td>
<td>
18,023
</td>
<td>
38
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
276
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
204
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/chad/">
Chad
</a>
</td>
<td style="font-weight: bold; text-align:right">
7,427
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
193
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
4,874
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
2,360
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
427
</td>
<td style="font-weight: bold; text-align:right">
11
</td>
<td style="font-weight: bold; text-align:right">
191,341
</td>
<td style="font-weight: bold; text-align:right">
11,008
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/chad-population/">
17,382,135
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
2,340
</td>
<td>
90,063
</td>
<td>
91
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
136
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
205
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/british-virgin-islands/">
British Virgin Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
7,131
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
63
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
232,743
</td>
<td style="font-weight: bold; text-align:right">
2,056
</td>
<td style="font-weight: bold; text-align:right">
105,790
</td>
<td style="font-weight: bold; text-align:right">
3,452,789
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/british-virgin-islands-population/">
30,639
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
4
</td>
<td>
486
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
783
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
206
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saint-vincent-and-the-grenadines/">
St. Vincent Grenadines
</a>
</td>
<td style="font-weight: bold; text-align:right">
7,035
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
114
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
6,641
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
280
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
63,007
</td>
<td style="font-weight: bold; text-align:right">
1,021
</td>
<td style="font-weight: bold; text-align:right">
100,334
</td>
<td style="font-weight: bold; text-align:right">
898,607
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saint-vincent-and-the-grenadines-population/">
111,655
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
16
</td>
<td>
979
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,508
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
207
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/nauru/">
Nauru
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,930
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
3,171
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
3,758
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
632,184
</td>
<td style="font-weight: bold; text-align:right">
91
</td>
<td style="font-weight: bold; text-align:right">
14,517
</td>
<td style="font-weight: bold; text-align:right">
1,324,302
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/nauru-population/">
10,962
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
2
</td>
<td>
10,962
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
342,821
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
208
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saint-kitts-and-nevis/">
Saint Kitts and Nevis
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,355
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
45
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
6,189
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
121
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
117,768
</td>
<td style="font-weight: bold; text-align:right">
834
</td>
<td style="font-weight: bold; text-align:right">
108,021
</td>
<td style="font-weight: bold; text-align:right">
2,001,798
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saint-kitts-and-nevis-population/">
53,962
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
8
</td>
<td>
1,199
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,242
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
209
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/turks-and-caicos-islands/">
Turks and Caicos
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,255
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
36
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
6,144
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
75
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
157,240
</td>
<td style="font-weight: bold; text-align:right">
905
</td>
<td style="font-weight: bold; text-align:right">
548,537
</td>
<td style="font-weight: bold; text-align:right">
13,789,266
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/turks-and-caicos-islands-population/">
39,780
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
6
</td>
<td>
1,105
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,885
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
210
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/sao-tome-and-principe/">
Sao Tome and Principe
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,079
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
74
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
5,990
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
15
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
26,731
</td>
<td style="font-weight: bold; text-align:right">
325
</td>
<td style="font-weight: bold; text-align:right">
29,036
</td>
<td style="font-weight: bold; text-align:right">
127,678
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/sao-tome-and-principe-population/">
227,416
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
37
</td>
<td>
3,073
</td>
<td>
8
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
66
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
211
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cook-islands/">
Cook Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
5,827
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
5,802
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
24
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
331,136
</td>
<td style="font-weight: bold; text-align:right">
57
</td>
<td style="font-weight: bold; text-align:right">
19,690
</td>
<td style="font-weight: bold; text-align:right">
1,118,941
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cook-islands-population/">
17,597
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
3
</td>
<td>
17,597
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,364
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
212
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/palau/">
Palau
</a>
</td>
<td style="font-weight: bold; text-align:right">
5,308
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
6
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
5,047
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
255
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
290,547
</td>
<td style="font-weight: bold; text-align:right">
328
</td>
<td style="font-weight: bold; text-align:right">
62,460
</td>
<td style="font-weight: bold; text-align:right">
3,418,906
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/palau-population/">
18,269
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
3
</td>
<td>
3,045
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
13,958
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
213
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saint-barthelemy/">
St. Barth
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,845
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
6
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
487,523
</td>
<td style="font-weight: bold; text-align:right">
604
</td>
<td style="font-weight: bold; text-align:right">
78,646
</td>
<td style="font-weight: bold; text-align:right">
7,913,665
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saint-barthelemy-population/">
9,938
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
2
</td>
<td>
1,656
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
440,431
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
214
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/anguilla/">
Anguilla
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,496
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
9
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
3,464
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
23
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
228,871
</td>
<td style="font-weight: bold; text-align:right">
589
</td>
<td style="font-weight: bold; text-align:right">
51,382
</td>
<td style="font-weight: bold; text-align:right">
3,363,797
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/anguilla-population/">
15,275
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
4
</td>
<td>
1,697
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,506
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
215
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/kiribati/">
Kiribati
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,236
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
13
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
2,665
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
558
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
26,273
</td>
<td style="font-weight: bold; text-align:right">
106
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/kiribati-population/">
123,167
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
38
</td>
<td>
9,474
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,530
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
216
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saint-pierre-and-miquelon/">
Saint Pierre Miquelon
</a>
</td>
<td style="font-weight: bold; text-align:right">
2,970
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
2,449
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
520
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
517,692
</td>
<td style="font-weight: bold; text-align:right">
174
</td>
<td style="font-weight: bold; text-align:right">
24,521
</td>
<td style="font-weight: bold; text-align:right">
4,274,185
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saint-pierre-and-miquelon-population/">
5,737
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
2
</td>
<td>
5,737
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
90,640
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
217
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/falkland-islands-malvinas/">
Falkland Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,831
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
496,744
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
8,632
</td>
<td style="font-weight: bold; text-align:right">
2,341,834
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/falkland-islands-malvinas-population/">
3,686
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
2
</td>
<td>
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
463,104
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
218
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/montserrat/">
Montserrat
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,025
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
8
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,013
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
4
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
205,082
</td>
<td style="font-weight: bold; text-align:right">
1,601
</td>
<td style="font-weight: bold; text-align:right">
14,243
</td>
<td style="font-weight: bold; text-align:right">
2,849,740
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/montserrat-population/">
4,998
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
5
</td>
<td>
625
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
800
</td>
</tr>
<tr style="background-color:#F0F0F0">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
219
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<span style="color:#00B5F0; font-style:italic; ">
Diamond Princess
</span>
</td>
<td style="font-weight: bold; text-align:right">
712
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
13
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
699
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td data-continent="" style="display:none">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
220
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/china-macao-sar/">
Macao
</a>
</td>
<td style="font-weight: bold; text-align:right">
696
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
5
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
181
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
510
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,043
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
<td style="font-weight: bold; text-align:right">
7,615
</td>
<td style="font-weight: bold; text-align:right">
11,412
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/china-macao-sar-population/">
667,295
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
959
</td>
<td>
133,459
</td>
<td>
88
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
764
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
221
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/wallis-and-futuna-islands/">
Wallis and Futuna
</a>
</td>
<td style="font-weight: bold; text-align:right">
456
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
7
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
438
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
11
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
42,066
</td>
<td style="font-weight: bold; text-align:right">
646
</td>
<td style="font-weight: bold; text-align:right">
20,508
</td>
<td style="font-weight: bold; text-align:right">
1,891,882
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/wallis-and-futuna-islands-population/">
10,840
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
24
</td>
<td>
1,549
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,015
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
222
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/marshall-islands/">
Marshall Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
47
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
18
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
29
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
783
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/marshall-islands-population/">
60,000
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
1,277
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
483
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
223
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/micronesia/">
Micronesia
</a>
</td>
<td style="font-weight: bold; text-align:right">
38
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
33
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
5
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
323
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
21,923
</td>
<td style="font-weight: bold; text-align:right">
186,628
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/micronesia-population/">
117,469
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
3,091
</td>
<td>
</td>
<td>
5
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
43
</td>
</tr>
<tr style="background-color:#EAF7D5">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
224
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/holy-see/">
Vatican City
</a>
</td>
<td style="font-weight: bold; text-align:right">
29
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
29
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
36,025
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/holy-see-population/">
805
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
28
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
225
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/niue/">
Niue
</a>
</td>
<td style="font-weight: bold; text-align:right">
26
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
23
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
15,777
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/niue-population/">
1,648
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
63
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,820
</td>
</tr>
<tr style="background-color:#F0F0F0">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
226
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/western-sahara/">
Western Sahara
</a>
</td>
<td style="font-weight: bold; text-align:right">
10
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
9
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
16
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/western-sahara-population/">
627,136
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
62,714
</td>
<td>
627,136
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
</tr>
<tr style="background-color:#F0F0F0">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
227
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<span style="color:#00B5F0; font-style:italic; ">
MS Zaandam
</span>
</td>
<td style="font-weight: bold; text-align:right">
9
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
2
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td data-continent="" style="display:none">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
228
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/tuvalu/">
Tuvalu
</a>
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
248
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/tuvalu-population/">
12,087
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
4,029
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
248
</td>
</tr>
<tr style="background-color:#EAF7D5">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
229
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saint-helena/">
Saint Helena
</a>
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
327
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saint-helena-population/">
6,114
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
3,057
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
230
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/china/">
China
</a>
</td>
<td style="font-weight: bold; text-align:right">
227,143
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+113
</td>
<td style="font-weight: bold; text-align:right;">
5,226
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
220,778
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+93
</td>
<td style="text-align:right;font-weight:bold;">
1,139
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
158
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
160,000,000
</td>
<td style="font-weight: bold; text-align:right">
111,163
</td>
<td style="font-weight: bold; text-align:right">
1,439,323,776
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
6,337
</td>
<td>
275,416
</td>
<td>
9
</td>
<td style="font-weight: bold; text-align:right">
0.08
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
0.8
</td>
</tr>
</tbody>
<tbody class="body_continents">
<tr class="row_continent total_row" data-continent="North America" style="display: none">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
107,794,852
</td>
<td style="background-color:#FFEEAA; color:#000;">
+34,885
</td>
<td>
1,494,690
</td>
<td style="background-color:red; color:#fff">
+74
</td>
<td>
100,746,314
</td>
<td style="background-color:#c8e6c9; color:#000">
+19,748
</td>
<td>
5,553,848
</td>
<td>
9,502
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="North America" style="display:none;">
North America
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="row_continent total_row" data-continent="Asia" style="display: none">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
163,765,129
</td>
<td style="background-color:#FFEEAA; color:#000;">
+41,272
</td>
<td>
1,442,533
</td>
<td style="background-color:red; color:#fff">
+39
</td>
<td>
157,775,292
</td>
<td style="background-color:#c8e6c9; color:#000">
+6,032
</td>
<td>
4,547,304
</td>
<td>
11,043
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Asia" style="display:none;">
Asia
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="row_continent total_row" data-continent="South America" style="display: none">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
60,877,685
</td>
<td style="">
</td>
<td>
1,309,819
</td>
<td style="">
</td>
<td>
57,886,539
</td>
<td style="background-color:#c8e6c9; color:#000">
</td>
<td>
1,681,327
</td>
<td>
10,454
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="South America" style="display:none;">
South America
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="row_continent total_row" data-continent="Europe" style="display: none">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
209,911,879
</td>
<td style="">
</td>
<td>
1,863,623
</td>
<td style="">
</td>
<td>
198,908,016
</td>
<td style="background-color:#c8e6c9; color:#000">
</td>
<td>
9,140,240
</td>
<td>
6,729
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Europe" style="display:none;">
Europe
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="row_continent total_row" data-continent="Australia/Oceania" style="display: none">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
10,492,349
</td>
<td style="background-color:#FFEEAA; color:#000;">
+30,830
</td>
<td>
14,997
</td>
<td style="background-color:red; color:#fff">
+55
</td>
<td>
9,945,183
</td>
<td style="">
+0
</td>
<td>
532,169
</td>
<td>
176
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Australia/Oceania" style="display:none;">
Australia/Oceania
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="row_continent total_row" data-continent="Africa" style="display: none">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
12,431,054
</td>
<td style="">
</td>
<td>
256,378
</td>
<td style="">
</td>
<td>
11,578,374
</td>
<td style="">
</td>
<td>
596,302
</td>
<td>
1,005
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Africa" style="display:none;">
Africa
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="row_continent total_row" data-continent="" style="display: none">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
721
</td>
<td style="">
</td>
<td>
15
</td>
<td style="">
</td>
<td>
706
</td>
<td style="">
</td>
<td>
0
</td>
<td>
0
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="" style="display:none;">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
</tbody>
<tbody class="total_row_body body_world">
<tr class="total_row">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
565,273,669
</td>
<td style="background-color:#FFEEAA; color:#000;">
+106,987
</td>
<td>
6,382,055
</td>
<td style="background-color:red; color:#fff">
+168
</td>
<td>
536,840,424
</td>
<td style="background-color:#c8e6c9; color:#000">
+61,318
</td>
<td>
22,051,190
</td>
<td>
38,909
</td>
<td>
72,519.3
</td>
<td>
818.8
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="all" style="display:none">
All
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div aria-labelledby="nav-yesterday-tab" class="tab-pane" id="nav-yesterday" role="tabpanel">
<div class="main_table_countries_div">
<table class="table table-bordered table-hover main_table_countries" id="main_table_countries_yesterday" style="width:100%;margin-top: 0px !important;display:none;">
<thead>
<tr>
<th width="1%">
#
</th>
<th width="100">
Country,
<br/>
Other
</th>
<th width="20">
Total
<br/>
Cases
</th>
<th width="30">
New
<br/>
Cases
</th>
<th width="30">
Total
<br/>
Deaths
</th>
<th width="30">
New
<br/>
Deaths
</th>
<th width="30">
Total
<br/>
Recovered
</th>
<th width="30">
New
<br/>
Recovered
</th>
<th width="30">
Active
<br/>
Cases
</th>
<th width="30">
Serious,
<br/>
Critical
</th>
<th width="30">
Tot Cases/
<br/>
1M pop
</th>
<th width="30">
Deaths/
<br/>
1M pop
</th>
<th width="30">
Total
<br/>
Tests
</th>
<th width="30">
Tests/
<br/>
<nobr>
1M pop
</nobr>
</th>
<th width="30">
Population
</th>
<th style="display:none" width="30">
Continent
</th>
<th width="30">
1 Case
<br/>
every X ppl
</th>
<th width="30">
1 Death
<br/>
every X ppl
</th>
<th width="30">
1 Test
<br/>
every X ppl
</th>
<th width="30">
New Cases/1M pop
</th>
<th width="30">
New Deaths/1M pop
</th>
<th width="30">
Active Cases/1M pop
</th>
</tr>
</thead>
<tbody>
<tr class="total_row_world row_continent" data-continent="Asia" style="display: none">
<td>
</td>
<td style="text-align:left;">
<nobr>
Asia
</nobr>
</td>
<td>
163,723,857
</td>
<td>
+229,851
</td>
<td>
1,442,494
</td>
<td>
+211
</td>
<td>
157,769,260
</td>
<td>
+116,974
</td>
<td>
4,512,103
</td>
<td>
11,044
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Asia" style="display:none;">
Asia
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="total_row_world row_continent" data-continent="North America" style="display: none">
<td>
</td>
<td style="text-align:left;">
<nobr>
North America
</nobr>
</td>
<td>
107,759,967
</td>
<td>
+145,051
</td>
<td>
1,494,616
</td>
<td>
+345
</td>
<td>
100,726,566
</td>
<td>
+129,154
</td>
<td>
5,538,785
</td>
<td>
9,502
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="North America" style="display:none;">
North America
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="total_row_world row_continent" data-continent="South America" style="display: none">
<td>
</td>
<td style="text-align:left;">
<nobr>
South America
</nobr>
</td>
<td>
60,877,685
</td>
<td>
+79,377
</td>
<td>
1,309,819
</td>
<td>
+367
</td>
<td>
57,876,446
</td>
<td>
+45,978
</td>
<td>
1,691,420
</td>
<td>
10,454
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="South America" style="display:none;">
South America
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="total_row_world row_continent" data-continent="Europe" style="display: none">
<td>
</td>
<td style="text-align:left;">
<nobr>
Europe
</nobr>
</td>
<td>
209,911,879
</td>
<td>
+285,247
</td>
<td>
1,863,623
</td>
<td>
+325
</td>
<td>
198,882,571
</td>
<td>
+218,960
</td>
<td>
9,165,685
</td>
<td>
6,729
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Europe" style="display:none;">
Europe
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="total_row_world row_continent" data-continent="Australia/Oceania" style="display: none">
<td>
</td>
<td style="text-align:left;">
<nobr>
Oceania
</nobr>
</td>
<td>
10,461,519
</td>
<td>
+59,001
</td>
<td>
14,942
</td>
<td>
+101
</td>
<td>
9,945,183
</td>
<td>
+11,256
</td>
<td>
501,394
</td>
<td>
171
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Australia/Oceania" style="display:none;">
Australia/Oceania
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="total_row_world row_continent" data-continent="Africa" style="display: none">
<td>
</td>
<td style="text-align:left;">
<nobr>
Africa
</nobr>
</td>
<td>
12,431,054
</td>
<td>
+5,728
</td>
<td>
256,378
</td>
<td>
+18
</td>
<td>
11,578,374
</td>
<td>
+5,167
</td>
<td>
596,302
</td>
<td>
1,005
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Africa" style="display:none;">
Africa
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="total_row_world row_continent" data-continent="" style="display: none">
<td>
</td>
<td style="text-align:left;">
<nobr>
</nobr>
</td>
<td>
721
</td>
<td>
</td>
<td>
15
</td>
<td>
</td>
<td>
706
</td>
<td>
</td>
<td>
0
</td>
<td>
0
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="" style="display:none;">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="total_row_world">
<td>
</td>
<td style="text-align:left;">
World
</td>
<td>
565,166,682
</td>
<td>
+804,255
</td>
<td>
6,381,887
</td>
<td>
+1,367
</td>
<td>
536,779,106
</td>
<td>
+527,489
</td>
<td>
22,005,689
</td>
<td>
38,905
</td>
<td>
72,506
</td>
<td>
818.7
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="all" style="display:none">
All
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
1
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/china/">
China
</a>
</td>
<td style="font-weight: bold; text-align:right">
227,030
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+121
</td>
<td style="font-weight: bold; text-align:right;">
5,226
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
220,685
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+84
</td>
<td style="text-align:right;font-weight:bold;">
1,119
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
158
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
160,000,000
</td>
<td style="font-weight: bold; text-align:right">
111,163
</td>
<td style="font-weight: bold; text-align:right">
1,439,323,776
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
6,340
</td>
<td>
275,416
</td>
<td>
9
</td>
<td style="font-weight: bold; text-align:right">
0.08
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
0.8
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
2
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/us/">
USA
</a>
</td>
<td style="font-weight: bold; text-align:right">
91,060,225
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+95,400
</td>
<td style="font-weight: bold; text-align:right;">
1,048,232
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+231
</td>
<td style="font-weight: bold; text-align:right">
86,371,941
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+102,258
</td>
<td style="text-align:right;font-weight:bold;">
3,640,052
</td>
<td style="font-weight: bold; text-align:right">
4,180
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,059,620,672
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
3
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/india/">
India
</a>
</td>
<td style="font-weight: bold; text-align:right">
43,704,925
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+14,936
</td>
<td style="font-weight: bold; text-align:right;">
525,557
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
43,028,356
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
151,012
</td>
<td style="font-weight: bold; text-align:right">
698
</td>
<td style="font-weight: bold; text-align:right">
31,051
</td>
<td style="font-weight: bold; text-align:right">
373
</td>
<td style="font-weight: bold; text-align:right">
867,769,574
</td>
<td style="font-weight: bold; text-align:right">
616,518
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/india-population/">
1,407,532,492
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
32
</td>
<td>
2,678
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
11
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
107
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
4
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/brazil/">
Brazil
</a>
</td>
<td style="font-weight: bold; text-align:right">
33,142,158
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+65,379
</td>
<td style="font-weight: bold; text-align:right;">
674,846
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+292
</td>
<td style="font-weight: bold; text-align:right">
31,451,590
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+36,653
</td>
<td style="text-align:right;font-weight:bold;">
1,015,722
</td>
<td style="font-weight: bold; text-align:right">
8,318
</td>
<td style="font-weight: bold; text-align:right">
153,703
</td>
<td style="font-weight: bold; text-align:right">
3,130
</td>
<td style="font-weight: bold; text-align:right">
63,776,166
</td>
<td style="font-weight: bold; text-align:right">
295,774
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/brazil-population/">
215,624,945
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
7
</td>
<td>
320
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
303
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
4,711
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
5
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/france/">
France
</a>
</td>
<td style="font-weight: bold; text-align:right">
32,795,874
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+119,285
</td>
<td style="font-weight: bold; text-align:right;">
150,468
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+54
</td>
<td style="font-weight: bold; text-align:right">
30,363,299
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+79,153
</td>
<td style="text-align:right;font-weight:bold;">
2,282,107
</td>
<td style="font-weight: bold; text-align:right">
869
</td>
<td style="font-weight: bold; text-align:right">
500,192
</td>
<td style="font-weight: bold; text-align:right">
2,295
</td>
<td style="font-weight: bold; text-align:right">
271,490,188
</td>
<td style="font-weight: bold; text-align:right">
4,140,684
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/france-population/">
65,566,505
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
436
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
1,819
</td>
<td style="font-weight: bold; text-align:right">
0.8
</td>
<td style="font-weight: bold; text-align:right">
34,806
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
6
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/germany/">
Germany
</a>
</td>
<td style="font-weight: bold; text-align:right">
29,460,249
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
142,284
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
27,548,900
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,769,065
</td>
<td style="font-weight: bold; text-align:right">
1,238
</td>
<td style="font-weight: bold; text-align:right">
349,356
</td>
<td style="font-weight: bold; text-align:right">
1,687
</td>
<td style="font-weight: bold; text-align:right">
122,332,384
</td>
<td style="font-weight: bold; text-align:right">
1,450,683
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/germany-population/">
84,327,414
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
593
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
20,979
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
7
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/uk/">
UK
</a>
</td>
<td style="font-weight: bold; text-align:right">
23,075,360
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
181,580
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
22,325,335
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+31,037
</td>
<td style="text-align:right;font-weight:bold;">
568,445
</td>
<td style="font-weight: bold; text-align:right">
146
</td>
<td style="font-weight: bold; text-align:right">
336,329
</td>
<td style="font-weight: bold; text-align:right">
2,647
</td>
<td style="font-weight: bold; text-align:right">
522,526,476
</td>
<td style="font-weight: bold; text-align:right">
7,615,952
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/uk-population/">
68,609,479
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
378
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
8,285
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
8
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/italy/">
Italy
</a>
</td>
<td style="font-weight: bold; text-align:right">
19,887,543
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+107,122
</td>
<td style="font-weight: bold; text-align:right;">
169,601
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+105
</td>
<td style="font-weight: bold; text-align:right">
18,294,517
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+76,992
</td>
<td style="text-align:right;font-weight:bold;">
1,423,425
</td>
<td style="font-weight: bold; text-align:right">
388
</td>
<td style="font-weight: bold; text-align:right">
329,911
</td>
<td style="font-weight: bold; text-align:right">
2,813
</td>
<td style="font-weight: bold; text-align:right">
231,776,628
</td>
<td style="font-weight: bold; text-align:right">
3,844,904
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/italy-population/">
60,281,506
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
355
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
1,777
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
23,613
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
9
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/south-korea/">
S. Korea
</a>
</td>
<td style="font-weight: bold; text-align:right">
18,641,278
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+39,169
</td>
<td style="font-weight: bold; text-align:right;">
24,696
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+16
</td>
<td style="font-weight: bold; text-align:right">
18,301,339
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+6,234
</td>
<td style="text-align:right;font-weight:bold;">
315,243
</td>
<td style="font-weight: bold; text-align:right">
69
</td>
<td style="font-weight: bold; text-align:right">
362,963
</td>
<td style="font-weight: bold; text-align:right">
481
</td>
<td style="font-weight: bold; text-align:right">
15,804,065
</td>
<td style="font-weight: bold; text-align:right">
307,719
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/south-korea-population/">
51,358,685
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
3
</td>
<td>
2,080
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
763
</td>
<td style="font-weight: bold; text-align:right">
0.3
</td>
<td style="font-weight: bold; text-align:right">
6,138
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
10
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/russia/">
Russia
</a>
</td>
<td style="font-weight: bold; text-align:right">
18,476,477
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+4,238
</td>
<td style="font-weight: bold; text-align:right;">
381,754
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+43
</td>
<td style="font-weight: bold; text-align:right">
17,900,518
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+3,090
</td>
<td style="text-align:right;font-weight:bold;">
194,205
</td>
<td style="font-weight: bold; text-align:right">
2,300
</td>
<td style="font-weight: bold; text-align:right">
126,498
</td>
<td style="font-weight: bold; text-align:right">
2,614
</td>
<td style="font-weight: bold; text-align:right">
273,400,000
</td>
<td style="font-weight: bold; text-align:right">
1,871,816
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/russia-population/">
146,061,390
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
8
</td>
<td>
383
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
29
</td>
<td style="font-weight: bold; text-align:right">
0.3
</td>
<td style="font-weight: bold; text-align:right">
1,330
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
11
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/turkey/">
Turkey
</a>
</td>
<td style="font-weight: bold; text-align:right">
15,297,539
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
99,088
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
15,096,774
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
101,677
</td>
<td style="font-weight: bold; text-align:right">
975
</td>
<td style="font-weight: bold; text-align:right">
177,506
</td>
<td style="font-weight: bold; text-align:right">
1,150
</td>
<td style="font-weight: bold; text-align:right">
162,743,369
</td>
<td style="font-weight: bold; text-align:right">
1,888,403
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/turkey-population/">
86,180,421
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
6
</td>
<td>
870
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,180
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
12
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/spain/">
Spain
</a>
</td>
<td style="font-weight: bold; text-align:right">
13,032,841
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
108,948
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
12,370,046
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
553,847
</td>
<td style="font-weight: bold; text-align:right">
339
</td>
<td style="font-weight: bold; text-align:right">
278,530
</td>
<td style="font-weight: bold; text-align:right">
2,328
</td>
<td style="font-weight: bold; text-align:right">
471,036,328
</td>
<td style="font-weight: bold; text-align:right">
10,066,705
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/spain-population/">
46,791,511
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
4
</td>
<td>
429
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
11,836
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
13
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/viet-nam/">
Vietnam
</a>
</td>
<td style="font-weight: bold; text-align:right">
10,758,189
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+932
</td>
<td style="font-weight: bold; text-align:right;">
43,090
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
9,793,800
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+8,545
</td>
<td style="text-align:right;font-weight:bold;">
921,299
</td>
<td style="font-weight: bold; text-align:right">
36
</td>
<td style="font-weight: bold; text-align:right">
108,542
</td>
<td style="font-weight: bold; text-align:right">
435
</td>
<td style="font-weight: bold; text-align:right">
85,826,548
</td>
<td style="font-weight: bold; text-align:right">
865,924
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/viet-nam-population/">
99,115,541
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
9
</td>
<td>
2,300
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
9
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
9,295
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
14
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/japan/">
Japan
</a>
</td>
<td style="font-weight: bold; text-align:right">
9,903,381
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+92,507
</td>
<td style="font-weight: bold; text-align:right;">
31,494
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+29
</td>
<td style="font-weight: bold; text-align:right">
9,389,831
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+31,121
</td>
<td style="text-align:right;font-weight:bold;">
482,056
</td>
<td style="font-weight: bold; text-align:right">
100
</td>
<td style="font-weight: bold; text-align:right">
78,791
</td>
<td style="font-weight: bold; text-align:right">
251
</td>
<td style="font-weight: bold; text-align:right">
58,169,163
</td>
<td style="font-weight: bold; text-align:right">
462,794
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/japan-population/">
125,691,242
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
13
</td>
<td>
3,991
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
736
</td>
<td style="font-weight: bold; text-align:right">
0.2
</td>
<td style="font-weight: bold; text-align:right">
3,835
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
15
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/argentina/">
Argentina
</a>
</td>
<td style="font-weight: bold; text-align:right">
9,426,171
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
129,145
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
9,219,683
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+3,668
</td>
<td style="text-align:right;font-weight:bold;">
77,343
</td>
<td style="font-weight: bold; text-align:right">
393
</td>
<td style="font-weight: bold; text-align:right">
204,751
</td>
<td style="font-weight: bold; text-align:right">
2,805
</td>
<td style="font-weight: bold; text-align:right">
35,716,069
</td>
<td style="font-weight: bold; text-align:right">
775,808
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/argentina-population/">
46,037,228
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
5
</td>
<td>
356
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,680
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
16
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/australia/">
Australia
</a>
</td>
<td style="font-weight: bold; text-align:right">
8,653,018
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+47,205
</td>
<td style="font-weight: bold; text-align:right;">
10,515
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+78
</td>
<td style="font-weight: bold; text-align:right">
8,278,603
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
363,900
</td>
<td style="font-weight: bold; text-align:right">
139
</td>
<td style="font-weight: bold; text-align:right">
331,531
</td>
<td style="font-weight: bold; text-align:right">
403
</td>
<td style="font-weight: bold; text-align:right">
74,982,179
</td>
<td style="font-weight: bold; text-align:right">
2,872,859
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/australia-population/">
26,100,194
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
3
</td>
<td>
2,482
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
1,809
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
13,942
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
17
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/netherlands/">
Netherlands
</a>
</td>
<td style="font-weight: bold; text-align:right">
8,267,718
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+7,062
</td>
<td style="font-weight: bold; text-align:right;">
22,417
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+4
</td>
<td style="font-weight: bold; text-align:right">
8,088,402
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+2,880
</td>
<td style="text-align:right;font-weight:bold;">
156,899
</td>
<td style="font-weight: bold; text-align:right">
60
</td>
<td style="font-weight: bold; text-align:right">
480,352
</td>
<td style="font-weight: bold; text-align:right">
1,302
</td>
<td style="font-weight: bold; text-align:right">
21,107,399
</td>
<td style="font-weight: bold; text-align:right">
1,226,334
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/netherlands-population/">
17,211,781
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
768
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
410
</td>
<td style="font-weight: bold; text-align:right">
0.2
</td>
<td style="font-weight: bold; text-align:right">
9,116
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
18
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/iran/">
Iran
</a>
</td>
<td style="font-weight: bold; text-align:right">
7,265,251
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+5,234
</td>
<td style="font-weight: bold; text-align:right;">
141,464
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+8
</td>
<td style="font-weight: bold; text-align:right">
7,066,475
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+486
</td>
<td style="text-align:right;font-weight:bold;">
57,312
</td>
<td style="font-weight: bold; text-align:right">
413
</td>
<td style="font-weight: bold; text-align:right">
84,309
</td>
<td style="font-weight: bold; text-align:right">
1,642
</td>
<td style="font-weight: bold; text-align:right">
52,690,831
</td>
<td style="font-weight: bold; text-align:right">
611,445
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/iran-population/">
86,174,268
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
12
</td>
<td>
609
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
61
</td>
<td style="font-weight: bold; text-align:right">
0.09
</td>
<td style="font-weight: bold; text-align:right">
665
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
19
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/mexico/">
Mexico
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,338,991
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+37,346
</td>
<td style="font-weight: bold; text-align:right;">
326,261
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+72
</td>
<td style="font-weight: bold; text-align:right">
5,415,594
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+21,656
</td>
<td style="text-align:right;font-weight:bold;">
597,136
</td>
<td style="font-weight: bold; text-align:right">
4,798
</td>
<td style="font-weight: bold; text-align:right">
48,139
</td>
<td style="font-weight: bold; text-align:right">
2,478
</td>
<td style="font-weight: bold; text-align:right">
17,033,295
</td>
<td style="font-weight: bold; text-align:right">
129,352
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/mexico-population/">
131,681,236
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
21
</td>
<td>
404
</td>
<td>
8
</td>
<td style="font-weight: bold; text-align:right">
284
</td>
<td style="font-weight: bold; text-align:right">
0.5
</td>
<td style="font-weight: bold; text-align:right">
4,535
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
20
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/colombia/">
Colombia
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,198,848
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
140,202
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
6,008,044
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
50,602
</td>
<td style="font-weight: bold; text-align:right">
342
</td>
<td style="font-weight: bold; text-align:right">
119,247
</td>
<td style="font-weight: bold; text-align:right">
2,697
</td>
<td style="font-weight: bold; text-align:right">
35,662,857
</td>
<td style="font-weight: bold; text-align:right">
686,045
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/colombia-population/">
51,983,287
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
8
</td>
<td>
371
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
973
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
21
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/indonesia/">
Indonesia
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,123,753
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+3,584
</td>
<td style="font-weight: bold; text-align:right;">
156,827
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+9
</td>
<td style="font-weight: bold; text-align:right">
5,942,436
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+2,872
</td>
<td style="text-align:right;font-weight:bold;">
24,490
</td>
<td style="font-weight: bold; text-align:right">
2,771
</td>
<td style="font-weight: bold; text-align:right">
21,918
</td>
<td style="font-weight: bold; text-align:right">
561
</td>
<td style="font-weight: bold; text-align:right">
101,907,052
</td>
<td style="font-weight: bold; text-align:right">
364,746
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/indonesia-population/">
279,392,080
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
46
</td>
<td>
1,782
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
13
</td>
<td style="font-weight: bold; text-align:right">
0.03
</td>
<td style="font-weight: bold; text-align:right">
88
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
22
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/poland/">
Poland
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,027,974
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,840
</td>
<td style="font-weight: bold; text-align:right;">
116,468
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+4
</td>
<td style="font-weight: bold; text-align:right">
5,335,742
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+10
</td>
<td style="text-align:right;font-weight:bold;">
575,764
</td>
<td style="font-weight: bold; text-align:right">
408
</td>
<td style="font-weight: bold; text-align:right">
159,628
</td>
<td style="font-weight: bold; text-align:right">
3,084
</td>
<td style="font-weight: bold; text-align:right">
36,537,808
</td>
<td style="font-weight: bold; text-align:right">
967,568
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/poland-population/">
37,762,538
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
6
</td>
<td>
324
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
49
</td>
<td style="font-weight: bold; text-align:right">
0.1
</td>
<td style="font-weight: bold; text-align:right">
15,247
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
23
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/portugal/">
Portugal
</a>
</td>
<td style="font-weight: bold; text-align:right">
5,273,845
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
24,369
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
4,979,544
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
269,932
</td>
<td style="font-weight: bold; text-align:right">
61
</td>
<td style="font-weight: bold; text-align:right">
520,287
</td>
<td style="font-weight: bold; text-align:right">
2,404
</td>
<td style="font-weight: bold; text-align:right">
43,527,258
</td>
<td style="font-weight: bold; text-align:right">
4,294,148
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/portugal-population/">
10,136,412
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
416
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
26,630
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
24
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/ukraine/">
Ukraine
</a>
</td>
<td style="font-weight: bold; text-align:right">
5,019,125
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
108,671
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
4,907,621
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+149
</td>
<td style="text-align:right;font-weight:bold;">
2,833
</td>
<td style="font-weight: bold; text-align:right">
177
</td>
<td style="font-weight: bold; text-align:right">
116,181
</td>
<td style="font-weight: bold; text-align:right">
2,515
</td>
<td style="font-weight: bold; text-align:right">
19,521,252
</td>
<td style="font-weight: bold; text-align:right">
451,870
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/ukraine-population/">
43,200,993
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
9
</td>
<td>
398
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
66
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
25
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/north-korea/">
DPRK
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,769,900
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+570
</td>
<td style="font-weight: bold; text-align:right;">
74
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
4,768,510
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+820
</td>
<td style="text-align:right;font-weight:bold;">
1,316
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
183,401
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/north-korea-population/">
26,008,008
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
5
</td>
<td>
351,460
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
22
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
51
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
26
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/malaysia/">
Malaysia
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,608,768
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+4,098
</td>
<td style="font-weight: bold; text-align:right;">
35,836
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+8
</td>
<td style="font-weight: bold; text-align:right">
4,534,019
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+2,071
</td>
<td style="text-align:right;font-weight:bold;">
38,913
</td>
<td style="font-weight: bold; text-align:right">
53
</td>
<td style="font-weight: bold; text-align:right">
138,787
</td>
<td style="font-weight: bold; text-align:right">
1,079
</td>
<td style="font-weight: bold; text-align:right">
61,607,295
</td>
<td style="font-weight: bold; text-align:right">
1,855,228
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/malaysia-population/">
33,207,396
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
7
</td>
<td>
927
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
123
</td>
<td style="font-weight: bold; text-align:right">
0.2
</td>
<td style="font-weight: bold; text-align:right">
1,172
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
27
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/austria/">
Austria
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,574,722
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+12,512
</td>
<td style="font-weight: bold; text-align:right;">
18,916
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+7
</td>
<td style="font-weight: bold; text-align:right">
4,436,588
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+11,998
</td>
<td style="text-align:right;font-weight:bold;">
119,218
</td>
<td style="font-weight: bold; text-align:right">
71
</td>
<td style="font-weight: bold; text-align:right">
502,129
</td>
<td style="font-weight: bold; text-align:right">
2,076
</td>
<td style="font-weight: bold; text-align:right">
191,905,533
</td>
<td style="font-weight: bold; text-align:right">
21,063,859
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/austria-population/">
9,110,654
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
482
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
1,373
</td>
<td style="font-weight: bold; text-align:right">
0.8
</td>
<td style="font-weight: bold; text-align:right">
13,086
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
28
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/thailand/">
Thailand
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,553,181
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+2,257
</td>
<td style="font-weight: bold; text-align:right;">
30,938
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+28
</td>
<td style="font-weight: bold; text-align:right">
4,498,055
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+2,120
</td>
<td style="text-align:right;font-weight:bold;">
24,188
</td>
<td style="font-weight: bold; text-align:right">
1,496
</td>
<td style="font-weight: bold; text-align:right">
64,901
</td>
<td style="font-weight: bold; text-align:right">
441
</td>
<td style="font-weight: bold; text-align:right">
17,270,775
</td>
<td style="font-weight: bold; text-align:right">
246,179
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/thailand-population/">
70,155,276
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
15
</td>
<td>
2,268
</td>
<td>
4
</td>
<td style="font-weight: bold; text-align:right">
32
</td>
<td style="font-weight: bold; text-align:right">
0.4
</td>
<td style="font-weight: bold; text-align:right">
345
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
29
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/israel/">
Israel
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,489,396
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+7,301
</td>
<td style="font-weight: bold; text-align:right;">
11,101
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
4,399,889
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
78,406
</td>
<td style="font-weight: bold; text-align:right">
310
</td>
<td style="font-weight: bold; text-align:right">
481,385
</td>
<td style="font-weight: bold; text-align:right">
1,190
</td>
<td style="font-weight: bold; text-align:right">
41,373,364
</td>
<td style="font-weight: bold; text-align:right">
4,436,346
</td>
<td style="font-weight: bold; text-align:right">
9,326,000
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
2
</td>
<td>
840
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
783
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
8,407
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
30
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/belgium/">
Belgium
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,320,107
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
32,015
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
4,145,425
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1,659
</td>
<td style="text-align:right;font-weight:bold;">
142,667
</td>
<td style="font-weight: bold; text-align:right">
74
</td>
<td style="font-weight: bold; text-align:right">
369,494
</td>
<td style="font-weight: bold; text-align:right">
2,738
</td>
<td style="font-weight: bold; text-align:right">
34,708,412
</td>
<td style="font-weight: bold; text-align:right">
2,968,574
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/belgium-population/">
11,691,948
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
365
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
12,202
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
31
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/taiwan/">
Taiwan
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,189,929
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+27,684
</td>
<td style="font-weight: bold; text-align:right;">
7,917
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+89
</td>
<td style="font-weight: bold; text-align:right">
3,525,477
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+45,689
</td>
<td style="text-align:right;font-weight:bold;">
656,535
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
175,280
</td>
<td style="font-weight: bold; text-align:right">
331
</td>
<td style="font-weight: bold; text-align:right">
21,858,576
</td>
<td style="font-weight: bold; text-align:right">
914,423
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/taiwan-population/">
23,904,219
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
6
</td>
<td>
3,019
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
1,158
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
27,465
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
32
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/chile/">
Chile
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,113,288
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+9,698
</td>
<td style="font-weight: bold; text-align:right;">
58,955
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+71
</td>
<td style="font-weight: bold; text-align:right">
3,775,136
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+4,895
</td>
<td style="text-align:right;font-weight:bold;">
279,197
</td>
<td style="font-weight: bold; text-align:right">
190
</td>
<td style="font-weight: bold; text-align:right">
211,490
</td>
<td style="font-weight: bold; text-align:right">
3,031
</td>
<td style="font-weight: bold; text-align:right">
41,226,395
</td>
<td style="font-weight: bold; text-align:right">
2,119,704
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/chile-population/">
19,449,130
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
5
</td>
<td>
330
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
499
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
14,355
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
33
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/south-africa/">
South Africa
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,999,345
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+482
</td>
<td style="font-weight: bold; text-align:right;">
101,915
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+8
</td>
<td style="font-weight: bold; text-align:right">
3,889,998
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+803
</td>
<td style="text-align:right;font-weight:bold;">
7,432
</td>
<td style="font-weight: bold; text-align:right">
192
</td>
<td style="font-weight: bold; text-align:right">
65,751
</td>
<td style="font-weight: bold; text-align:right">
1,676
</td>
<td style="font-weight: bold; text-align:right">
25,858,208
</td>
<td style="font-weight: bold; text-align:right">
425,118
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/south-africa-population/">
60,825,910
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
15
</td>
<td>
597
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
8
</td>
<td style="font-weight: bold; text-align:right">
0.1
</td>
<td style="font-weight: bold; text-align:right">
122
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
34
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/canada/">
Canada
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,992,960
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+2,721
</td>
<td style="font-weight: bold; text-align:right;">
42,278
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+24
</td>
<td style="font-weight: bold; text-align:right">
3,570,058
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
380,624
</td>
<td style="font-weight: bold; text-align:right">
195
</td>
<td style="font-weight: bold; text-align:right">
103,947
</td>
<td style="font-weight: bold; text-align:right">
1,101
</td>
<td style="font-weight: bold; text-align:right">
62,586,673
</td>
<td style="font-weight: bold; text-align:right">
1,629,286
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/canada-population/">
38,413,557
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
10
</td>
<td>
909
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
71
</td>
<td style="font-weight: bold; text-align:right">
0.6
</td>
<td style="font-weight: bold; text-align:right">
9,909
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
35
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/czech-republic/">
Czechia
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,947,772
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,984
</td>
<td style="font-weight: bold; text-align:right;">
40,343
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
3,896,636
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+218
</td>
<td style="text-align:right;font-weight:bold;">
10,793
</td>
<td style="font-weight: bold; text-align:right">
11
</td>
<td style="font-weight: bold; text-align:right">
367,259
</td>
<td style="font-weight: bold; text-align:right">
3,753
</td>
<td style="font-weight: bold; text-align:right">
55,608,407
</td>
<td style="font-weight: bold; text-align:right">
5,173,221
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/czech-republic-population/">
10,749,282
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
266
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
185
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,004
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
36
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/switzerland/">
Switzerland
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,843,522
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
14,008
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
3,667,703
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1,351
</td>
<td style="text-align:right;font-weight:bold;">
161,811
</td>
<td style="font-weight: bold; text-align:right">
60
</td>
<td style="font-weight: bold; text-align:right">
437,608
</td>
<td style="font-weight: bold; text-align:right">
1,595
</td>
<td style="font-weight: bold; text-align:right">
21,598,881
</td>
<td style="font-weight: bold; text-align:right">
2,459,160
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/switzerland-population/">
8,783,033
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
627
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
18,423
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
37
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/greece/">
Greece
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,843,142
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
30,476
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
3,614,441
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
198,225
</td>
<td style="font-weight: bold; text-align:right">
103
</td>
<td style="font-weight: bold; text-align:right">
372,404
</td>
<td style="font-weight: bold; text-align:right">
2,953
</td>
<td style="font-weight: bold; text-align:right">
86,634,526
</td>
<td style="font-weight: bold; text-align:right">
8,394,971
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/greece-population/">
10,319,812
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
339
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
19,208
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
38
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/philippines/">
Philippines
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,725,382
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+2,371
</td>
<td style="font-weight: bold; text-align:right;">
60,641
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+1
</td>
<td style="font-weight: bold; text-align:right">
3,648,497
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+985
</td>
<td style="text-align:right;font-weight:bold;">
16,244
</td>
<td style="font-weight: bold; text-align:right">
534
</td>
<td style="font-weight: bold; text-align:right">
33,103
</td>
<td style="font-weight: bold; text-align:right">
539
</td>
<td style="font-weight: bold; text-align:right">
31,081,194
</td>
<td style="font-weight: bold; text-align:right">
276,178
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/philippines-population/">
112,540,376
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
30
</td>
<td>
1,856
</td>
<td>
4
</td>
<td style="font-weight: bold; text-align:right">
21
</td>
<td style="font-weight: bold; text-align:right">
0.01
</td>
<td style="font-weight: bold; text-align:right">
144
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
39
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/peru/">
Peru
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,703,751
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
213,731
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
3,411,377
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
78,643
</td>
<td style="font-weight: bold; text-align:right">
171
</td>
<td style="font-weight: bold; text-align:right">
109,243
</td>
<td style="font-weight: bold; text-align:right">
6,304
</td>
<td style="font-weight: bold; text-align:right">
31,998,554
</td>
<td style="font-weight: bold; text-align:right">
943,805
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/peru-population/">
33,903,781
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
9
</td>
<td>
159
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,320
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
40
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/denmark/">
Denmark
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,038,292
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,960
</td>
<td style="font-weight: bold; text-align:right;">
6,543
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+13
</td>
<td style="font-weight: bold; text-align:right">
3,008,064
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1,789
</td>
<td style="text-align:right;font-weight:bold;">
23,685
</td>
<td style="font-weight: bold; text-align:right">
14
</td>
<td style="font-weight: bold; text-align:right">
520,828
</td>
<td style="font-weight: bold; text-align:right">
1,122
</td>
<td style="font-weight: bold; text-align:right">
127,815,844
</td>
<td style="font-weight: bold; text-align:right">
21,910,357
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/denmark-population/">
5,833,581
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
892
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
336
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
4,060
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
41
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/romania/">
Romania
</a>
</td>
<td style="font-weight: bold; text-align:right">
2,953,944
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+3,993
</td>
<td style="font-weight: bold; text-align:right;">
65,802
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+1
</td>
<td style="font-weight: bold; text-align:right">
2,853,660
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
34,482
</td>
<td style="font-weight: bold; text-align:right">
99
</td>
<td style="font-weight: bold; text-align:right">
155,655
</td>
<td style="font-weight: bold; text-align:right">
3,467
</td>
<td style="font-weight: bold; text-align:right">
23,694,574
</td>
<td style="font-weight: bold; text-align:right">
1,248,563
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/romania-population/">
18,977,479
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
6
</td>
<td>
288
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
210
</td>
<td style="font-weight: bold; text-align:right">
0.05
</td>
<td style="font-weight: bold; text-align:right">
1,817
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
42
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/sweden/">
Sweden
</a>
</td>
<td style="font-weight: bold; text-align:right">
2,528,166
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
19,170
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
2,492,906
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+178
</td>
<td style="text-align:right;font-weight:bold;">
16,090
</td>
<td style="font-weight: bold; text-align:right">
16
</td>
<td style="font-weight: bold; text-align:right">
247,204
</td>
<td style="font-weight: bold; text-align:right">
1,874
</td>
<td style="font-weight: bold; text-align:right">
18,709,369
</td>
<td style="font-weight: bold; text-align:right">
1,829,405
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/sweden-population/">
10,227,026
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
4
</td>
<td>
533
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,573
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
43
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/iraq/">
Iraq
</a>
</td>
<td style="font-weight: bold; text-align:right">
2,396,707
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+2,981
</td>
<td style="font-weight: bold; text-align:right;">
25,261
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+2
</td>
<td style="font-weight: bold; text-align:right">
2,335,448
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+3,102
</td>
<td style="text-align:right;font-weight:bold;">
35,998
</td>
<td style="font-weight: bold; text-align:right">
30
</td>
<td style="font-weight: bold; text-align:right">
56,991
</td>
<td style="font-weight: bold; text-align:right">
601
</td>
<td style="font-weight: bold; text-align:right">
18,912,241
</td>
<td style="font-weight: bold; text-align:right">
449,716
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/iraq-population/">
42,053,775
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
18
</td>
<td>
1,665
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
71
</td>
<td style="font-weight: bold; text-align:right">
0.05
</td>
<td style="font-weight: bold; text-align:right">
856
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
44
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/serbia/">
Serbia
</a>
</td>
<td style="font-weight: bold; text-align:right">
2,049,388
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+2,218
</td>
<td style="font-weight: bold; text-align:right;">
16,162
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+4
</td>
<td style="font-weight: bold; text-align:right">
2,009,887
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+465
</td>
<td style="text-align:right;font-weight:bold;">
23,339
</td>
<td style="font-weight: bold; text-align:right">
9
</td>
<td style="font-weight: bold; text-align:right">
236,486
</td>
<td style="font-weight: bold; text-align:right">
1,865
</td>
<td style="font-weight: bold; text-align:right">
10,016,279
</td>
<td style="font-weight: bold; text-align:right">
1,155,813
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/serbia-population/">
8,666,000
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
4
</td>
<td>
536
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
256
</td>
<td style="font-weight: bold; text-align:right">
0.5
</td>
<td style="font-weight: bold; text-align:right">
2,693
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
45
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bangladesh/">
Bangladesh
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,993,382
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,324
</td>
<td style="font-weight: bold; text-align:right;">
29,223
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+6
</td>
<td style="font-weight: bold; text-align:right">
1,919,166
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1,747
</td>
<td style="text-align:right;font-weight:bold;">
44,993
</td>
<td style="font-weight: bold; text-align:right">
1,228
</td>
<td style="font-weight: bold; text-align:right">
11,864
</td>
<td style="font-weight: bold; text-align:right">
174
</td>
<td style="font-weight: bold; text-align:right">
14,475,361
</td>
<td style="font-weight: bold; text-align:right">
86,153
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bangladesh-population/">
168,018,411
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
84
</td>
<td>
5,750
</td>
<td>
12
</td>
<td style="font-weight: bold; text-align:right">
8
</td>
<td style="font-weight: bold; text-align:right">
0.04
</td>
<td style="font-weight: bold; text-align:right">
268
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
46
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/hungary/">
Hungary
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,940,824
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
46,696
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,878,221
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
15,907
</td>
<td style="font-weight: bold; text-align:right">
16
</td>
<td style="font-weight: bold; text-align:right">
201,946
</td>
<td style="font-weight: bold; text-align:right">
4,859
</td>
<td style="font-weight: bold; text-align:right">
11,394,556
</td>
<td style="font-weight: bold; text-align:right">
1,185,624
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/hungary-population/">
9,610,602
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
5
</td>
<td>
206
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,655
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
47
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/slovakia/">
Slovakia
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,803,688
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+822
</td>
<td style="font-weight: bold; text-align:right;">
20,168
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+2
</td>
<td style="font-weight: bold; text-align:right">
1,775,851
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+616
</td>
<td style="text-align:right;font-weight:bold;">
7,669
</td>
<td style="font-weight: bold; text-align:right">
16
</td>
<td style="font-weight: bold; text-align:right">
330,043
</td>
<td style="font-weight: bold; text-align:right">
3,690
</td>
<td style="font-weight: bold; text-align:right">
7,195,329
</td>
<td style="font-weight: bold; text-align:right">
1,316,619
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/slovakia-population/">
5,465,006
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
271
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
150
</td>
<td style="font-weight: bold; text-align:right">
0.4
</td>
<td style="font-weight: bold; text-align:right">
1,403
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
48
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/jordan/">
Jordan
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,700,526
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
14,068
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,685,354
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,104
</td>
<td style="font-weight: bold; text-align:right">
124
</td>
<td style="font-weight: bold; text-align:right">
163,376
</td>
<td style="font-weight: bold; text-align:right">
1,352
</td>
<td style="font-weight: bold; text-align:right">
16,894,012
</td>
<td style="font-weight: bold; text-align:right">
1,623,075
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/jordan-population/">
10,408,648
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
6
</td>
<td>
740
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
106
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
49
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/georgia/">
Georgia
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,662,299
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
16,844
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,637,293
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
8,162
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
418,332
</td>
<td style="font-weight: bold; text-align:right">
4,239
</td>
<td style="font-weight: bold; text-align:right">
16,920,079
</td>
<td style="font-weight: bold; text-align:right">
4,258,084
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/georgia-population/">
3,973,637
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
2
</td>
<td>
236
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,054
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
50
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/ireland/">
Ireland
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,628,745
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
7,537
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,566,323
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+449
</td>
<td style="text-align:right;font-weight:bold;">
54,885
</td>
<td style="font-weight: bold; text-align:right">
43
</td>
<td style="font-weight: bold; text-align:right">
322,543
</td>
<td style="font-weight: bold; text-align:right">
1,493
</td>
<td style="font-weight: bold; text-align:right">
12,473,972
</td>
<td style="font-weight: bold; text-align:right">
2,470,241
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/ireland-population/">
5,049,698
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
670
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
10,869
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
51
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/singapore/">
Singapore
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,569,420
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+11,772
</td>
<td style="font-weight: bold; text-align:right;">
1,444
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+4
</td>
<td style="font-weight: bold; text-align:right">
1,453,373
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+5,911
</td>
<td style="text-align:right;font-weight:bold;">
114,603
</td>
<td style="font-weight: bold; text-align:right">
20
</td>
<td style="font-weight: bold; text-align:right">
264,048
</td>
<td style="font-weight: bold; text-align:right">
243
</td>
<td style="font-weight: bold; text-align:right">
24,107,231
</td>
<td style="font-weight: bold; text-align:right">
4,055,935
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/singapore-population/">
5,943,693
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
4
</td>
<td>
4,116
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
1,981
</td>
<td style="font-weight: bold; text-align:right">
0.7
</td>
<td style="font-weight: bold; text-align:right">
19,281
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
52
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/pakistan/">
Pakistan
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,544,131
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+390
</td>
<td style="font-weight: bold; text-align:right;">
30,426
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+2
</td>
<td style="font-weight: bold; text-align:right">
1,503,023
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
10,682
</td>
<td style="font-weight: bold; text-align:right">
175
</td>
<td style="font-weight: bold; text-align:right">
6,725
</td>
<td style="font-weight: bold; text-align:right">
133
</td>
<td style="font-weight: bold; text-align:right">
29,219,351
</td>
<td style="font-weight: bold; text-align:right">
127,265
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/pakistan-population/">
229,594,826
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
149
</td>
<td>
7,546
</td>
<td>
8
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
0.01
</td>
<td style="font-weight: bold; text-align:right">
47
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
53
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/new-zealand/">
New Zealand
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,473,955
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+11,698
</td>
<td style="font-weight: bold; text-align:right;">
1,697
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+23
</td>
<td style="font-weight: bold; text-align:right">
1,401,411
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+10,909
</td>
<td style="text-align:right;font-weight:bold;">
70,847
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
294,667
</td>
<td style="font-weight: bold; text-align:right">
339
</td>
<td style="font-weight: bold; text-align:right">
7,327,116
</td>
<td style="font-weight: bold; text-align:right">
1,464,808
</td>
<td style="font-weight: bold; text-align:right">
5,002,100
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
3
</td>
<td>
2,948
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
2,339
</td>
<td style="font-weight: bold; text-align:right">
5
</td>
<td style="font-weight: bold; text-align:right">
14,163
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
54
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/norway/">
Norway
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,452,176
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+322
</td>
<td style="font-weight: bold; text-align:right;">
3,504
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,442,320
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+701
</td>
<td style="text-align:right;font-weight:bold;">
6,352
</td>
<td style="font-weight: bold; text-align:right">
20
</td>
<td style="font-weight: bold; text-align:right">
263,685
</td>
<td style="font-weight: bold; text-align:right">
636
</td>
<td style="font-weight: bold; text-align:right">
11,002,430
</td>
<td style="font-weight: bold; text-align:right">
1,997,809
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/norway-population/">
5,507,247
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
4
</td>
<td>
1,572
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
58
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,153
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
55
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/kazakhstan/">
Kazakhstan
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,312,294
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,924
</td>
<td style="font-weight: bold; text-align:right;">
13,663
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,293,793
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+542
</td>
<td style="text-align:right;font-weight:bold;">
4,838
</td>
<td style="font-weight: bold; text-align:right">
24
</td>
<td style="font-weight: bold; text-align:right">
68,233
</td>
<td style="font-weight: bold; text-align:right">
710
</td>
<td style="font-weight: bold; text-align:right">
11,575,012
</td>
<td style="font-weight: bold; text-align:right">
601,849
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/kazakhstan-population/">
19,232,410
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
15
</td>
<td>
1,408
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
100
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
252
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
56
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/china-hong-kong-sar/">
Hong Kong
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,283,514
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+3,674
</td>
<td style="font-weight: bold; text-align:right;">
9,427
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+5
</td>
<td style="font-weight: bold; text-align:right">
1,206,806
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+291
</td>
<td style="text-align:right;font-weight:bold;">
67,281
</td>
<td style="font-weight: bold; text-align:right">
8
</td>
<td style="font-weight: bold; text-align:right">
168,432
</td>
<td style="font-weight: bold; text-align:right">
1,237
</td>
<td style="font-weight: bold; text-align:right">
50,415,048
</td>
<td style="font-weight: bold; text-align:right">
6,615,815
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/china-hong-kong-sar-population/">
7,620,384
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
6
</td>
<td>
808
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
482
</td>
<td style="font-weight: bold; text-align:right">
0.7
</td>
<td style="font-weight: bold; text-align:right">
8,829
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
57
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/morocco/">
Morocco
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,246,835
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,943
</td>
<td style="font-weight: bold; text-align:right;">
16,167
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+2
</td>
<td style="font-weight: bold; text-align:right">
1,213,862
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1,610
</td>
<td style="text-align:right;font-weight:bold;">
16,806
</td>
<td style="font-weight: bold; text-align:right">
293
</td>
<td style="font-weight: bold; text-align:right">
32,987
</td>
<td style="font-weight: bold; text-align:right">
428
</td>
<td style="font-weight: bold; text-align:right">
12,080,887
</td>
<td style="font-weight: bold; text-align:right">
319,615
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/morocco-population/">
37,798,233
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
30
</td>
<td>
2,338
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
51
</td>
<td style="font-weight: bold; text-align:right">
0.05
</td>
<td style="font-weight: bold; text-align:right">
445
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
58
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bulgaria/">
Bulgaria
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,182,764
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,107
</td>
<td style="font-weight: bold; text-align:right;">
37,283
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+2
</td>
<td style="font-weight: bold; text-align:right">
1,134,552
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+633
</td>
<td style="text-align:right;font-weight:bold;">
10,929
</td>
<td style="font-weight: bold; text-align:right">
38
</td>
<td style="font-weight: bold; text-align:right">
172,858
</td>
<td style="font-weight: bold; text-align:right">
5,449
</td>
<td style="font-weight: bold; text-align:right">
10,167,636
</td>
<td style="font-weight: bold; text-align:right">
1,485,977
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bulgaria-population/">
6,842,392
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
6
</td>
<td>
184
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
162
</td>
<td style="font-weight: bold; text-align:right">
0.3
</td>
<td style="font-weight: bold; text-align:right">
1,597
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
59
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/finland/">
Finland
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,171,034
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+12,549
</td>
<td style="font-weight: bold; text-align:right;">
5,012
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+71
</td>
<td style="font-weight: bold; text-align:right">
1,120,401
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
45,621
</td>
<td style="font-weight: bold; text-align:right">
21
</td>
<td style="font-weight: bold; text-align:right">
210,687
</td>
<td style="font-weight: bold; text-align:right">
902
</td>
<td style="font-weight: bold; text-align:right">
11,129,795
</td>
<td style="font-weight: bold; text-align:right">
2,002,417
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/finland-population/">
5,558,180
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
5
</td>
<td>
1,109
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
2,258
</td>
<td style="font-weight: bold; text-align:right">
13
</td>
<td style="font-weight: bold; text-align:right">
8,208
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
60
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/croatia/">
Croatia
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,163,824
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,763
</td>
<td style="font-weight: bold; text-align:right;">
16,135
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+5
</td>
<td style="font-weight: bold; text-align:right">
1,138,102
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+923
</td>
<td style="text-align:right;font-weight:bold;">
9,587
</td>
<td style="font-weight: bold; text-align:right">
17
</td>
<td style="font-weight: bold; text-align:right">
287,085
</td>
<td style="font-weight: bold; text-align:right">
3,980
</td>
<td style="font-weight: bold; text-align:right">
4,986,129
</td>
<td style="font-weight: bold; text-align:right">
1,229,949
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/croatia-population/">
4,053,933
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
251
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
435
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
2,365
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
61
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/lebanon/">
Lebanon
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,125,720
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
10,477
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,087,587
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
27,656
</td>
<td style="font-weight: bold; text-align:right">
186
</td>
<td style="font-weight: bold; text-align:right">
166,441
</td>
<td style="font-weight: bold; text-align:right">
1,549
</td>
<td style="font-weight: bold; text-align:right">
4,795,578
</td>
<td style="font-weight: bold; text-align:right">
709,042
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/lebanon-population/">
6,763,462
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
6
</td>
<td>
646
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,089
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
62
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cuba/">
Cuba
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,106,602
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+49
</td>
<td style="font-weight: bold; text-align:right;">
8,529
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,097,788
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+48
</td>
<td style="text-align:right;font-weight:bold;">
285
</td>
<td style="font-weight: bold; text-align:right">
23
</td>
<td style="font-weight: bold; text-align:right">
97,820
</td>
<td style="font-weight: bold; text-align:right">
754
</td>
<td style="font-weight: bold; text-align:right">
13,852,049
</td>
<td style="font-weight: bold; text-align:right">
1,224,480
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cuba-population/">
11,312,593
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
10
</td>
<td>
1,326
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
25
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
63
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/tunisia/">
Tunisia
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,087,030
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
28,823
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
29
</td>
<td style="font-weight: bold; text-align:right">
90,064
</td>
<td style="font-weight: bold; text-align:right">
2,388
</td>
<td style="font-weight: bold; text-align:right">
4,743,992
</td>
<td style="font-weight: bold; text-align:right">
393,055
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/tunisia-population/">
12,069,534
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
11
</td>
<td>
419
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,606
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
64
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/lithuania/">
Lithuania
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,073,128
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+609
</td>
<td style="font-weight: bold; text-align:right;">
9,188
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+1
</td>
<td style="font-weight: bold; text-align:right">
1,038,300
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
25,640
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
405,673
</td>
<td style="font-weight: bold; text-align:right">
3,473
</td>
<td style="font-weight: bold; text-align:right">
10,024,830
</td>
<td style="font-weight: bold; text-align:right">
3,789,667
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/lithuania-population/">
2,645,306
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
288
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
230
</td>
<td style="font-weight: bold; text-align:right">
0.4
</td>
<td style="font-weight: bold; text-align:right">
9,693
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
65
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/slovenia/">
Slovenia
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,056,179
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,738
</td>
<td style="font-weight: bold; text-align:right;">
6,665
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+3
</td>
<td style="font-weight: bold; text-align:right">
1,032,092
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1,005
</td>
<td style="text-align:right;font-weight:bold;">
17,422
</td>
<td style="font-weight: bold; text-align:right">
12
</td>
<td style="font-weight: bold; text-align:right">
507,896
</td>
<td style="font-weight: bold; text-align:right">
3,205
</td>
<td style="font-weight: bold; text-align:right">
2,691,730
</td>
<td style="font-weight: bold; text-align:right">
1,294,401
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/slovenia-population/">
2,079,518
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
312
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
836
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
8,378
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
66
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/belarus/">
Belarus
</a>
</td>
<td style="font-weight: bold; text-align:right">
994,037
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
7,118
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
985,592
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,327
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
105,267
</td>
<td style="font-weight: bold; text-align:right">
754
</td>
<td style="font-weight: bold; text-align:right">
13,646,641
</td>
<td style="font-weight: bold; text-align:right">
1,445,157
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/belarus-population/">
9,443,019
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
9
</td>
<td>
1,327
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
141
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
67
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/nepal/">
Nepal
</a>
</td>
<td style="font-weight: bold; text-align:right">
980,981
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+214
</td>
<td style="font-weight: bold; text-align:right;">
11,952
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
967,858
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+48
</td>
<td style="text-align:right;font-weight:bold;">
1,171
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
32,483
</td>
<td style="font-weight: bold; text-align:right">
396
</td>
<td style="font-weight: bold; text-align:right">
5,780,700
</td>
<td style="font-weight: bold; text-align:right">
191,413
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/nepal-population/">
30,200,104
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
31
</td>
<td>
2,527
</td>
<td>
5
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
39
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
68
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/guatemala/">
Guatemala
</a>
</td>
<td style="font-weight: bold; text-align:right">
970,621
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+7,504
</td>
<td style="font-weight: bold; text-align:right;">
18,768
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+12
</td>
<td style="font-weight: bold; text-align:right">
881,742
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+3,797
</td>
<td style="text-align:right;font-weight:bold;">
70,111
</td>
<td style="font-weight: bold; text-align:right">
5
</td>
<td style="font-weight: bold; text-align:right">
52,218
</td>
<td style="font-weight: bold; text-align:right">
1,010
</td>
<td style="font-weight: bold; text-align:right">
5,106,651
</td>
<td style="font-weight: bold; text-align:right">
274,729
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/guatemala-population/">
18,587,983
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
19
</td>
<td>
990
</td>
<td>
4
</td>
<td style="font-weight: bold; text-align:right">
404
</td>
<td style="font-weight: bold; text-align:right">
0.6
</td>
<td style="font-weight: bold; text-align:right">
3,772
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
69
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/united-arab-emirates/">
UAE
</a>
</td>
<td style="font-weight: bold; text-align:right">
969,097
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,500
</td>
<td style="font-weight: bold; text-align:right;">
2,325
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
949,218
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1,541
</td>
<td style="text-align:right;font-weight:bold;">
17,554
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
95,639
</td>
<td style="font-weight: bold; text-align:right">
229
</td>
<td style="font-weight: bold; text-align:right">
173,273,059
</td>
<td style="font-weight: bold; text-align:right">
17,100,110
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/united-arab-emirates-population/">
10,132,862
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
10
</td>
<td>
4,358
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
148
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,732
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
70
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/uruguay/">
Uruguay
</a>
</td>
<td style="font-weight: bold; text-align:right">
965,370
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
7,373
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
955,371
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
2,626
</td>
<td style="font-weight: bold; text-align:right">
18
</td>
<td style="font-weight: bold; text-align:right">
275,966
</td>
<td style="font-weight: bold; text-align:right">
2,108
</td>
<td style="font-weight: bold; text-align:right">
6,114,822
</td>
<td style="font-weight: bold; text-align:right">
1,748,015
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/uruguay-population/">
3,498,152
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
4
</td>
<td>
474
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
751
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
71
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bolivia/">
Bolivia
</a>
</td>
<td style="font-weight: bold; text-align:right">
956,629
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+4,173
</td>
<td style="font-weight: bold; text-align:right;">
21,977
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+4
</td>
<td style="font-weight: bold; text-align:right">
897,166
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+707
</td>
<td style="text-align:right;font-weight:bold;">
37,486
</td>
<td style="font-weight: bold; text-align:right">
220
</td>
<td style="font-weight: bold; text-align:right">
79,745
</td>
<td style="font-weight: bold; text-align:right">
1,832
</td>
<td style="font-weight: bold; text-align:right">
2,705,422
</td>
<td style="font-weight: bold; text-align:right">
225,525
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bolivia-population/">
11,996,097
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
13
</td>
<td>
546
</td>
<td>
4
</td>
<td style="font-weight: bold; text-align:right">
348
</td>
<td style="font-weight: bold; text-align:right">
0.3
</td>
<td style="font-weight: bold; text-align:right">
3,125
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
72
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/panama/">
Panama
</a>
</td>
<td style="font-weight: bold; text-align:right">
932,710
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
8,384
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
910,900
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
13,426
</td>
<td style="font-weight: bold; text-align:right">
16
</td>
<td style="font-weight: bold; text-align:right">
209,476
</td>
<td style="font-weight: bold; text-align:right">
1,883
</td>
<td style="font-weight: bold; text-align:right">
6,637,861
</td>
<td style="font-weight: bold; text-align:right">
1,490,789
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/panama-population/">
4,452,581
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
5
</td>
<td>
531
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,015
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
73
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/mongolia/">
Mongolia
</a>
</td>
<td style="font-weight: bold; text-align:right">
930,418
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+91
</td>
<td style="font-weight: bold; text-align:right;">
2,179
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
192
</td>
<td style="font-weight: bold; text-align:right">
274,832
</td>
<td style="font-weight: bold; text-align:right">
644
</td>
<td style="font-weight: bold; text-align:right">
4,030,048
</td>
<td style="font-weight: bold; text-align:right">
1,190,418
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/mongolia-population/">
3,385,407
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
4
</td>
<td>
1,554
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
27
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
181,657
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
74
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/ecuador/">
Ecuador
</a>
</td>
<td style="font-weight: bold; text-align:right">
927,700
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
35,769
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
870,971
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
20,960
</td>
<td style="font-weight: bold; text-align:right">
759
</td>
<td style="font-weight: bold; text-align:right">
51,010
</td>
<td style="font-weight: bold; text-align:right">
1,967
</td>
<td style="font-weight: bold; text-align:right">
2,470,170
</td>
<td style="font-weight: bold; text-align:right">
135,823
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/ecuador-population/">
18,186,639
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
20
</td>
<td>
508
</td>
<td>
7
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,152
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
75
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/costa-rica/">
Costa Rica
</a>
</td>
<td style="font-weight: bold; text-align:right">
904,934
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
8,525
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
860,711
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
35,698
</td>
<td style="font-weight: bold; text-align:right">
52
</td>
<td style="font-weight: bold; text-align:right">
174,412
</td>
<td style="font-weight: bold; text-align:right">
1,643
</td>
<td style="font-weight: bold; text-align:right">
4,659,757
</td>
<td style="font-weight: bold; text-align:right">
898,094
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/costa-rica-population/">
5,188,498
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
6
</td>
<td>
609
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6,880
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
76
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/latvia/">
Latvia
</a>
</td>
<td style="font-weight: bold; text-align:right">
844,142
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,107
</td>
<td style="font-weight: bold; text-align:right;">
5,873
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+2
</td>
<td style="font-weight: bold; text-align:right">
829,937
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+645
</td>
<td style="text-align:right;font-weight:bold;">
8,332
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
457,796
</td>
<td style="font-weight: bold; text-align:right">
3,185
</td>
<td style="font-weight: bold; text-align:right">
7,358,973
</td>
<td style="font-weight: bold; text-align:right">
3,990,926
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/latvia-population/">
1,843,926
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
314
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
600
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
4,519
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
77
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saudi-arabia/">
Saudi Arabia
</a>
</td>
<td style="font-weight: bold; text-align:right">
801,935
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+586
</td>
<td style="font-weight: bold; text-align:right;">
9,228
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+3
</td>
<td style="font-weight: bold; text-align:right">
786,711
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+491
</td>
<td style="text-align:right;font-weight:bold;">
5,996
</td>
<td style="font-weight: bold; text-align:right">
169
</td>
<td style="font-weight: bold; text-align:right">
22,329
</td>
<td style="font-weight: bold; text-align:right">
257
</td>
<td style="font-weight: bold; text-align:right">
43,628,872
</td>
<td style="font-weight: bold; text-align:right">
1,214,817
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saudi-arabia-population/">
35,913,946
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
45
</td>
<td>
3,892
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
16
</td>
<td style="font-weight: bold; text-align:right">
0.08
</td>
<td style="font-weight: bold; text-align:right">
167
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
78
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/azerbaijan/">
Azerbaijan
</a>
</td>
<td style="font-weight: bold; text-align:right">
793,918
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+91
</td>
<td style="font-weight: bold; text-align:right;">
9,719
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
783,453
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
746
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
76,896
</td>
<td style="font-weight: bold; text-align:right">
941
</td>
<td style="font-weight: bold; text-align:right">
6,972,527
</td>
<td style="font-weight: bold; text-align:right">
675,332
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/azerbaijan-population/">
10,324,599
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
13
</td>
<td>
1,062
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
9
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
72
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
79
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/paraguay/">
Paraguay
</a>
</td>
<td style="font-weight: bold; text-align:right">
673,829
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
19,036
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
639,340
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
15,453
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
92,175
</td>
<td style="font-weight: bold; text-align:right">
2,604
</td>
<td style="font-weight: bold; text-align:right">
2,646,163
</td>
<td style="font-weight: bold; text-align:right">
361,977
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/paraguay-population/">
7,310,305
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
11
</td>
<td>
384
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,114
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
80
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/sri-lanka/">
Sri Lanka
</a>
</td>
<td style="font-weight: bold; text-align:right">
664,364
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+19
</td>
<td style="font-weight: bold; text-align:right;">
16,526
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
647,445
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+3
</td>
<td style="text-align:right;font-weight:bold;">
393
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
30,764
</td>
<td style="font-weight: bold; text-align:right">
765
</td>
<td style="font-weight: bold; text-align:right">
6,486,117
</td>
<td style="font-weight: bold; text-align:right">
300,347
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/sri-lanka-population/">
21,595,391
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
33
</td>
<td>
1,307
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
0.9
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
18
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
81
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/kuwait/">
Kuwait
</a>
</td>
<td style="font-weight: bold; text-align:right">
648,216
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
2,556
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
641,752
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
3,908
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
147,365
</td>
<td style="font-weight: bold; text-align:right">
581
</td>
<td style="font-weight: bold; text-align:right">
8,242,720
</td>
<td style="font-weight: bold; text-align:right">
1,873,891
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/kuwait-population/">
4,398,718
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
7
</td>
<td>
1,721
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
888
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
82
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bahrain/">
Bahrain
</a>
</td>
<td style="font-weight: bold; text-align:right">
645,399
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,727
</td>
<td style="font-weight: bold; text-align:right;">
1,503
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
633,093
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1,381
</td>
<td style="text-align:right;font-weight:bold;">
10,803
</td>
<td style="font-weight: bold; text-align:right">
18
</td>
<td style="font-weight: bold; text-align:right">
354,309
</td>
<td style="font-weight: bold; text-align:right">
825
</td>
<td style="font-weight: bold; text-align:right">
10,099,771
</td>
<td style="font-weight: bold; text-align:right">
5,544,533
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bahrain-population/">
1,821,573
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
3
</td>
<td>
1,212
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
948
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
5,931
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
83
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/dominican-republic/">
Dominican Republic
</a>
</td>
<td style="font-weight: bold; text-align:right">
621,047
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+810
</td>
<td style="font-weight: bold; text-align:right;">
4,383
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
611,734
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+379
</td>
<td style="text-align:right;font-weight:bold;">
4,930
</td>
<td style="font-weight: bold; text-align:right">
27
</td>
<td style="font-weight: bold; text-align:right">
56,109
</td>
<td style="font-weight: bold; text-align:right">
396
</td>
<td style="font-weight: bold; text-align:right">
3,552,150
</td>
<td style="font-weight: bold; text-align:right">
320,921
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/dominican-republic-population/">
11,068,627
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
18
</td>
<td>
2,525
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
73
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
445
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
84
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/myanmar/">
Myanmar
</a>
</td>
<td style="font-weight: bold; text-align:right">
613,784
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+11
</td>
<td style="font-weight: bold; text-align:right;">
19,434
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
592,700
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+21
</td>
<td style="text-align:right;font-weight:bold;">
1,650
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
11,129
</td>
<td style="font-weight: bold; text-align:right">
352
</td>
<td style="font-weight: bold; text-align:right">
8,442,405
</td>
<td style="font-weight: bold; text-align:right">
153,081
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/myanmar-population/">
55,149,826
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
90
</td>
<td>
2,838
</td>
<td>
7
</td>
<td style="font-weight: bold; text-align:right">
0.2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
30
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
85
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/state-of-palestine/">
Palestine
</a>
</td>
<td style="font-weight: bold; text-align:right">
586,058
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
5,358
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
578,920
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,780
</td>
<td style="font-weight: bold; text-align:right">
17
</td>
<td style="font-weight: bold; text-align:right">
109,707
</td>
<td style="font-weight: bold; text-align:right">
1,003
</td>
<td style="font-weight: bold; text-align:right">
3,078,533
</td>
<td style="font-weight: bold; text-align:right">
576,286
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/state-of-palestine-population/">
5,342,019
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
9
</td>
<td>
997
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
333
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
86
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/estonia/">
Estonia
</a>
</td>
<td style="font-weight: bold; text-align:right">
585,143
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
2,608
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
523,576
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
58,959
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
440,505
</td>
<td style="font-weight: bold; text-align:right">
1,963
</td>
<td style="font-weight: bold; text-align:right">
3,424,969
</td>
<td style="font-weight: bold; text-align:right">
2,578,373
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/estonia-population/">
1,328,345
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
509
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
44,385
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
87
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cyprus/">
Cyprus
</a>
</td>
<td style="font-weight: bold; text-align:right">
530,510
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,079
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
124,370
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
405,061
</td>
<td style="font-weight: bold; text-align:right">
60
</td>
<td style="font-weight: bold; text-align:right">
433,002
</td>
<td style="font-weight: bold; text-align:right">
881
</td>
<td style="font-weight: bold; text-align:right">
9,477,138
</td>
<td style="font-weight: bold; text-align:right">
7,735,233
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cyprus-population/">
1,225,191
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
2
</td>
<td>
1,135
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
330,610
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
88
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/venezuela/">
Venezuela
</a>
</td>
<td style="font-weight: bold; text-align:right">
528,785
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
5,742
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
520,353
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
2,690
</td>
<td style="font-weight: bold; text-align:right">
36
</td>
<td style="font-weight: bold; text-align:right">
18,703
</td>
<td style="font-weight: bold; text-align:right">
203
</td>
<td style="font-weight: bold; text-align:right">
3,359,014
</td>
<td style="font-weight: bold; text-align:right">
118,808
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/venezuela-population/">
28,272,539
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
53
</td>
<td>
4,924
</td>
<td>
8
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
95
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
89
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/moldova/">
Moldova
</a>
</td>
<td style="font-weight: bold; text-align:right">
520,321
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
11,567
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
504,142
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
4,612
</td>
<td style="font-weight: bold; text-align:right">
49
</td>
<td style="font-weight: bold; text-align:right">
129,596
</td>
<td style="font-weight: bold; text-align:right">
2,881
</td>
<td style="font-weight: bold; text-align:right">
3,216,305
</td>
<td style="font-weight: bold; text-align:right">
801,083
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/moldova-population/">
4,014,948
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
8
</td>
<td>
347
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,149
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
90
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/egypt/">
Egypt
</a>
</td>
<td style="font-weight: bold; text-align:right">
515,645
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
24,613
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
442,182
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
48,850
</td>
<td style="font-weight: bold; text-align:right">
122
</td>
<td style="font-weight: bold; text-align:right">
4,853
</td>
<td style="font-weight: bold; text-align:right">
232
</td>
<td style="font-weight: bold; text-align:right">
3,693,367
</td>
<td style="font-weight: bold; text-align:right">
34,761
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/egypt-population/">
106,250,559
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
206
</td>
<td>
4,317
</td>
<td>
29
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
460
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
91
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/libya/">
Libya
</a>
</td>
<td style="font-weight: bold; text-align:right">
502,289
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
6,430
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
490,973
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
4,886
</td>
<td style="font-weight: bold; text-align:right">
101
</td>
<td style="font-weight: bold; text-align:right">
71,137
</td>
<td style="font-weight: bold; text-align:right">
911
</td>
<td style="font-weight: bold; text-align:right">
2,477,219
</td>
<td style="font-weight: bold; text-align:right">
350,837
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/libya-population/">
7,060,876
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
14
</td>
<td>
1,098
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
692
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
92
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/ethiopia/">
Ethiopia
</a>
</td>
<td style="font-weight: bold; text-align:right">
490,816
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+121
</td>
<td style="font-weight: bold; text-align:right;">
7,559
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
467,952
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+11
</td>
<td style="text-align:right;font-weight:bold;">
15,305
</td>
<td style="font-weight: bold; text-align:right">
41
</td>
<td style="font-weight: bold; text-align:right">
4,065
</td>
<td style="font-weight: bold; text-align:right">
63
</td>
<td style="font-weight: bold; text-align:right">
5,096,984
</td>
<td style="font-weight: bold; text-align:right">
42,214
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/ethiopia-population/">
120,741,154
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
246
</td>
<td>
15,973
</td>
<td>
24
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
127
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
93
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/honduras/">
Honduras
</a>
</td>
<td style="font-weight: bold; text-align:right">
430,672
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
10,912
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
132,498
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
287,262
</td>
<td style="font-weight: bold; text-align:right">
105
</td>
<td style="font-weight: bold; text-align:right">
42,123
</td>
<td style="font-weight: bold; text-align:right">
1,067
</td>
<td style="font-weight: bold; text-align:right">
1,415,120
</td>
<td style="font-weight: bold; text-align:right">
138,408
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/honduras-population/">
10,224,234
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
24
</td>
<td>
937
</td>
<td>
7
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
28,096
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
94
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/reunion/">
Réunion
</a>
</td>
<td style="font-weight: bold; text-align:right">
425,638
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
819
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
418,572
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
6,247
</td>
<td style="font-weight: bold; text-align:right">
10
</td>
<td style="font-weight: bold; text-align:right">
468,622
</td>
<td style="font-weight: bold; text-align:right">
902
</td>
<td style="font-weight: bold; text-align:right">
1,603,660
</td>
<td style="font-weight: bold; text-align:right">
1,765,611
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/reunion-population/">
908,275
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
2
</td>
<td>
1,109
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6,878
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
95
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/armenia/">
Armenia
</a>
</td>
<td style="font-weight: bold; text-align:right">
423,771
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
8,629
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
412,661
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
2,481
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
142,469
</td>
<td style="font-weight: bold; text-align:right">
2,901
</td>
<td style="font-weight: bold; text-align:right">
3,109,931
</td>
<td style="font-weight: bold; text-align:right">
1,045,538
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/armenia-population/">
2,974,478
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
7
</td>
<td>
345
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
834
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
96
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/qatar/">
Qatar
</a>
</td>
<td style="font-weight: bold; text-align:right">
391,945
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,027
</td>
<td style="font-weight: bold; text-align:right;">
680
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
385,818
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+689
</td>
<td style="text-align:right;font-weight:bold;">
5,447
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
139,591
</td>
<td style="font-weight: bold; text-align:right">
242
</td>
<td style="font-weight: bold; text-align:right">
3,693,147
</td>
<td style="font-weight: bold; text-align:right">
1,315,315
</td>
<td style="font-weight: bold; text-align:right">
2,807,805
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
7
</td>
<td>
4,129
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
366
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,940
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
97
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/oman/">
Oman
</a>
</td>
<td style="font-weight: bold; text-align:right">
391,641
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
4,260
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
384,669
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
2,712
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
72,930
</td>
<td style="font-weight: bold; text-align:right">
793
</td>
<td style="font-weight: bold; text-align:right">
25,000,000
</td>
<td style="font-weight: bold; text-align:right">
4,655,385
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/oman-population/">
5,370,125
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
14
</td>
<td>
1,261
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
505
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
98
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bosnia-and-herzegovina/">
Bosnia and Herzegovina
</a>
</td>
<td style="font-weight: bold; text-align:right">
380,498
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+287
</td>
<td style="font-weight: bold; text-align:right;">
15,814
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+2
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
117,458
</td>
<td style="font-weight: bold; text-align:right">
4,882
</td>
<td style="font-weight: bold; text-align:right">
1,800,193
</td>
<td style="font-weight: bold; text-align:right">
555,711
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bosnia-and-herzegovina-population/">
3,239,440
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
9
</td>
<td>
205
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
89
</td>
<td style="font-weight: bold; text-align:right">
0.6
</td>
<td style="font-weight: bold; text-align:right">
53,239
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
99
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/kenya/">
Kenya
</a>
</td>
<td style="font-weight: bold; text-align:right">
336,445
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+153
</td>
<td style="font-weight: bold; text-align:right;">
5,668
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
329,122
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+297
</td>
<td style="text-align:right;font-weight:bold;">
1,655
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
5,989
</td>
<td style="font-weight: bold; text-align:right">
101
</td>
<td style="font-weight: bold; text-align:right">
3,790,310
</td>
<td style="font-weight: bold; text-align:right">
67,474
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/kenya-population/">
56,174,415
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
167
</td>
<td>
9,911
</td>
<td>
15
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
29
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
100
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/zambia/">
Zambia
</a>
</td>
<td style="font-weight: bold; text-align:right">
327,102
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
4,008
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
322,093
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,001
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
16,836
</td>
<td style="font-weight: bold; text-align:right">
206
</td>
<td style="font-weight: bold; text-align:right">
3,576,701
</td>
<td style="font-weight: bold; text-align:right">
184,095
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/zambia-population/">
19,428,522
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
59
</td>
<td>
4,847
</td>
<td>
5
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
52
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
101
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/botswana/">
Botswana
</a>
</td>
<td style="font-weight: bold; text-align:right">
324,841
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+687
</td>
<td style="font-weight: bold; text-align:right;">
2,760
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+7
</td>
<td style="font-weight: bold; text-align:right">
321,024
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1,925
</td>
<td style="text-align:right;font-weight:bold;">
1,057
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
132,698
</td>
<td style="font-weight: bold; text-align:right">
1,127
</td>
<td style="font-weight: bold; text-align:right">
2,026,898
</td>
<td style="font-weight: bold; text-align:right">
827,993
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/botswana-population/">
2,447,965
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
8
</td>
<td>
887
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
281
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
432
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
102
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/macedonia/">
North Macedonia
</a>
</td>
<td style="font-weight: bold; text-align:right">
317,634
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+494
</td>
<td style="font-weight: bold; text-align:right;">
9,337
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
305,988
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+276
</td>
<td style="text-align:right;font-weight:bold;">
2,309
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
152,474
</td>
<td style="font-weight: bold; text-align:right">
4,482
</td>
<td style="font-weight: bold; text-align:right">
2,081,293
</td>
<td style="font-weight: bold; text-align:right">
999,084
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/macedonia-population/">
2,083,201
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
7
</td>
<td>
223
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
237
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,108
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
103
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/albania/">
Albania
</a>
</td>
<td style="font-weight: bold; text-align:right">
290,954
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
3,517
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
280,374
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
7,063
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
101,327
</td>
<td style="font-weight: bold; text-align:right">
1,225
</td>
<td style="font-weight: bold; text-align:right">
1,866,752
</td>
<td style="font-weight: bold; text-align:right">
650,114
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/albania-population/">
2,871,424
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
10
</td>
<td>
816
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,460
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
104
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/algeria/">
Algeria
</a>
</td>
<td style="font-weight: bold; text-align:right">
266,356
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+28
</td>
<td style="font-weight: bold; text-align:right;">
6,875
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
178,747
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+19
</td>
<td style="text-align:right;font-weight:bold;">
80,734
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
5,859
</td>
<td style="font-weight: bold; text-align:right">
151
</td>
<td style="font-weight: bold; text-align:right">
230,861
</td>
<td style="font-weight: bold; text-align:right">
5,079
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/algeria-population/">
45,457,663
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
171
</td>
<td>
6,612
</td>
<td>
197
</td>
<td style="font-weight: bold; text-align:right">
0.6
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,776
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
105
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/luxembourg/">
Luxembourg
</a>
</td>
<td style="font-weight: bold; text-align:right">
263,167
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,094
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
251,249
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
10,824
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
406,975
</td>
<td style="font-weight: bold; text-align:right">
1,692
</td>
<td style="font-weight: bold; text-align:right">
4,307,055
</td>
<td style="font-weight: bold; text-align:right">
6,660,659
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/luxembourg-population/">
646,641
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
591
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
16,739
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
106
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/nigeria/">
Nigeria
</a>
</td>
<td style="font-weight: bold; text-align:right">
258,934
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+60
</td>
<td style="font-weight: bold; text-align:right;">
3,144
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
250,472
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+16
</td>
<td style="text-align:right;font-weight:bold;">
5,318
</td>
<td style="font-weight: bold; text-align:right">
11
</td>
<td style="font-weight: bold; text-align:right">
1,196
</td>
<td style="font-weight: bold; text-align:right">
15
</td>
<td style="font-weight: bold; text-align:right">
5,349,305
</td>
<td style="font-weight: bold; text-align:right">
24,707
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/nigeria-population/">
216,505,530
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
836
</td>
<td>
68,863
</td>
<td>
40
</td>
<td style="font-weight: bold; text-align:right">
0.3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
25
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
107
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/zimbabwe/">
Zimbabwe
</a>
</td>
<td style="font-weight: bold; text-align:right">
256,047
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
5,566
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
249,834
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
647
</td>
<td style="font-weight: bold; text-align:right">
12
</td>
<td style="font-weight: bold; text-align:right">
16,733
</td>
<td style="font-weight: bold; text-align:right">
364
</td>
<td style="font-weight: bold; text-align:right">
2,421,838
</td>
<td style="font-weight: bold; text-align:right">
158,270
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/zimbabwe-population/">
15,301,924
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
60
</td>
<td>
2,749
</td>
<td>
6
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
42
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
108
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/montenegro/">
Montenegro
</a>
</td>
<td style="font-weight: bold; text-align:right">
245,369
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+466
</td>
<td style="font-weight: bold; text-align:right;">
2,730
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
239,369
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+483
</td>
<td style="text-align:right;font-weight:bold;">
3,270
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
390,574
</td>
<td style="font-weight: bold; text-align:right">
4,346
</td>
<td style="font-weight: bold; text-align:right">
2,513,663
</td>
<td style="font-weight: bold; text-align:right">
4,001,202
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/montenegro-population/">
628,227
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
230
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
742
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
5,205
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
109
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/uzbekistan/">
Uzbekistan
</a>
</td>
<td style="font-weight: bold; text-align:right">
241,953
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+71
</td>
<td style="font-weight: bold; text-align:right;">
1,637
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
238,891
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+92
</td>
<td style="text-align:right;font-weight:bold;">
1,425
</td>
<td style="font-weight: bold; text-align:right">
23
</td>
<td style="font-weight: bold; text-align:right">
7,023
</td>
<td style="font-weight: bold; text-align:right">
48
</td>
<td style="font-weight: bold; text-align:right">
1,377,915
</td>
<td style="font-weight: bold; text-align:right">
39,994
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/uzbekistan-population/">
34,453,391
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
142
</td>
<td>
21,047
</td>
<td>
25
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
41
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
110
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/mozambique/">
Mozambique
</a>
</td>
<td style="font-weight: bold; text-align:right">
228,887
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+47
</td>
<td style="font-weight: bold; text-align:right;">
2,215
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+1
</td>
<td style="font-weight: bold; text-align:right">
226,271
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+122
</td>
<td style="text-align:right;font-weight:bold;">
401
</td>
<td style="font-weight: bold; text-align:right">
11
</td>
<td style="font-weight: bold; text-align:right">
6,929
</td>
<td style="font-weight: bold; text-align:right">
67
</td>
<td style="font-weight: bold; text-align:right">
1,358,293
</td>
<td style="font-weight: bold; text-align:right">
41,120
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/mozambique-population/">
33,032,036
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
144
</td>
<td>
14,913
</td>
<td>
24
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
0.03
</td>
<td style="font-weight: bold; text-align:right">
12
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
111
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/laos/">
Laos
</a>
</td>
<td style="font-weight: bold; text-align:right">
210,433
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+32
</td>
<td style="font-weight: bold; text-align:right;">
757
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
28,096
</td>
<td style="font-weight: bold; text-align:right">
101
</td>
<td style="font-weight: bold; text-align:right">
1,233,207
</td>
<td style="font-weight: bold; text-align:right">
164,652
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/laos-population/">
7,489,772
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
36
</td>
<td>
9,894
</td>
<td>
6
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
26,972
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
112
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/martinique/">
Martinique
</a>
</td>
<td style="font-weight: bold; text-align:right">
207,969
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
987
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
104
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
206,878
</td>
<td style="font-weight: bold; text-align:right">
8
</td>
<td style="font-weight: bold; text-align:right">
555,065
</td>
<td style="font-weight: bold; text-align:right">
2,634
</td>
<td style="font-weight: bold; text-align:right">
828,928
</td>
<td style="font-weight: bold; text-align:right">
2,212,392
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/martinique-population/">
374,675
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
2
</td>
<td>
380
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
552,153
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
113
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/kyrgyzstan/">
Kyrgyzstan
</a>
</td>
<td style="font-weight: bold; text-align:right">
201,329
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+47
</td>
<td style="font-weight: bold; text-align:right;">
2,991
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
196,406
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,932
</td>
<td style="font-weight: bold; text-align:right">
131
</td>
<td style="font-weight: bold; text-align:right">
29,859
</td>
<td style="font-weight: bold; text-align:right">
444
</td>
<td style="font-weight: bold; text-align:right">
1,907,195
</td>
<td style="font-weight: bold; text-align:right">
282,858
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/kyrgyzstan-population/">
6,742,594
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
33
</td>
<td>
2,254
</td>
<td>
4
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
287
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
114
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/iceland/">
Iceland
</a>
</td>
<td style="font-weight: bold; text-align:right">
198,721
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
179
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
574,777
</td>
<td style="font-weight: bold; text-align:right">
518
</td>
<td style="font-weight: bold; text-align:right">
1,977,641
</td>
<td style="font-weight: bold; text-align:right">
5,720,090
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/iceland-population/">
345,736
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
1,931
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
355,349
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
115
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/maldives/">
Maldives
</a>
</td>
<td style="font-weight: bold; text-align:right">
183,491
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
307
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
163,687
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
19,497
</td>
<td style="font-weight: bold; text-align:right">
25
</td>
<td style="font-weight: bold; text-align:right">
327,744
</td>
<td style="font-weight: bold; text-align:right">
548
</td>
<td style="font-weight: bold; text-align:right">
2,213,831
</td>
<td style="font-weight: bold; text-align:right">
3,954,251
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/maldives-population/">
559,861
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
3
</td>
<td>
1,824
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
34,825
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
116
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/afghanistan/">
Afghanistan
</a>
</td>
<td style="font-weight: bold; text-align:right">
183,358
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+73
</td>
<td style="font-weight: bold; text-align:right;">
7,728
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
165,318
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+55
</td>
<td style="text-align:right;font-weight:bold;">
10,312
</td>
<td style="font-weight: bold; text-align:right">
1,124
</td>
<td style="font-weight: bold; text-align:right">
4,504
</td>
<td style="font-weight: bold; text-align:right">
190
</td>
<td style="font-weight: bold; text-align:right">
1,012,596
</td>
<td style="font-weight: bold; text-align:right">
24,875
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/afghanistan-population/">
40,707,111
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
222
</td>
<td>
5,267
</td>
<td>
40
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
253
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
117
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/el-salvador/">
El Salvador
</a>
</td>
<td style="font-weight: bold; text-align:right">
180,970
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
4,167
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+2
</td>
<td style="font-weight: bold; text-align:right">
165,895
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
10,908
</td>
<td style="font-weight: bold; text-align:right">
8
</td>
<td style="font-weight: bold; text-align:right">
27,618
</td>
<td style="font-weight: bold; text-align:right">
636
</td>
<td style="font-weight: bold; text-align:right">
2,284,873
</td>
<td style="font-weight: bold; text-align:right">
348,697
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/el-salvador-population/">
6,552,601
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
36
</td>
<td>
1,572
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
0.3
</td>
<td style="font-weight: bold; text-align:right">
1,665
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
118
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/brunei-darussalam/">
Brunei
</a>
</td>
<td style="font-weight: bold; text-align:right">
179,759
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,492
</td>
<td style="font-weight: bold; text-align:right;">
225
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
164,116
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
15,418
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
403,067
</td>
<td style="font-weight: bold; text-align:right">
505
</td>
<td style="font-weight: bold; text-align:right">
717,784
</td>
<td style="font-weight: bold; text-align:right">
1,609,461
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/brunei-darussalam-population/">
445,978
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
2
</td>
<td>
1,982
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
3,345
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
34,571
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
119
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/guadeloupe/">
Guadeloupe
</a>
</td>
<td style="font-weight: bold; text-align:right">
175,348
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
958
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
2,250
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
172,140
</td>
<td style="font-weight: bold; text-align:right">
19
</td>
<td style="font-weight: bold; text-align:right">
438,082
</td>
<td style="font-weight: bold; text-align:right">
2,393
</td>
<td style="font-weight: bold; text-align:right">
938,039
</td>
<td style="font-weight: bold; text-align:right">
2,343,557
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/guadeloupe-population/">
400,263
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
2
</td>
<td>
418
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
430,067
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
120
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/namibia/">
Namibia
</a>
</td>
<td style="font-weight: bold; text-align:right">
169,253
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
4,065
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
164,813
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
375
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
64,250
</td>
<td style="font-weight: bold; text-align:right">
1,543
</td>
<td style="font-weight: bold; text-align:right">
1,062,663
</td>
<td style="font-weight: bold; text-align:right">
403,400
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/namibia-population/">
2,634,269
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
16
</td>
<td>
648
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
142
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
121
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/trinidad-and-tobago/">
Trinidad and Tobago
</a>
</td>
<td style="font-weight: bold; text-align:right">
168,808
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+191
</td>
<td style="font-weight: bold; text-align:right;">
4,034
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+1
</td>
<td style="font-weight: bold; text-align:right">
158,668
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+272
</td>
<td style="text-align:right;font-weight:bold;">
6,106
</td>
<td style="font-weight: bold; text-align:right">
18
</td>
<td style="font-weight: bold; text-align:right">
119,834
</td>
<td style="font-weight: bold; text-align:right">
2,864
</td>
<td style="font-weight: bold; text-align:right">
781,653
</td>
<td style="font-weight: bold; text-align:right">
554,883
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/trinidad-and-tobago-population/">
1,408,681
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
8
</td>
<td>
349
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
136
</td>
<td style="font-weight: bold; text-align:right">
0.7
</td>
<td style="font-weight: bold; text-align:right">
4,335
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
122
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/uganda/">
Uganda
</a>
</td>
<td style="font-weight: bold; text-align:right">
168,569
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+72
</td>
<td style="font-weight: bold; text-align:right;">
3,627
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
100,420
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
64,522
</td>
<td style="font-weight: bold; text-align:right">
10
</td>
<td style="font-weight: bold; text-align:right">
3,463
</td>
<td style="font-weight: bold; text-align:right">
75
</td>
<td style="font-weight: bold; text-align:right">
2,975,238
</td>
<td style="font-weight: bold; text-align:right">
61,129
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/uganda-population/">
48,671,743
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
289
</td>
<td>
13,419
</td>
<td>
16
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,326
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
123
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/ghana/">
Ghana
</a>
</td>
<td style="font-weight: bold; text-align:right">
167,215
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,456
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
165,153
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
606
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
5,163
</td>
<td style="font-weight: bold; text-align:right">
45
</td>
<td style="font-weight: bold; text-align:right">
2,479,277
</td>
<td style="font-weight: bold; text-align:right">
76,547
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/ghana-population/">
32,388,938
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
194
</td>
<td>
22,245
</td>
<td>
13
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
19
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
124
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/jamaica/">
Jamaica
</a>
</td>
<td style="font-weight: bold; text-align:right">
144,349
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+136
</td>
<td style="font-weight: bold; text-align:right;">
3,164
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+3
</td>
<td style="font-weight: bold; text-align:right">
92,028
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+91
</td>
<td style="text-align:right;font-weight:bold;">
49,157
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
48,319
</td>
<td style="font-weight: bold; text-align:right">
1,059
</td>
<td style="font-weight: bold; text-align:right">
1,138,135
</td>
<td style="font-weight: bold; text-align:right">
380,980
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/jamaica-population/">
2,987,387
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
21
</td>
<td>
944
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
46
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
16,455
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
125
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cambodia/">
Cambodia
</a>
</td>
<td style="font-weight: bold; text-align:right">
136,407
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+17
</td>
<td style="font-weight: bold; text-align:right;">
3,056
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
133,267
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+9
</td>
<td style="text-align:right;font-weight:bold;">
84
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
7,936
</td>
<td style="font-weight: bold; text-align:right">
178
</td>
<td style="font-weight: bold; text-align:right">
3,002,402
</td>
<td style="font-weight: bold; text-align:right">
174,676
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cambodia-population/">
17,188,440
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
126
</td>
<td>
5,624
</td>
<td>
6
</td>
<td style="font-weight: bold; text-align:right">
1.0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
5
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
126
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/rwanda/">
Rwanda
</a>
</td>
<td style="font-weight: bold; text-align:right">
131,808
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+42
</td>
<td style="font-weight: bold; text-align:right;">
1,462
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
45,522
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
84,824
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
9,689
</td>
<td style="font-weight: bold; text-align:right">
107
</td>
<td style="font-weight: bold; text-align:right">
5,608,157
</td>
<td style="font-weight: bold; text-align:right">
412,254
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/rwanda-population/">
13,603,629
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
103
</td>
<td>
9,305
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6,235
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
127
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cameroon/">
Cameroon
</a>
</td>
<td style="font-weight: bold; text-align:right">
120,068
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,931
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
117,791
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
346
</td>
<td style="font-weight: bold; text-align:right">
13
</td>
<td style="font-weight: bold; text-align:right">
4,306
</td>
<td style="font-weight: bold; text-align:right">
69
</td>
<td style="font-weight: bold; text-align:right">
1,751,774
</td>
<td style="font-weight: bold; text-align:right">
62,818
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cameroon-population/">
27,886,520
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
232
</td>
<td>
14,441
</td>
<td>
16
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
12
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
128
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/malta/">
Malta
</a>
</td>
<td style="font-weight: bold; text-align:right">
110,191
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+280
</td>
<td style="font-weight: bold; text-align:right;">
768
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+2
</td>
<td style="font-weight: bold; text-align:right">
101,772
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+584
</td>
<td style="text-align:right;font-weight:bold;">
7,651
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
248,218
</td>
<td style="font-weight: bold; text-align:right">
1,730
</td>
<td style="font-weight: bold; text-align:right">
1,994,827
</td>
<td style="font-weight: bold; text-align:right">
4,493,582
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/malta-population/">
443,928
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
4
</td>
<td>
578
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
631
</td>
<td style="font-weight: bold; text-align:right">
5
</td>
<td style="font-weight: bold; text-align:right">
17,235
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
129
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/angola/">
Angola
</a>
</td>
<td style="font-weight: bold; text-align:right">
101,600
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+280
</td>
<td style="font-weight: bold; text-align:right;">
1,900
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
97,149
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
2,551
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,908
</td>
<td style="font-weight: bold; text-align:right">
54
</td>
<td style="font-weight: bold; text-align:right">
1,499,795
</td>
<td style="font-weight: bold; text-align:right">
42,924
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/angola-population/">
34,940,471
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
344
</td>
<td>
18,390
</td>
<td>
23
</td>
<td style="font-weight: bold; text-align:right">
8
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
73
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
130
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/democratic-republic-of-the-congo/">
DRC
</a>
</td>
<td style="font-weight: bold; text-align:right">
91,737
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,376
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
50,930
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
39,431
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
965
</td>
<td style="font-weight: bold; text-align:right">
14
</td>
<td style="font-weight: bold; text-align:right">
846,704
</td>
<td style="font-weight: bold; text-align:right">
8,905
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/democratic-republic-of-the-congo-population/">
95,085,590
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
1,037
</td>
<td>
69,103
</td>
<td>
112
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
415
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
131
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/french-guiana/">
French Guiana
</a>
</td>
<td style="font-weight: bold; text-align:right">
89,779
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
402
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
11,254
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
78,123
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
285,567
</td>
<td style="font-weight: bold; text-align:right">
1,279
</td>
<td style="font-weight: bold; text-align:right">
644,972
</td>
<td style="font-weight: bold; text-align:right">
2,051,509
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/french-guiana-population/">
314,389
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
4
</td>
<td>
782
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
248,492
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
132
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/barbados/">
Barbados
</a>
</td>
<td style="font-weight: bold; text-align:right">
87,002
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+311
</td>
<td style="font-weight: bold; text-align:right;">
479
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
84,706
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+166
</td>
<td style="text-align:right;font-weight:bold;">
1,817
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
301,997
</td>
<td style="font-weight: bold; text-align:right">
1,663
</td>
<td style="font-weight: bold; text-align:right">
714,126
</td>
<td style="font-weight: bold; text-align:right">
2,478,838
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/barbados-population/">
288,089
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
3
</td>
<td>
601
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
1,080
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6,307
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
133
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/malawi/">
Malawi
</a>
</td>
<td style="font-weight: bold; text-align:right">
86,823
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
2,651
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
83,506
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
666
</td>
<td style="font-weight: bold; text-align:right">
67
</td>
<td style="font-weight: bold; text-align:right">
4,312
</td>
<td style="font-weight: bold; text-align:right">
132
</td>
<td style="font-weight: bold; text-align:right">
596,340
</td>
<td style="font-weight: bold; text-align:right">
29,620
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/malawi-population/">
20,132,870
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
232
</td>
<td>
7,594
</td>
<td>
34
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
33
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
134
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/senegal/">
Senegal
</a>
</td>
<td style="font-weight: bold; text-align:right">
86,631
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+37
</td>
<td style="font-weight: bold; text-align:right;">
1,968
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
84,535
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+18
</td>
<td style="text-align:right;font-weight:bold;">
128
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,911
</td>
<td style="font-weight: bold; text-align:right">
112
</td>
<td style="font-weight: bold; text-align:right">
1,123,868
</td>
<td style="font-weight: bold; text-align:right">
63,714
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/senegal-population/">
17,639,141
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
204
</td>
<td>
8,963
</td>
<td>
16
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
135
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/channel-islands/">
Channel Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
85,848
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,330
</td>
<td style="font-weight: bold; text-align:right;">
181
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
82,813
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1,633
</td>
<td style="text-align:right;font-weight:bold;">
2,854
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
484,705
</td>
<td style="font-weight: bold; text-align:right">
1,022
</td>
<td style="font-weight: bold; text-align:right">
1,252,808
</td>
<td style="font-weight: bold; text-align:right">
7,073,456
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/channel-islands-population/">
177,114
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
979
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
7,509
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
16,114
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
136
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cote-d-ivoire/">
Ivory Coast
</a>
</td>
<td style="font-weight: bold; text-align:right">
84,347
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+99
</td>
<td style="font-weight: bold; text-align:right;">
806
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
83,259
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+18
</td>
<td style="text-align:right;font-weight:bold;">
282
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,045
</td>
<td style="font-weight: bold; text-align:right">
29
</td>
<td style="font-weight: bold; text-align:right">
1,563,566
</td>
<td style="font-weight: bold; text-align:right">
56,439
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cote-d-ivoire-population/">
27,703,542
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
328
</td>
<td>
34,372
</td>
<td>
18
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
10
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
137
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/suriname/">
Suriname
</a>
</td>
<td style="font-weight: bold; text-align:right">
80,919
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,377
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
49,590
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
29,952
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
135,476
</td>
<td style="font-weight: bold; text-align:right">
2,305
</td>
<td style="font-weight: bold; text-align:right">
238,251
</td>
<td style="font-weight: bold; text-align:right">
398,883
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/suriname-population/">
597,296
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
7
</td>
<td>
434
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
50,146
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
138
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/french-polynesia/">
French Polynesia
</a>
</td>
<td style="font-weight: bold; text-align:right">
73,858
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
649
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
<td style="font-weight: bold; text-align:right">
259,879
</td>
<td style="font-weight: bold; text-align:right">
2,284
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/french-polynesia-population/">
284,202
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
4
</td>
<td>
438
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
139,721
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
139
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/swaziland/">
Eswatini
</a>
</td>
<td style="font-weight: bold; text-align:right">
73,230
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1
</td>
<td style="font-weight: bold; text-align:right;">
1,417
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
71,731
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+12
</td>
<td style="text-align:right;font-weight:bold;">
82
</td>
<td style="font-weight: bold; text-align:right">
11
</td>
<td style="font-weight: bold; text-align:right">
61,822
</td>
<td style="font-weight: bold; text-align:right">
1,196
</td>
<td style="font-weight: bold; text-align:right">
1,038,765
</td>
<td style="font-weight: bold; text-align:right">
876,938
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/swaziland-population/">
1,184,537
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
16
</td>
<td>
836
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
0.8
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
69
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
140
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/guyana/">
Guyana
</a>
</td>
<td style="font-weight: bold; text-align:right">
68,627
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+127
</td>
<td style="font-weight: bold; text-align:right;">
1,264
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
66,447
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+88
</td>
<td style="text-align:right;font-weight:bold;">
916
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
86,405
</td>
<td style="font-weight: bold; text-align:right">
1,591
</td>
<td style="font-weight: bold; text-align:right">
668,394
</td>
<td style="font-weight: bold; text-align:right">
841,539
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/guyana-population/">
794,252
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
12
</td>
<td>
628
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
160
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,153
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
141
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/fiji/">
Fiji
</a>
</td>
<td style="font-weight: bold; text-align:right">
66,713
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+79
</td>
<td style="font-weight: bold; text-align:right;">
869
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
64,320
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+336
</td>
<td style="text-align:right;font-weight:bold;">
1,524
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
73,341
</td>
<td style="font-weight: bold; text-align:right">
955
</td>
<td style="font-weight: bold; text-align:right">
587,132
</td>
<td style="font-weight: bold; text-align:right">
645,467
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/fiji-population/">
909,624
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
14
</td>
<td>
1,047
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
87
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,675
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
142
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/new-caledonia/">
New Caledonia
</a>
</td>
<td style="font-weight: bold; text-align:right">
66,596
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
314
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
64,483
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,799
</td>
<td style="font-weight: bold; text-align:right">
9
</td>
<td style="font-weight: bold; text-align:right">
228,800
</td>
<td style="font-weight: bold; text-align:right">
1,079
</td>
<td style="font-weight: bold; text-align:right">
98,964
</td>
<td style="font-weight: bold; text-align:right">
340,004
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/new-caledonia-population/">
291,067
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
4
</td>
<td>
927
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6,181
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
143
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/madagascar/">
Madagascar
</a>
</td>
<td style="font-weight: bold; text-align:right">
66,098
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,403
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
63,895
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
800
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
2,269
</td>
<td style="font-weight: bold; text-align:right">
48
</td>
<td style="font-weight: bold; text-align:right">
478,036
</td>
<td style="font-weight: bold; text-align:right">
16,407
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/madagascar-population/">
29,135,325
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
441
</td>
<td>
20,766
</td>
<td>
61
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
27
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
144
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/belize/">
Belize
</a>
</td>
<td style="font-weight: bold; text-align:right">
65,840
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+332
</td>
<td style="font-weight: bold; text-align:right;">
680
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
64,409
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+296
</td>
<td style="text-align:right;font-weight:bold;">
751
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
159,700
</td>
<td style="font-weight: bold; text-align:right">
1,649
</td>
<td style="font-weight: bold; text-align:right">
576,016
</td>
<td style="font-weight: bold; text-align:right">
1,397,168
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/belize-population/">
412,274
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
6
</td>
<td>
606
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
805
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,822
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
145
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/sudan/">
Sudan
</a>
</td>
<td style="font-weight: bold; text-align:right">
62,795
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
4,955
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,367
</td>
<td style="font-weight: bold; text-align:right">
108
</td>
<td style="font-weight: bold; text-align:right">
562,941
</td>
<td style="font-weight: bold; text-align:right">
12,257
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/sudan-population/">
45,926,466
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
731
</td>
<td>
9,269
</td>
<td>
82
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
381
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
146
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cabo-verde/">
Cabo Verde
</a>
</td>
<td style="font-weight: bold; text-align:right">
61,776
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
409
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
60,941
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
426
</td>
<td style="font-weight: bold; text-align:right">
23
</td>
<td style="font-weight: bold; text-align:right">
108,715
</td>
<td style="font-weight: bold; text-align:right">
720
</td>
<td style="font-weight: bold; text-align:right">
401,416
</td>
<td style="font-weight: bold; text-align:right">
706,421
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cabo-verde-population/">
568,239
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
9
</td>
<td>
1,389
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
750
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
147
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/mauritania/">
Mauritania
</a>
</td>
<td style="font-weight: bold; text-align:right">
61,640
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+97
</td>
<td style="font-weight: bold; text-align:right;">
986
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
58,986
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+156
</td>
<td style="text-align:right;font-weight:bold;">
1,668
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
12,586
</td>
<td style="font-weight: bold; text-align:right">
201
</td>
<td style="font-weight: bold; text-align:right">
887,638
</td>
<td style="font-weight: bold; text-align:right">
181,239
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/mauritania-population/">
4,897,620
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
79
</td>
<td>
4,967
</td>
<td>
6
</td>
<td style="font-weight: bold; text-align:right">
20
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
341
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
148
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bhutan/">
Bhutan
</a>
</td>
<td style="font-weight: bold; text-align:right">
59,940
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
21
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
59,845
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
74
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
75,984
</td>
<td style="font-weight: bold; text-align:right">
27
</td>
<td style="font-weight: bold; text-align:right">
2,303,734
</td>
<td style="font-weight: bold; text-align:right">
2,920,381
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bhutan-population/">
788,847
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
13
</td>
<td>
37,564
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
94
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
149
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/syria/">
Syria
</a>
</td>
<td style="font-weight: bold; text-align:right">
55,966
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+6
</td>
<td style="font-weight: bold; text-align:right;">
3,150
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
52,778
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+2
</td>
<td style="text-align:right;font-weight:bold;">
38
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,048
</td>
<td style="font-weight: bold; text-align:right">
172
</td>
<td style="font-weight: bold; text-align:right">
146,269
</td>
<td style="font-weight: bold; text-align:right">
7,965
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/syria-population/">
18,363,203
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
328
</td>
<td>
5,830
</td>
<td>
126
</td>
<td style="font-weight: bold; text-align:right">
0.3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
150
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/gabon/">
Gabon
</a>
</td>
<td style="font-weight: bold; text-align:right">
48,157
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
305
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
47,391
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
461
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
20,648
</td>
<td style="font-weight: bold; text-align:right">
131
</td>
<td style="font-weight: bold; text-align:right">
1,604,748
</td>
<td style="font-weight: bold; text-align:right">
688,057
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/gabon-population/">
2,332,288
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
48
</td>
<td>
7,647
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
198
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
151
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/seychelles/">
Seychelles
</a>
</td>
<td style="font-weight: bold; text-align:right">
45,185
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+185
</td>
<td style="font-weight: bold; text-align:right;">
167
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
44,755
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+128
</td>
<td style="text-align:right;font-weight:bold;">
263
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
453,747
</td>
<td style="font-weight: bold; text-align:right">
1,677
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/seychelles-population/">
99,582
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
2
</td>
<td>
596
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
1,858
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,641
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
152
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/curacao/">
Curaçao
</a>
</td>
<td style="font-weight: bold; text-align:right">
44,782
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
280
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
44,339
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
163
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
270,661
</td>
<td style="font-weight: bold; text-align:right">
1,692
</td>
<td style="font-weight: bold; text-align:right">
496,693
</td>
<td style="font-weight: bold; text-align:right">
3,002,001
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/curacao-population/">
165,454
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
4
</td>
<td>
591
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
985
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
153
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/papua-new-guinea/">
Papua New Guinea
</a>
</td>
<td style="font-weight: bold; text-align:right">
44,758
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+6
</td>
<td style="font-weight: bold; text-align:right;">
662
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
43,982
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
114
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
<td style="font-weight: bold; text-align:right">
4,817
</td>
<td style="font-weight: bold; text-align:right">
71
</td>
<td style="font-weight: bold; text-align:right">
249,149
</td>
<td style="font-weight: bold; text-align:right">
26,816
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/papua-new-guinea-population/">
9,290,895
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
208
</td>
<td>
14,035
</td>
<td>
37
</td>
<td style="font-weight: bold; text-align:right">
0.6
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
12
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
154
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/andorra/">
Andorra
</a>
</td>
<td style="font-weight: bold; text-align:right">
44,671
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
153
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
43,802
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
716
</td>
<td style="font-weight: bold; text-align:right">
14
</td>
<td style="font-weight: bold; text-align:right">
576,281
</td>
<td style="font-weight: bold; text-align:right">
1,974
</td>
<td style="font-weight: bold; text-align:right">
249,838
</td>
<td style="font-weight: bold; text-align:right">
3,223,051
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/andorra-population/">
77,516
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
507
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
9,237
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
155
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/burundi/">
Burundi
</a>
</td>
<td style="font-weight: bold; text-align:right">
43,060
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
38
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,415
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
345,742
</td>
<td style="font-weight: bold; text-align:right">
27,420
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/burundi-population/">
12,609,279
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
293
</td>
<td>
331,823
</td>
<td>
36
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,351
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
156
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/aruba/">
Aruba
</a>
</td>
<td style="font-weight: bold; text-align:right">
41,448
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
224
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
40,882
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
342
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
384,897
</td>
<td style="font-weight: bold; text-align:right">
2,080
</td>
<td style="font-weight: bold; text-align:right">
177,885
</td>
<td style="font-weight: bold; text-align:right">
1,651,886
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/aruba-population/">
107,686
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
3
</td>
<td>
481
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,176
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
157
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/mauritius/">
Mauritius
</a>
</td>
<td style="font-weight: bold; text-align:right">
38,737
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,008
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
36,856
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
873
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
30,357
</td>
<td style="font-weight: bold; text-align:right">
790
</td>
<td style="font-weight: bold; text-align:right">
358,675
</td>
<td style="font-weight: bold; text-align:right">
281,082
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/mauritius-population/">
1,276,049
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
33
</td>
<td>
1,266
</td>
<td>
4
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
684
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
158
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/mayotte/">
Mayotte
</a>
</td>
<td style="font-weight: bold; text-align:right">
37,958
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
187
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
2,964
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
34,807
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
132,641
</td>
<td style="font-weight: bold; text-align:right">
653
</td>
<td style="font-weight: bold; text-align:right">
176,919
</td>
<td style="font-weight: bold; text-align:right">
618,230
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/mayotte-population/">
286,170
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
8
</td>
<td>
1,530
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
121,630
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
159
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/togo/">
Togo
</a>
</td>
<td style="font-weight: bold; text-align:right">
37,718
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+47
</td>
<td style="font-weight: bold; text-align:right;">
275
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
37,164
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+27
</td>
<td style="text-align:right;font-weight:bold;">
279
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,349
</td>
<td style="font-weight: bold; text-align:right">
32
</td>
<td style="font-weight: bold; text-align:right">
760,061
</td>
<td style="font-weight: bold; text-align:right">
87,641
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/togo-population/">
8,672,391
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
230
</td>
<td>
31,536
</td>
<td>
11
</td>
<td style="font-weight: bold; text-align:right">
5
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
32
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
160
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/tanzania/">
Tanzania
</a>
</td>
<td style="font-weight: bold; text-align:right">
37,510
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,336
</td>
<td style="font-weight: bold; text-align:right;">
841
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
<td style="font-weight: bold; text-align:right">
594
</td>
<td style="font-weight: bold; text-align:right">
13
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/tanzania-population/">
63,186,161
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
1,685
</td>
<td>
75,132
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
21
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
577
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
161
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/guinea/">
Guinea
</a>
</td>
<td style="font-weight: bold; text-align:right">
37,358
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
443
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
36,419
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
496
</td>
<td style="font-weight: bold; text-align:right">
8
</td>
<td style="font-weight: bold; text-align:right">
2,696
</td>
<td style="font-weight: bold; text-align:right">
32
</td>
<td style="font-weight: bold; text-align:right">
660,107
</td>
<td style="font-weight: bold; text-align:right">
47,642
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/guinea-population/">
13,855,517
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
371
</td>
<td>
31,277
</td>
<td>
21
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
36
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
162
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/isle-of-man/">
Isle of Man
</a>
</td>
<td style="font-weight: bold; text-align:right">
37,239
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
110
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
26,794
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
10,335
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
433,284
</td>
<td style="font-weight: bold; text-align:right">
1,280
</td>
<td style="font-weight: bold; text-align:right">
150,753
</td>
<td style="font-weight: bold; text-align:right">
1,754,043
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/isle-of-man-population/">
85,946
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
781
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
120,250
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
163
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bahamas/">
Bahamas
</a>
</td>
<td style="font-weight: bold; text-align:right">
36,354
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+55
</td>
<td style="font-weight: bold; text-align:right;">
822
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
34,842
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+70
</td>
<td style="text-align:right;font-weight:bold;">
690
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
90,688
</td>
<td style="font-weight: bold; text-align:right">
2,051
</td>
<td style="font-weight: bold; text-align:right">
241,422
</td>
<td style="font-weight: bold; text-align:right">
602,248
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bahamas-population/">
400,868
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
11
</td>
<td>
488
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
137
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,721
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
164
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/faeroe-islands/">
Faeroe Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
34,658
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
28
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
5
</td>
<td style="font-weight: bold; text-align:right">
703,859
</td>
<td style="font-weight: bold; text-align:right">
569
</td>
<td style="font-weight: bold; text-align:right">
778,000
</td>
<td style="font-weight: bold; text-align:right">
15,800,162
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/faeroe-islands-population/">
49,240
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
1
</td>
<td>
1,759
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
547,055
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
165
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/lesotho/">
Lesotho
</a>
</td>
<td style="font-weight: bold; text-align:right">
34,040
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
702
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
24,155
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
9,183
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
15,638
</td>
<td style="font-weight: bold; text-align:right">
323
</td>
<td style="font-weight: bold; text-align:right">
431,221
</td>
<td style="font-weight: bold; text-align:right">
198,107
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/lesotho-population/">
2,176,704
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
64
</td>
<td>
3,101
</td>
<td>
5
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,219
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
166
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/haiti/">
Haiti
</a>
</td>
<td style="font-weight: bold; text-align:right">
32,070
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+90
</td>
<td style="font-weight: bold; text-align:right;">
837
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
29,884
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+6
</td>
<td style="text-align:right;font-weight:bold;">
1,349
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,745
</td>
<td style="font-weight: bold; text-align:right">
72
</td>
<td style="font-weight: bold; text-align:right">
132,422
</td>
<td style="font-weight: bold; text-align:right">
11,333
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/haiti-population/">
11,684,564
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
364
</td>
<td>
13,960
</td>
<td>
88
</td>
<td style="font-weight: bold; text-align:right">
8
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
115
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
167
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/mali/">
Mali
</a>
</td>
<td style="font-weight: bold; text-align:right">
31,196
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1
</td>
<td style="font-weight: bold; text-align:right;">
737
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
30,367
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+4
</td>
<td style="text-align:right;font-weight:bold;">
92
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,455
</td>
<td style="font-weight: bold; text-align:right">
34
</td>
<td style="font-weight: bold; text-align:right">
707,472
</td>
<td style="font-weight: bold; text-align:right">
33,007
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/mali-population/">
21,434,224
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
687
</td>
<td>
29,083
</td>
<td>
30
</td>
<td style="font-weight: bold; text-align:right">
0.05
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
168
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cayman-islands/">
Cayman Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
27,966
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
29
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
8,553
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
19,384
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
415,616
</td>
<td style="font-weight: bold; text-align:right">
431
</td>
<td style="font-weight: bold; text-align:right">
222,773
</td>
<td style="font-weight: bold; text-align:right">
3,310,739
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cayman-islands-population/">
67,288
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
2
</td>
<td>
2,320
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
288,075
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
169
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saint-lucia/">
Saint Lucia
</a>
</td>
<td style="font-weight: bold; text-align:right">
27,408
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
385
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
26,840
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
183
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
147,888
</td>
<td style="font-weight: bold; text-align:right">
2,077
</td>
<td style="font-weight: bold; text-align:right">
209,716
</td>
<td style="font-weight: bold; text-align:right">
1,131,582
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saint-lucia-population/">
185,330
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
7
</td>
<td>
481
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
987
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
170
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/benin/">
Benin
</a>
</td>
<td style="font-weight: bold; text-align:right">
27,216
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
163
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
25,506
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,547
</td>
<td style="font-weight: bold; text-align:right">
5
</td>
<td style="font-weight: bold; text-align:right">
2,132
</td>
<td style="font-weight: bold; text-align:right">
13
</td>
<td style="font-weight: bold; text-align:right">
604,310
</td>
<td style="font-weight: bold; text-align:right">
47,332
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/benin-population/">
12,767,443
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
469
</td>
<td>
78,328
</td>
<td>
21
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
121
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
171
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/somalia/">
Somalia
</a>
</td>
<td style="font-weight: bold; text-align:right">
26,900
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,350
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
13,182
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
12,368
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,602
</td>
<td style="font-weight: bold; text-align:right">
80
</td>
<td style="font-weight: bold; text-align:right">
400,466
</td>
<td style="font-weight: bold; text-align:right">
23,847
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/somalia-population/">
16,792,828
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
624
</td>
<td>
12,439
</td>
<td>
42
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
737
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
172
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/congo/">
Congo
</a>
</td>
<td style="font-weight: bold; text-align:right">
24,421
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
386
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
20,178
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
3,857
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,215
</td>
<td style="font-weight: bold; text-align:right">
67
</td>
<td style="font-weight: bold; text-align:right">
347,815
</td>
<td style="font-weight: bold; text-align:right">
60,034
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/congo-population/">
5,793,654
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
237
</td>
<td>
15,009
</td>
<td>
17
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
666
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
173
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/timor-leste/">
Timor-Leste
</a>
</td>
<td style="font-weight: bold; text-align:right">
22,975
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1
</td>
<td style="font-weight: bold; text-align:right;">
133
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
22,829
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+4
</td>
<td style="text-align:right;font-weight:bold;">
13
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
16,777
</td>
<td style="font-weight: bold; text-align:right">
97
</td>
<td style="font-weight: bold; text-align:right">
271,206
</td>
<td style="font-weight: bold; text-align:right">
198,048
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/timor-leste-population/">
1,369,395
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
60
</td>
<td>
10,296
</td>
<td>
5
</td>
<td style="font-weight: bold; text-align:right">
0.7
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
9
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
174
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/solomon-islands/">
Solomon Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
21,544
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
153
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
16,357
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
5,034
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
29,878
</td>
<td style="font-weight: bold; text-align:right">
212
</td>
<td style="font-weight: bold; text-align:right">
5,117
</td>
<td style="font-weight: bold; text-align:right">
7,097
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/solomon-islands-population/">
721,059
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
33
</td>
<td>
4,713
</td>
<td>
141
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6,981
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
175
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/burkina-faso/">
Burkina Faso
</a>
</td>
<td style="font-weight: bold; text-align:right">
20,853
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
382
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
20,439
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
32
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
945
</td>
<td style="font-weight: bold; text-align:right">
17
</td>
<td style="font-weight: bold; text-align:right">
248,995
</td>
<td style="font-weight: bold; text-align:right">
11,284
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/burkina-faso-population/">
22,066,182
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
1,058
</td>
<td>
57,765
</td>
<td>
89
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
176
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/gibraltar/">
Gibraltar
</a>
</td>
<td style="font-weight: bold; text-align:right">
19,862
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+66
</td>
<td style="font-weight: bold; text-align:right;">
105
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
16,579
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
3,178
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
589,884
</td>
<td style="font-weight: bold; text-align:right">
3,118
</td>
<td style="font-weight: bold; text-align:right">
534,283
</td>
<td style="font-weight: bold; text-align:right">
15,867,750
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/gibraltar-population/">
33,671
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
321
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
1,960
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
94,384
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
177
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/san-marino/">
San Marino
</a>
</td>
<td style="font-weight: bold; text-align:right">
18,977
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
116
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
18,267
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
594
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
556,902
</td>
<td style="font-weight: bold; text-align:right">
3,404
</td>
<td style="font-weight: bold; text-align:right">
152,231
</td>
<td style="font-weight: bold; text-align:right">
4,467,396
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/san-marino-population/">
34,076
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
294
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
17,432
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
178
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/grenada/">
Grenada
</a>
</td>
<td style="font-weight: bold; text-align:right">
18,592
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
233
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
18,178
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
181
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
163,689
</td>
<td style="font-weight: bold; text-align:right">
2,051
</td>
<td style="font-weight: bold; text-align:right">
172,268
</td>
<td style="font-weight: bold; text-align:right">
1,516,697
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/grenada-population/">
113,581
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
6
</td>
<td>
487
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,594
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
179
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/nicaragua/">
Nicaragua
</a>
</td>
<td style="font-weight: bold; text-align:right">
18,491
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
225
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
4,225
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
14,041
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,725
</td>
<td style="font-weight: bold; text-align:right">
33
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/nicaragua-population/">
6,784,471
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
367
</td>
<td>
30,153
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,070
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
180
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/liechtenstein/">
Liechtenstein
</a>
</td>
<td style="font-weight: bold; text-align:right">
18,299
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+42
</td>
<td style="font-weight: bold; text-align:right;">
85
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
17,958
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+27
</td>
<td style="text-align:right;font-weight:bold;">
256
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
477,158
</td>
<td style="font-weight: bold; text-align:right">
2,216
</td>
<td style="font-weight: bold; text-align:right">
102,174
</td>
<td style="font-weight: bold; text-align:right">
2,664,250
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/liechtenstein-population/">
38,350
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
451
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
1,095
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6,675
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
181
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/tajikistan/">
Tajikistan
</a>
</td>
<td style="font-weight: bold; text-align:right">
17,786
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
125
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
17,264
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
397
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,784
</td>
<td style="font-weight: bold; text-align:right">
13
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/tajikistan-population/">
9,972,283
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
561
</td>
<td>
79,778
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
40
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
182
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/south-sudan/">
South Sudan
</a>
</td>
<td style="font-weight: bold; text-align:right">
17,733
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
138
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
15,630
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,965
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
1,547
</td>
<td style="font-weight: bold; text-align:right">
12
</td>
<td style="font-weight: bold; text-align:right">
410,280
</td>
<td style="font-weight: bold; text-align:right">
35,801
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/south-sudan-population/">
11,460,002
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
646
</td>
<td>
83,043
</td>
<td>
28
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
171
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
183
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bermuda/">
Bermuda
</a>
</td>
<td style="font-weight: bold; text-align:right">
16,722
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
141
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
16,201
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
380
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
270,534
</td>
<td style="font-weight: bold; text-align:right">
2,281
</td>
<td style="font-weight: bold; text-align:right">
958,749
</td>
<td style="font-weight: bold; text-align:right">
15,510,977
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bermuda-population/">
61,811
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
4
</td>
<td>
438
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6,148
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
184
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/equatorial-guinea/">
Equatorial Guinea
</a>
</td>
<td style="font-weight: bold; text-align:right">
16,504
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
183
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
15,862
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
459
</td>
<td style="font-weight: bold; text-align:right">
5
</td>
<td style="font-weight: bold; text-align:right">
11,028
</td>
<td style="font-weight: bold; text-align:right">
122
</td>
<td style="font-weight: bold; text-align:right">
346,685
</td>
<td style="font-weight: bold; text-align:right">
231,664
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/equatorial-guinea-population/">
1,496,500
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
91
</td>
<td>
8,178
</td>
<td>
4
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
307
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
185
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/djibouti/">
Djibouti
</a>
</td>
<td style="font-weight: bold; text-align:right">
15,690
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
189
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
15,427
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
74
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
15,425
</td>
<td style="font-weight: bold; text-align:right">
186
</td>
<td style="font-weight: bold; text-align:right">
305,941
</td>
<td style="font-weight: bold; text-align:right">
300,782
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/djibouti-population/">
1,017,152
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
65
</td>
<td>
5,382
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
73
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
186
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/samoa/">
Samoa
</a>
</td>
<td style="font-weight: bold; text-align:right">
15,134
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
29
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,605
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
13,500
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
75,260
</td>
<td style="font-weight: bold; text-align:right">
144
</td>
<td style="font-weight: bold; text-align:right">
168,260
</td>
<td style="font-weight: bold; text-align:right">
836,744
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/samoa-population/">
201,089
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
13
</td>
<td>
6,934
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
67,134
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
187
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/dominica/">
Dominica
</a>
</td>
<td style="font-weight: bold; text-align:right">
14,852
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
68
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
14,554
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
230
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
205,283
</td>
<td style="font-weight: bold; text-align:right">
940
</td>
<td style="font-weight: bold; text-align:right">
210,195
</td>
<td style="font-weight: bold; text-align:right">
2,905,292
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/dominica-population/">
72,349
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
5
</td>
<td>
1,064
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,179
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
188
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/central-african-republic/">
CAR
</a>
</td>
<td style="font-weight: bold; text-align:right">
14,712
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
113
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
6,859
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
7,740
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
2,942
</td>
<td style="font-weight: bold; text-align:right">
23
</td>
<td style="font-weight: bold; text-align:right">
81,294
</td>
<td style="font-weight: bold; text-align:right">
16,258
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/central-african-republic-population/">
5,000,148
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
340
</td>
<td>
44,249
</td>
<td>
62
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,548
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
189
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/monaco/">
Monaco
</a>
</td>
<td style="font-weight: bold; text-align:right">
13,696
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+51
</td>
<td style="font-weight: bold; text-align:right;">
57
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
13,338
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+30
</td>
<td style="text-align:right;font-weight:bold;">
301
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
344,069
</td>
<td style="font-weight: bold; text-align:right">
1,432
</td>
<td style="font-weight: bold; text-align:right">
77,770
</td>
<td style="font-weight: bold; text-align:right">
1,953,726
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/monaco-population/">
39,806
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
698
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
1,281
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
7,562
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
190
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/tonga/">
Tonga
</a>
</td>
<td style="font-weight: bold; text-align:right">
12,382
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
12
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
12,223
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
147
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
114,515
</td>
<td style="font-weight: bold; text-align:right">
111
</td>
<td style="font-weight: bold; text-align:right">
535,009
</td>
<td style="font-weight: bold; text-align:right">
4,948,014
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/tonga-population/">
108,126
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
9
</td>
<td>
9,011
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,360
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
191
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/gambia/">
Gambia
</a>
</td>
<td style="font-weight: bold; text-align:right">
12,009
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
365
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
11,591
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
53
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,701
</td>
<td style="font-weight: bold; text-align:right">
143
</td>
<td style="font-weight: bold; text-align:right">
155,686
</td>
<td style="font-weight: bold; text-align:right">
60,948
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/gambia-population/">
2,554,413
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
213
</td>
<td>
6,998
</td>
<td>
16
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
21
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
192
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/greenland/">
Greenland
</a>
</td>
<td style="font-weight: bold; text-align:right">
11,971
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
21
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
2,761
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
9,189
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
210,128
</td>
<td style="font-weight: bold; text-align:right">
369
</td>
<td style="font-weight: bold; text-align:right">
164,926
</td>
<td style="font-weight: bold; text-align:right">
2,894,962
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/greenland-population/">
56,970
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
5
</td>
<td>
2,713
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
161,295
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
193
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/yemen/">
Yemen
</a>
</td>
<td style="font-weight: bold; text-align:right">
11,832
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
2,149
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
9,108
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
575
</td>
<td style="font-weight: bold; text-align:right">
23
</td>
<td style="font-weight: bold; text-align:right">
380
</td>
<td style="font-weight: bold; text-align:right">
69
</td>
<td style="font-weight: bold; text-align:right">
265,253
</td>
<td style="font-weight: bold; text-align:right">
8,513
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/yemen-population/">
31,158,750
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
2,633
</td>
<td>
14,499
</td>
<td>
117
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
18
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
194
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/vanuatu/">
Vanuatu
</a>
</td>
<td style="font-weight: bold; text-align:right">
11,690
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
14
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
11,502
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
174
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
36,337
</td>
<td style="font-weight: bold; text-align:right">
44
</td>
<td style="font-weight: bold; text-align:right">
24,976
</td>
<td style="font-weight: bold; text-align:right">
77,636
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/vanuatu-population/">
321,707
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
28
</td>
<td>
22,979
</td>
<td>
13
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
541
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
195
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saint-martin/">
Saint Martin
</a>
</td>
<td style="font-weight: bold; text-align:right">
11,224
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
63
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,399
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
9,762
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
<td style="font-weight: bold; text-align:right">
280,572
</td>
<td style="font-weight: bold; text-align:right">
1,575
</td>
<td style="font-weight: bold; text-align:right">
112,382
</td>
<td style="font-weight: bold; text-align:right">
2,809,269
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saint-martin-population/">
40,004
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
4
</td>
<td>
635
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
244,026
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
196
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/sint-maarten/">
Sint Maarten
</a>
</td>
<td style="font-weight: bold; text-align:right">
10,656
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
87
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
10,524
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
45
</td>
<td style="font-weight: bold; text-align:right">
10
</td>
<td style="font-weight: bold; text-align:right">
242,933
</td>
<td style="font-weight: bold; text-align:right">
1,983
</td>
<td style="font-weight: bold; text-align:right">
62,056
</td>
<td style="font-weight: bold; text-align:right">
1,414,736
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/sint-maarten-population/">
43,864
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
4
</td>
<td>
504
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,026
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
197
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/caribbean-netherlands/">
Caribbean Netherlands
</a>
</td>
<td style="font-weight: bold; text-align:right">
10,567
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+44
</td>
<td style="font-weight: bold; text-align:right;">
35
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
10,424
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+48
</td>
<td style="text-align:right;font-weight:bold;">
108
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
395,501
</td>
<td style="font-weight: bold; text-align:right">
1,310
</td>
<td style="font-weight: bold; text-align:right">
30,126
</td>
<td style="font-weight: bold; text-align:right">
1,127,554
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/caribbean-netherlands-population/">
26,718
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
3
</td>
<td>
763
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
1,647
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,042
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
198
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/eritrea/">
Eritrea
</a>
</td>
<td style="font-weight: bold; text-align:right">
9,852
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+8
</td>
<td style="font-weight: bold; text-align:right;">
103
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
9,702
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1
</td>
<td style="text-align:right;font-weight:bold;">
47
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,702
</td>
<td style="font-weight: bold; text-align:right">
28
</td>
<td style="font-weight: bold; text-align:right">
23,693
</td>
<td style="font-weight: bold; text-align:right">
6,498
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/eritrea-population/">
3,646,011
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
370
</td>
<td>
35,398
</td>
<td>
154
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
13
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
199
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/niger/">
Niger
</a>
</td>
<td style="font-weight: bold; text-align:right">
9,096
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
311
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
8,628
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
157
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
350
</td>
<td style="font-weight: bold; text-align:right">
12
</td>
<td style="font-weight: bold; text-align:right">
254,538
</td>
<td style="font-weight: bold; text-align:right">
9,796
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/niger-population/">
25,984,404
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
2,857
</td>
<td>
83,551
</td>
<td>
102
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
200
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/antigua-and-barbuda/">
Antigua and Barbuda
</a>
</td>
<td style="font-weight: bold; text-align:right">
8,704
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+18
</td>
<td style="font-weight: bold; text-align:right;">
143
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
8,528
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+12
</td>
<td style="text-align:right;font-weight:bold;">
33
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
87,412
</td>
<td style="font-weight: bold; text-align:right">
1,436
</td>
<td style="font-weight: bold; text-align:right">
18,901
</td>
<td style="font-weight: bold; text-align:right">
189,819
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/antigua-and-barbuda-population/">
99,574
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
11
</td>
<td>
696
</td>
<td>
5
</td>
<td style="font-weight: bold; text-align:right">
181
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
331
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
201
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/guinea-bissau/">
Guinea-Bissau
</a>
</td>
<td style="font-weight: bold; text-align:right">
8,400
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
171
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
8,151
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
78
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
4,073
</td>
<td style="font-weight: bold; text-align:right">
83
</td>
<td style="font-weight: bold; text-align:right">
145,231
</td>
<td style="font-weight: bold; text-align:right">
70,419
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/guinea-bissau-population/">
2,062,372
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
246
</td>
<td>
12,061
</td>
<td>
14
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
38
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
202
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/comoros/">
Comoros
</a>
</td>
<td style="font-weight: bold; text-align:right">
8,209
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
160
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
7,933
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
116
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
9,049
</td>
<td style="font-weight: bold; text-align:right">
176
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/comoros-population/">
907,185
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
111
</td>
<td>
5,670
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
128
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
203
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/sierra-leone/">
Sierra Leone
</a>
</td>
<td style="font-weight: bold; text-align:right">
7,718
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
125
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
929
</td>
<td style="font-weight: bold; text-align:right">
15
</td>
<td style="font-weight: bold; text-align:right">
259,958
</td>
<td style="font-weight: bold; text-align:right">
31,297
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/sierra-leone-population/">
8,306,116
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
1,076
</td>
<td>
66,449
</td>
<td>
32
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
334
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
204
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/liberia/">
Liberia
</a>
</td>
<td style="font-weight: bold; text-align:right">
7,504
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+2
</td>
<td style="font-weight: bold; text-align:right;">
294
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
5,747
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,463
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
1,416
</td>
<td style="font-weight: bold; text-align:right">
55
</td>
<td style="font-weight: bold; text-align:right">
139,824
</td>
<td style="font-weight: bold; text-align:right">
26,388
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/liberia-population/">
5,298,865
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
706
</td>
<td>
18,023
</td>
<td>
38
</td>
<td style="font-weight: bold; text-align:right">
0.4
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
276
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
205
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/chad/">
Chad
</a>
</td>
<td style="font-weight: bold; text-align:right">
7,427
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
193
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
4,874
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
2,360
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
427
</td>
<td style="font-weight: bold; text-align:right">
11
</td>
<td style="font-weight: bold; text-align:right">
191,341
</td>
<td style="font-weight: bold; text-align:right">
11,008
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/chad-population/">
17,382,135
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
2,340
</td>
<td>
90,063
</td>
<td>
91
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
136
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
206
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/british-virgin-islands/">
British Virgin Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
7,131
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
63
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
232,743
</td>
<td style="font-weight: bold; text-align:right">
2,056
</td>
<td style="font-weight: bold; text-align:right">
105,790
</td>
<td style="font-weight: bold; text-align:right">
3,452,789
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/british-virgin-islands-population/">
30,639
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
4
</td>
<td>
486
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
783
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
207
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saint-vincent-and-the-grenadines/">
St. Vincent Grenadines
</a>
</td>
<td style="font-weight: bold; text-align:right">
7,035
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
114
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
6,641
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
280
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
63,007
</td>
<td style="font-weight: bold; text-align:right">
1,021
</td>
<td style="font-weight: bold; text-align:right">
100,334
</td>
<td style="font-weight: bold; text-align:right">
898,607
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saint-vincent-and-the-grenadines-population/">
111,655
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
16
</td>
<td>
979
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,508
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
208
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/nauru/">
Nauru
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,930
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
3,171
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
3,758
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
632,184
</td>
<td style="font-weight: bold; text-align:right">
91
</td>
<td style="font-weight: bold; text-align:right">
14,517
</td>
<td style="font-weight: bold; text-align:right">
1,324,302
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/nauru-population/">
10,962
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
2
</td>
<td>
10,962
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
342,821
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
209
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saint-kitts-and-nevis/">
Saint Kitts and Nevis
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,355
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+23
</td>
<td style="font-weight: bold; text-align:right;">
45
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
6,189
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+52
</td>
<td style="text-align:right;font-weight:bold;">
121
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
117,768
</td>
<td style="font-weight: bold; text-align:right">
834
</td>
<td style="font-weight: bold; text-align:right">
108,021
</td>
<td style="font-weight: bold; text-align:right">
2,001,798
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saint-kitts-and-nevis-population/">
53,962
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
8
</td>
<td>
1,199
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
426
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,242
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
210
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/turks-and-caicos-islands/">
Turks and Caicos
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,255
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+21
</td>
<td style="font-weight: bold; text-align:right;">
36
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
6,144
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+3
</td>
<td style="text-align:right;font-weight:bold;">
75
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
157,240
</td>
<td style="font-weight: bold; text-align:right">
905
</td>
<td style="font-weight: bold; text-align:right">
548,537
</td>
<td style="font-weight: bold; text-align:right">
13,789,266
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/turks-and-caicos-islands-population/">
39,780
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
6
</td>
<td>
1,105
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
528
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,885
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
211
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/sao-tome-and-principe/">
Sao Tome and Principe
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,079
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
74
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
5,990
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
15
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
26,731
</td>
<td style="font-weight: bold; text-align:right">
325
</td>
<td style="font-weight: bold; text-align:right">
29,036
</td>
<td style="font-weight: bold; text-align:right">
127,678
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/sao-tome-and-principe-population/">
227,416
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
37
</td>
<td>
3,073
</td>
<td>
8
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
66
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
212
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cook-islands/">
Cook Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
5,827
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+13
</td>
<td style="font-weight: bold; text-align:right;">
1
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
5,802
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+8
</td>
<td style="text-align:right;font-weight:bold;">
24
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
331,136
</td>
<td style="font-weight: bold; text-align:right">
57
</td>
<td style="font-weight: bold; text-align:right">
19,690
</td>
<td style="font-weight: bold; text-align:right">
1,118,941
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cook-islands-population/">
17,597
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
3
</td>
<td>
17,597
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
739
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,364
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
213
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/palau/">
Palau
</a>
</td>
<td style="font-weight: bold; text-align:right">
5,308
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
6
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
5,047
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
255
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
290,547
</td>
<td style="font-weight: bold; text-align:right">
328
</td>
<td style="font-weight: bold; text-align:right">
62,460
</td>
<td style="font-weight: bold; text-align:right">
3,418,906
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/palau-population/">
18,269
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
3
</td>
<td>
3,045
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
13,958
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
214
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saint-barthelemy/">
St. Barth
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,845
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
6
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
487,523
</td>
<td style="font-weight: bold; text-align:right">
604
</td>
<td style="font-weight: bold; text-align:right">
78,646
</td>
<td style="font-weight: bold; text-align:right">
7,913,665
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saint-barthelemy-population/">
9,938
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
2
</td>
<td>
1,656
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
440,431
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
215
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/anguilla/">
Anguilla
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,496
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
9
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
3,464
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
23
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
228,871
</td>
<td style="font-weight: bold; text-align:right">
589
</td>
<td style="font-weight: bold; text-align:right">
51,382
</td>
<td style="font-weight: bold; text-align:right">
3,363,797
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/anguilla-population/">
15,275
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
4
</td>
<td>
1,697
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,506
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
216
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/kiribati/">
Kiribati
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,236
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
13
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
2,665
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
558
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
26,273
</td>
<td style="font-weight: bold; text-align:right">
106
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/kiribati-population/">
123,167
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
38
</td>
<td>
9,474
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,530
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
217
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saint-pierre-and-miquelon/">
Saint Pierre Miquelon
</a>
</td>
<td style="font-weight: bold; text-align:right">
2,970
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
2,449
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
520
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
517,692
</td>
<td style="font-weight: bold; text-align:right">
174
</td>
<td style="font-weight: bold; text-align:right">
24,521
</td>
<td style="font-weight: bold; text-align:right">
4,274,185
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saint-pierre-and-miquelon-population/">
5,737
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
2
</td>
<td>
5,737
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
90,640
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
218
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/falkland-islands-malvinas/">
Falkland Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,831
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
496,744
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
8,632
</td>
<td style="font-weight: bold; text-align:right">
2,341,834
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/falkland-islands-malvinas-population/">
3,686
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
2
</td>
<td>
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
463,104
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
219
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/montserrat/">
Montserrat
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,025
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
8
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,013
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
4
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
205,082
</td>
<td style="font-weight: bold; text-align:right">
1,601
</td>
<td style="font-weight: bold; text-align:right">
14,243
</td>
<td style="font-weight: bold; text-align:right">
2,849,740
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/montserrat-population/">
4,998
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
5
</td>
<td>
625
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
800
</td>
</tr>
<tr style="background-color:#F0F0F0">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
220
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<span style="color:#00B5F0; font-style:italic; ">
Diamond Princess
</span>
</td>
<td style="font-weight: bold; text-align:right">
712
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
13
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
699
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td data-continent="" style="display:none">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
221
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/china-macao-sar/">
Macao
</a>
</td>
<td style="font-weight: bold; text-align:right">
696
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+17
</td>
<td style="font-weight: bold; text-align:right;">
5
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+1
</td>
<td style="font-weight: bold; text-align:right">
181
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+18
</td>
<td style="text-align:right;font-weight:bold;">
510
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,043
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
<td style="font-weight: bold; text-align:right">
7,615
</td>
<td style="font-weight: bold; text-align:right">
11,412
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/china-macao-sar-population/">
667,295
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
959
</td>
<td>
133,459
</td>
<td>
88
</td>
<td style="font-weight: bold; text-align:right">
25
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
764
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
222
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/wallis-and-futuna-islands/">
Wallis and Futuna
</a>
</td>
<td style="font-weight: bold; text-align:right">
456
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
7
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
438
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
11
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
42,066
</td>
<td style="font-weight: bold; text-align:right">
646
</td>
<td style="font-weight: bold; text-align:right">
20,508
</td>
<td style="font-weight: bold; text-align:right">
1,891,882
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/wallis-and-futuna-islands-population/">
10,840
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
24
</td>
<td>
1,549
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,015
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
223
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/marshall-islands/">
Marshall Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
47
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
18
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
29
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
783
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/marshall-islands-population/">
60,000
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
1,277
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
483
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
224
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/micronesia/">
Micronesia
</a>
</td>
<td style="font-weight: bold; text-align:right">
38
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
33
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
5
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
323
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
21,923
</td>
<td style="font-weight: bold; text-align:right">
186,628
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/micronesia-population/">
117,469
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
3,091
</td>
<td>
</td>
<td>
5
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
43
</td>
</tr>
<tr style="background-color:#EAF7D5">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
225
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/holy-see/">
Vatican City
</a>
</td>
<td style="font-weight: bold; text-align:right">
29
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
29
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
36,025
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/holy-see-population/">
805
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
28
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
226
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/niue/">
Niue
</a>
</td>
<td style="font-weight: bold; text-align:right">
26
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
23
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+3
</td>
<td style="text-align:right;font-weight:bold;">
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
15,777
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/niue-population/">
1,648
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
63
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,820
</td>
</tr>
<tr style="background-color:#F0F0F0">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
227
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/western-sahara/">
Western Sahara
</a>
</td>
<td style="font-weight: bold; text-align:right">
10
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
9
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
16
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/western-sahara-population/">
627,136
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
62,714
</td>
<td>
627,136
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
</tr>
<tr style="background-color:#F0F0F0">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
228
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<span style="color:#00B5F0; font-style:italic; ">
MS Zaandam
</span>
</td>
<td style="font-weight: bold; text-align:right">
9
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
2
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td data-continent="" style="display:none">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
229
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/tuvalu/">
Tuvalu
</a>
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
248
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/tuvalu-population/">
12,087
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
4,029
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
248
</td>
</tr>
<tr style="background-color:#EAF7D5">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
230
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saint-helena/">
Saint Helena
</a>
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
327
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saint-helena-population/">
6,114
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
3,057
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
</tr>
</tbody>
<tbody class="body_continents">
<tr class="row_continent total_row" data-continent="Asia" style="display: none">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
163,723,857
</td>
<td style="background-color:#FFEEAA; color:#000;">
+229,851
</td>
<td>
1,442,494
</td>
<td style="background-color:red; color:#fff">
+211
</td>
<td>
157,769,260
</td>
<td style="background-color:#c8e6c9; color:#000">
+116,974
</td>
<td>
4,512,103
</td>
<td>
11,044
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Asia" style="display:none;">
Asia
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="row_continent total_row" data-continent="North America" style="display: none">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
107,759,967
</td>
<td style="background-color:#FFEEAA; color:#000;">
+145,051
</td>
<td>
1,494,616
</td>
<td style="background-color:red; color:#fff">
+345
</td>
<td>
100,726,566
</td>
<td style="background-color:#c8e6c9; color:#000">
+129,154
</td>
<td>
5,538,785
</td>
<td>
9,502
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="North America" style="display:none;">
North America
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="row_continent total_row" data-continent="South America" style="display: none">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
60,877,685
</td>
<td style="background-color:#FFEEAA; color:#000;">
+79,377
</td>
<td>
1,309,819
</td>
<td style="background-color:red; color:#fff">
+367
</td>
<td>
57,876,446
</td>
<td style="background-color:#c8e6c9; color:#000">
+45,978
</td>
<td>
1,691,420
</td>
<td>
10,454
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="South America" style="display:none;">
South America
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="row_continent total_row" data-continent="Europe" style="display: none">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
209,911,879
</td>
<td style="background-color:#FFEEAA; color:#000;">
+285,247
</td>
<td>
1,863,623
</td>
<td style="background-color:red; color:#fff">
+325
</td>
<td>
198,882,571
</td>
<td style="background-color:#c8e6c9; color:#000">
+218,960
</td>
<td>
9,165,685
</td>
<td>
6,729
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Europe" style="display:none;">
Europe
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="row_continent total_row" data-continent="Australia/Oceania" style="display: none">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
10,461,519
</td>
<td style="background-color:#FFEEAA; color:#000;">
+59,001
</td>
<td>
14,942
</td>
<td style="background-color:red; color:#fff">
+101
</td>
<td>
9,945,183
</td>
<td style="background-color:#c8e6c9; color:#000">
+11,256
</td>
<td>
501,394
</td>
<td>
171
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Australia/Oceania" style="display:none;">
Australia/Oceania
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="row_continent total_row" data-continent="Africa" style="display: none">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
12,431,054
</td>
<td style="background-color:#FFEEAA; color:#000;">
+5,728
</td>
<td>
256,378
</td>
<td style="background-color:red; color:#fff">
+18
</td>
<td>
11,578,374
</td>
<td style="background-color:#c8e6c9; color:#000">
+5,167
</td>
<td>
596,302
</td>
<td>
1,005
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Africa" style="display:none;">
Africa
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="row_continent total_row" data-continent="" style="display: none">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
721
</td>
<td style="">
</td>
<td>
15
</td>
<td style="">
</td>
<td>
706
</td>
<td style="">
</td>
<td>
0
</td>
<td>
0
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="" style="display:none;">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
</tbody>
<tbody class="total_row_body body_world">
<tr class="total_row">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
565,166,682
</td>
<td style="background-color:#FFEEAA; color:#000;">
+804,255
</td>
<td>
6,381,887
</td>
<td style="background-color:red; color:#fff">
+1,367
</td>
<td>
536,779,106
</td>
<td style="background-color:#c8e6c9; color:#000">
+527,489
</td>
<td>
22,005,689
</td>
<td>
38,905
</td>
<td>
72,505.6
</td>
<td>
818.7
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="all" style="display:none">
All
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div aria-labelledby="nav-yesterday2-tab" class="tab-pane" id="nav-yesterday2" role="tabpanel">
<div class="main_table_countries_div">
<table class="table table-bordered table-hover main_table_countries" id="main_table_countries_yesterday2" style="width:100%;margin-top: 0px !important;display:none;">
<thead>
<tr>
<th width="1%">
#
</th>
<th width="100">
Country,
<br/>
Other
</th>
<th width="20">
Total
<br/>
Cases
</th>
<th width="30">
New
<br/>
Cases
</th>
<th width="30">
Total
<br/>
Deaths
</th>
<th width="30">
New
<br/>
Deaths
</th>
<th width="30">
Total
<br/>
Recovered
</th>
<th width="30">
New
<br/>
Recovered
</th>
<th width="30">
Active
<br/>
Cases
</th>
<th width="30">
Serious,
<br/>
Critical
</th>
<th width="30">
Tot Cases/
<br/>
1M pop
</th>
<th width="30">
Deaths/
<br/>
1M pop
</th>
<th width="30">
Total
<br/>
Tests
</th>
<th width="30">
Tests/
<br/>
<nobr>
1M pop
</nobr>
</th>
<th width="30">
Population
</th>
<th style="display:none" width="30">
Continent
</th>
<th width="30">
1 Case
<br/>
every X ppl
</th>
<th width="30">
1 Death
<br/>
every X ppl
</th>
<th width="30">
1 Test
<br/>
every X ppl
</th>
<th width="30">
New Cases/1M pop
</th>
<th width="30">
New Deaths/1M pop
</th>
<th width="30">
Active Cases/1M pop
</th>
</tr>
</thead>
<tbody>
<tr class="total_row_world row_continent" data-continent="Asia" style="display: none">
<td>
</td>
<td style="text-align:left;">
<nobr>
Asia
</nobr>
</td>
<td>
163,494,006
</td>
<td>
+217,000
</td>
<td>
1,442,283
</td>
<td>
+185
</td>
<td>
157,652,286
</td>
<td>
+145,624
</td>
<td>
4,399,437
</td>
<td>
10,911
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Asia" style="display:none;">
Asia
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="total_row_world row_continent" data-continent="North America" style="display: none">
<td>
</td>
<td style="text-align:left;">
<nobr>
North America
</nobr>
</td>
<td>
107,614,916
</td>
<td>
+170,938
</td>
<td>
1,494,271
</td>
<td>
+600
</td>
<td>
100,597,412
</td>
<td>
+144,907
</td>
<td>
5,523,233
</td>
<td>
9,504
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="North America" style="display:none;">
North America
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="total_row_world row_continent" data-continent="South America" style="display: none">
<td>
</td>
<td style="text-align:left;">
<nobr>
South America
</nobr>
</td>
<td>
60,798,308
</td>
<td>
+99,460
</td>
<td>
1,309,452
</td>
<td>
+422
</td>
<td>
57,830,468
</td>
<td>
+90,677
</td>
<td>
1,658,388
</td>
<td>
10,464
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="South America" style="display:none;">
South America
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="total_row_world row_continent" data-continent="Europe" style="display: none">
<td>
</td>
<td style="text-align:left;">
<nobr>
Europe
</nobr>
</td>
<td>
209,626,632
</td>
<td>
+473,428
</td>
<td>
1,863,298
</td>
<td>
+499
</td>
<td>
198,663,611
</td>
<td>
+276,665
</td>
<td>
9,099,723
</td>
<td>
6,678
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Europe" style="display:none;">
Europe
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="total_row_world row_continent" data-continent="Australia/Oceania" style="display: none">
<td>
</td>
<td style="text-align:left;">
<nobr>
Oceania
</nobr>
</td>
<td>
10,402,518
</td>
<td>
+56,223
</td>
<td>
14,841
</td>
<td>
+81
</td>
<td>
9,933,927
</td>
<td>
+52,636
</td>
<td>
453,750
</td>
<td>
169
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Australia/Oceania" style="display:none;">
Australia/Oceania
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="total_row_world row_continent" data-continent="Africa" style="display: none">
<td>
</td>
<td style="text-align:left;">
<nobr>
Africa
</nobr>
</td>
<td>
12,425,326
</td>
<td>
+3,495
</td>
<td>
256,360
</td>
<td>
+25
</td>
<td>
11,573,207
</td>
<td>
+3,840
</td>
<td>
595,759
</td>
<td>
1,006
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Africa" style="display:none;">
Africa
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="total_row_world row_continent" data-continent="" style="display: none">
<td>
</td>
<td style="text-align:left;">
<nobr>
</nobr>
</td>
<td>
721
</td>
<td>
</td>
<td>
15
</td>
<td>
</td>
<td>
706
</td>
<td>
</td>
<td>
0
</td>
<td>
0
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="" style="display:none;">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="total_row_world">
<td>
</td>
<td style="text-align:left;">
World
</td>
<td>
564,362,427
</td>
<td>
+1,020,544
</td>
<td>
6,380,520
</td>
<td>
+1,812
</td>
<td>
536,251,617
</td>
<td>
+714,349
</td>
<td>
21,730,290
</td>
<td>
38,732
</td>
<td>
72,402
</td>
<td>
818.6
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="all" style="display:none">
All
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
1
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/china/">
China
</a>
</td>
<td style="font-weight: bold; text-align:right">
226,909
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+98
</td>
<td style="font-weight: bold; text-align:right;">
5,226
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
220,601
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+76
</td>
<td style="text-align:right;font-weight:bold;">
1,082
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
158
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
160,000,000
</td>
<td style="font-weight: bold; text-align:right">
111,163
</td>
<td style="font-weight: bold; text-align:right">
1,439,323,776
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
6,343
</td>
<td>
275,416
</td>
<td>
9
</td>
<td style="font-weight: bold; text-align:right">
0.07
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
0.8
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
2
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/us/">
USA
</a>
</td>
<td style="font-weight: bold; text-align:right">
90,964,825
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+121,092
</td>
<td style="font-weight: bold; text-align:right;">
1,048,001
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+477
</td>
<td style="font-weight: bold; text-align:right">
86,269,683
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+116,043
</td>
<td style="text-align:right;font-weight:bold;">
3,647,141
</td>
<td style="font-weight: bold; text-align:right">
4,182
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,059,098,984
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
3
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/india/">
India
</a>
</td>
<td style="font-weight: bold; text-align:right">
43,689,989
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+17,834
</td>
<td style="font-weight: bold; text-align:right;">
525,557
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+38
</td>
<td style="font-weight: bold; text-align:right">
43,028,356
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+16,482
</td>
<td style="text-align:right;font-weight:bold;">
136,076
</td>
<td style="font-weight: bold; text-align:right">
698
</td>
<td style="font-weight: bold; text-align:right">
31,040
</td>
<td style="font-weight: bold; text-align:right">
373
</td>
<td style="font-weight: bold; text-align:right">
867,769,574
</td>
<td style="font-weight: bold; text-align:right">
616,518
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/india-population/">
1,407,532,492
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
32
</td>
<td>
2,678
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
13
</td>
<td style="font-weight: bold; text-align:right">
0.03
</td>
<td style="font-weight: bold; text-align:right">
97
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
4
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/brazil/">
Brazil
</a>
</td>
<td style="font-weight: bold; text-align:right">
33,076,779
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+71,501
</td>
<td style="font-weight: bold; text-align:right;">
674,554
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+388
</td>
<td style="font-weight: bold; text-align:right">
31,414,937
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+68,826
</td>
<td style="text-align:right;font-weight:bold;">
987,288
</td>
<td style="font-weight: bold; text-align:right">
8,318
</td>
<td style="font-weight: bold; text-align:right">
153,400
</td>
<td style="font-weight: bold; text-align:right">
3,128
</td>
<td style="font-weight: bold; text-align:right">
63,776,166
</td>
<td style="font-weight: bold; text-align:right">
295,774
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/brazil-population/">
215,624,945
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
7
</td>
<td>
320
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
332
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
4,579
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
5
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/france/">
France
</a>
</td>
<td style="font-weight: bold; text-align:right">
32,676,589
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+127,642
</td>
<td style="font-weight: bold; text-align:right;">
150,414
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+109
</td>
<td style="font-weight: bold; text-align:right">
30,284,146
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+79,726
</td>
<td style="text-align:right;font-weight:bold;">
2,242,029
</td>
<td style="font-weight: bold; text-align:right">
869
</td>
<td style="font-weight: bold; text-align:right">
498,373
</td>
<td style="font-weight: bold; text-align:right">
2,294
</td>
<td style="font-weight: bold; text-align:right">
271,490,188
</td>
<td style="font-weight: bold; text-align:right">
4,140,684
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/france-population/">
65,566,505
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
436
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
1,947
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
34,195
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
6
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/germany/">
Germany
</a>
</td>
<td style="font-weight: bold; text-align:right">
29,460,249
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+152,149
</td>
<td style="font-weight: bold; text-align:right;">
142,284
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+145
</td>
<td style="font-weight: bold; text-align:right">
27,548,900
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+62,600
</td>
<td style="text-align:right;font-weight:bold;">
1,769,065
</td>
<td style="font-weight: bold; text-align:right">
1,212
</td>
<td style="font-weight: bold; text-align:right">
349,356
</td>
<td style="font-weight: bold; text-align:right">
1,687
</td>
<td style="font-weight: bold; text-align:right">
122,332,384
</td>
<td style="font-weight: bold; text-align:right">
1,450,683
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/germany-population/">
84,327,414
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
593
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
1,804
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
20,979
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
7
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/uk/">
UK
</a>
</td>
<td style="font-weight: bold; text-align:right">
23,075,360
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+15,859
</td>
<td style="font-weight: bold; text-align:right;">
181,580
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
22,294,298
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+14,778
</td>
<td style="text-align:right;font-weight:bold;">
599,482
</td>
<td style="font-weight: bold; text-align:right">
146
</td>
<td style="font-weight: bold; text-align:right">
336,329
</td>
<td style="font-weight: bold; text-align:right">
2,647
</td>
<td style="font-weight: bold; text-align:right">
522,526,476
</td>
<td style="font-weight: bold; text-align:right">
7,615,952
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/uk-population/">
68,609,479
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
378
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
231
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
8,738
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
8
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/italy/">
Italy
</a>
</td>
<td style="font-weight: bold; text-align:right">
19,780,421
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+111,678
</td>
<td style="font-weight: bold; text-align:right;">
169,496
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+106
</td>
<td style="font-weight: bold; text-align:right">
18,217,525
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+70,076
</td>
<td style="text-align:right;font-weight:bold;">
1,393,400
</td>
<td style="font-weight: bold; text-align:right">
388
</td>
<td style="font-weight: bold; text-align:right">
328,134
</td>
<td style="font-weight: bold; text-align:right">
2,812
</td>
<td style="font-weight: bold; text-align:right">
231,368,532
</td>
<td style="font-weight: bold; text-align:right">
3,838,135
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/italy-population/">
60,281,506
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
356
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
1,853
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
23,115
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
9
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/south-korea/">
S. Korea
</a>
</td>
<td style="font-weight: bold; text-align:right">
18,602,109
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+40,248
</td>
<td style="font-weight: bold; text-align:right;">
24,680
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+12
</td>
<td style="font-weight: bold; text-align:right">
18,295,105
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+6,773
</td>
<td style="text-align:right;font-weight:bold;">
282,324
</td>
<td style="font-weight: bold; text-align:right">
67
</td>
<td style="font-weight: bold; text-align:right">
362,200
</td>
<td style="font-weight: bold; text-align:right">
481
</td>
<td style="font-weight: bold; text-align:right">
15,804,065
</td>
<td style="font-weight: bold; text-align:right">
307,719
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/south-korea-population/">
51,358,685
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
3
</td>
<td>
2,081
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
784
</td>
<td style="font-weight: bold; text-align:right">
0.2
</td>
<td style="font-weight: bold; text-align:right">
5,497
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
10
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/russia/">
Russia
</a>
</td>
<td style="font-weight: bold; text-align:right">
18,472,239
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+3,929
</td>
<td style="font-weight: bold; text-align:right;">
381,711
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+42
</td>
<td style="font-weight: bold; text-align:right">
17,897,428
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+3,363
</td>
<td style="text-align:right;font-weight:bold;">
193,100
</td>
<td style="font-weight: bold; text-align:right">
2,300
</td>
<td style="font-weight: bold; text-align:right">
126,469
</td>
<td style="font-weight: bold; text-align:right">
2,613
</td>
<td style="font-weight: bold; text-align:right">
273,400,000
</td>
<td style="font-weight: bold; text-align:right">
1,871,816
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/russia-population/">
146,061,390
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
8
</td>
<td>
383
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
27
</td>
<td style="font-weight: bold; text-align:right">
0.3
</td>
<td style="font-weight: bold; text-align:right">
1,322
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
11
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/turkey/">
Turkey
</a>
</td>
<td style="font-weight: bold; text-align:right">
15,297,539
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
99,088
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
15,096,774
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
101,677
</td>
<td style="font-weight: bold; text-align:right">
975
</td>
<td style="font-weight: bold; text-align:right">
177,506
</td>
<td style="font-weight: bold; text-align:right">
1,150
</td>
<td style="font-weight: bold; text-align:right">
162,743,369
</td>
<td style="font-weight: bold; text-align:right">
1,888,403
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/turkey-population/">
86,180,421
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
6
</td>
<td>
870
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,180
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
12
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/spain/">
Spain
</a>
</td>
<td style="font-weight: bold; text-align:right">
13,032,841
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
108,948
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
12,370,046
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
553,847
</td>
<td style="font-weight: bold; text-align:right">
339
</td>
<td style="font-weight: bold; text-align:right">
278,530
</td>
<td style="font-weight: bold; text-align:right">
2,328
</td>
<td style="font-weight: bold; text-align:right">
471,036,328
</td>
<td style="font-weight: bold; text-align:right">
10,066,705
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/spain-population/">
46,791,511
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
4
</td>
<td>
429
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
11,836
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
13
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/viet-nam/">
Vietnam
</a>
</td>
<td style="font-weight: bold; text-align:right">
10,757,257
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,001
</td>
<td style="font-weight: bold; text-align:right;">
43,090
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
9,785,255
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+5,083
</td>
<td style="text-align:right;font-weight:bold;">
928,912
</td>
<td style="font-weight: bold; text-align:right">
24
</td>
<td style="font-weight: bold; text-align:right">
108,532
</td>
<td style="font-weight: bold; text-align:right">
435
</td>
<td style="font-weight: bold; text-align:right">
85,826,548
</td>
<td style="font-weight: bold; text-align:right">
865,924
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/viet-nam-population/">
99,115,541
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
9
</td>
<td>
2,300
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
10
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
9,372
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
14
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/japan/">
Japan
</a>
</td>
<td style="font-weight: bold; text-align:right">
9,810,874
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+68,191
</td>
<td style="font-weight: bold; text-align:right;">
31,465
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+20
</td>
<td style="font-weight: bold; text-align:right">
9,358,710
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+25,744
</td>
<td style="text-align:right;font-weight:bold;">
420,699
</td>
<td style="font-weight: bold; text-align:right">
90
</td>
<td style="font-weight: bold; text-align:right">
78,055
</td>
<td style="font-weight: bold; text-align:right">
250
</td>
<td style="font-weight: bold; text-align:right">
57,943,235
</td>
<td style="font-weight: bold; text-align:right">
460,997
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/japan-population/">
125,691,242
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
13
</td>
<td>
3,995
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
543
</td>
<td style="font-weight: bold; text-align:right">
0.2
</td>
<td style="font-weight: bold; text-align:right">
3,347
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
15
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/argentina/">
Argentina
</a>
</td>
<td style="font-weight: bold; text-align:right">
9,426,171
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
129,145
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
9,216,015
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+3,668
</td>
<td style="text-align:right;font-weight:bold;">
81,011
</td>
<td style="font-weight: bold; text-align:right">
393
</td>
<td style="font-weight: bold; text-align:right">
204,751
</td>
<td style="font-weight: bold; text-align:right">
2,805
</td>
<td style="font-weight: bold; text-align:right">
35,716,069
</td>
<td style="font-weight: bold; text-align:right">
775,808
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/argentina-population/">
46,037,228
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
5
</td>
<td>
356
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,760
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
16
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/australia/">
Australia
</a>
</td>
<td style="font-weight: bold; text-align:right">
8,605,813
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+44,242
</td>
<td style="font-weight: bold; text-align:right;">
10,437
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+52
</td>
<td style="font-weight: bold; text-align:right">
8,278,603
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+41,728
</td>
<td style="text-align:right;font-weight:bold;">
316,773
</td>
<td style="font-weight: bold; text-align:right">
137
</td>
<td style="font-weight: bold; text-align:right">
329,722
</td>
<td style="font-weight: bold; text-align:right">
400
</td>
<td style="font-weight: bold; text-align:right">
74,871,899
</td>
<td style="font-weight: bold; text-align:right">
2,868,634
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/australia-population/">
26,100,194
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
3
</td>
<td>
2,501
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
1,695
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
12,137
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
17
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/netherlands/">
Netherlands
</a>
</td>
<td style="font-weight: bold; text-align:right">
8,260,656
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+6,819
</td>
<td style="font-weight: bold; text-align:right;">
22,413
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+4
</td>
<td style="font-weight: bold; text-align:right">
8,085,522
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1,776
</td>
<td style="text-align:right;font-weight:bold;">
152,721
</td>
<td style="font-weight: bold; text-align:right">
55
</td>
<td style="font-weight: bold; text-align:right">
479,942
</td>
<td style="font-weight: bold; text-align:right">
1,302
</td>
<td style="font-weight: bold; text-align:right">
21,107,399
</td>
<td style="font-weight: bold; text-align:right">
1,226,334
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/netherlands-population/">
17,211,781
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
768
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
396
</td>
<td style="font-weight: bold; text-align:right">
0.2
</td>
<td style="font-weight: bold; text-align:right">
8,873
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
18
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/iran/">
Iran
</a>
</td>
<td style="font-weight: bold; text-align:right">
7,260,017
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+5,000
</td>
<td style="font-weight: bold; text-align:right;">
141,456
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+5
</td>
<td style="font-weight: bold; text-align:right">
7,065,989
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+516
</td>
<td style="text-align:right;font-weight:bold;">
52,572
</td>
<td style="font-weight: bold; text-align:right">
397
</td>
<td style="font-weight: bold; text-align:right">
84,248
</td>
<td style="font-weight: bold; text-align:right">
1,642
</td>
<td style="font-weight: bold; text-align:right">
52,690,831
</td>
<td style="font-weight: bold; text-align:right">
611,445
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/iran-population/">
86,174,268
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
12
</td>
<td>
609
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
58
</td>
<td style="font-weight: bold; text-align:right">
0.06
</td>
<td style="font-weight: bold; text-align:right">
610
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
19
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/mexico/">
Mexico
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,301,645
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+36,334
</td>
<td style="font-weight: bold; text-align:right;">
326,189
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+92
</td>
<td style="font-weight: bold; text-align:right">
5,393,938
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+24,700
</td>
<td style="text-align:right;font-weight:bold;">
581,518
</td>
<td style="font-weight: bold; text-align:right">
4,798
</td>
<td style="font-weight: bold; text-align:right">
47,855
</td>
<td style="font-weight: bold; text-align:right">
2,477
</td>
<td style="font-weight: bold; text-align:right">
16,978,434
</td>
<td style="font-weight: bold; text-align:right">
128,936
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/mexico-population/">
131,681,236
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
21
</td>
<td>
404
</td>
<td>
8
</td>
<td style="font-weight: bold; text-align:right">
276
</td>
<td style="font-weight: bold; text-align:right">
0.7
</td>
<td style="font-weight: bold; text-align:right">
4,416
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
20
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/colombia/">
Colombia
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,198,848
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
140,202
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
6,008,044
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
50,602
</td>
<td style="font-weight: bold; text-align:right">
342
</td>
<td style="font-weight: bold; text-align:right">
119,247
</td>
<td style="font-weight: bold; text-align:right">
2,697
</td>
<td style="font-weight: bold; text-align:right">
35,662,857
</td>
<td style="font-weight: bold; text-align:right">
686,045
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/colombia-population/">
51,983,287
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
8
</td>
<td>
371
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
973
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
21
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/indonesia/">
Indonesia
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,120,169
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+3,822
</td>
<td style="font-weight: bold; text-align:right;">
156,818
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+12
</td>
<td style="font-weight: bold; text-align:right">
5,939,564
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1,939
</td>
<td style="text-align:right;font-weight:bold;">
23,787
</td>
<td style="font-weight: bold; text-align:right">
2,771
</td>
<td style="font-weight: bold; text-align:right">
21,905
</td>
<td style="font-weight: bold; text-align:right">
561
</td>
<td style="font-weight: bold; text-align:right">
101,731,686
</td>
<td style="font-weight: bold; text-align:right">
364,118
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/indonesia-population/">
279,392,080
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
46
</td>
<td>
1,782
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
14
</td>
<td style="font-weight: bold; text-align:right">
0.04
</td>
<td style="font-weight: bold; text-align:right">
85
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
22
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/poland/">
Poland
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,026,134
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,647
</td>
<td style="font-weight: bold; text-align:right;">
116,464
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+6
</td>
<td style="font-weight: bold; text-align:right">
5,335,732
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+8
</td>
<td style="text-align:right;font-weight:bold;">
573,938
</td>
<td style="font-weight: bold; text-align:right">
408
</td>
<td style="font-weight: bold; text-align:right">
159,580
</td>
<td style="font-weight: bold; text-align:right">
3,084
</td>
<td style="font-weight: bold; text-align:right">
36,535,968
</td>
<td style="font-weight: bold; text-align:right">
967,519
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/poland-population/">
37,762,538
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
6
</td>
<td>
324
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
44
</td>
<td style="font-weight: bold; text-align:right">
0.2
</td>
<td style="font-weight: bold; text-align:right">
15,199
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
23
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/portugal/">
Portugal
</a>
</td>
<td style="font-weight: bold; text-align:right">
5,273,845
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+7,391
</td>
<td style="font-weight: bold; text-align:right;">
24,369
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+10
</td>
<td style="font-weight: bold; text-align:right">
4,979,554
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+20,362
</td>
<td style="text-align:right;font-weight:bold;">
269,922
</td>
<td style="font-weight: bold; text-align:right">
61
</td>
<td style="font-weight: bold; text-align:right">
520,287
</td>
<td style="font-weight: bold; text-align:right">
2,404
</td>
<td style="font-weight: bold; text-align:right">
43,527,258
</td>
<td style="font-weight: bold; text-align:right">
4,294,148
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/portugal-population/">
10,136,412
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
416
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
729
</td>
<td style="font-weight: bold; text-align:right">
1.0
</td>
<td style="font-weight: bold; text-align:right">
26,629
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
24
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/ukraine/">
Ukraine
</a>
</td>
<td style="font-weight: bold; text-align:right">
5,019,125
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
108,671
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
4,907,472
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+149
</td>
<td style="text-align:right;font-weight:bold;">
2,982
</td>
<td style="font-weight: bold; text-align:right">
177
</td>
<td style="font-weight: bold; text-align:right">
116,181
</td>
<td style="font-weight: bold; text-align:right">
2,515
</td>
<td style="font-weight: bold; text-align:right">
19,521,252
</td>
<td style="font-weight: bold; text-align:right">
451,870
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/ukraine-population/">
43,200,993
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
9
</td>
<td>
398
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
69
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
25
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/north-korea/">
DPRK
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,769,330
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+770
</td>
<td style="font-weight: bold; text-align:right;">
74
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
4,767,690
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1,050
</td>
<td style="text-align:right;font-weight:bold;">
1,566
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
183,379
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/north-korea-population/">
26,008,008
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
5
</td>
<td>
351,460
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
30
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
60
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
26
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/malaysia/">
Malaysia
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,604,670
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+3,934
</td>
<td style="font-weight: bold; text-align:right;">
35,828
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+9
</td>
<td style="font-weight: bold; text-align:right">
4,531,948
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+2,747
</td>
<td style="text-align:right;font-weight:bold;">
36,894
</td>
<td style="font-weight: bold; text-align:right">
53
</td>
<td style="font-weight: bold; text-align:right">
138,664
</td>
<td style="font-weight: bold; text-align:right">
1,079
</td>
<td style="font-weight: bold; text-align:right">
61,548,289
</td>
<td style="font-weight: bold; text-align:right">
1,853,451
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/malaysia-population/">
33,207,396
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
7
</td>
<td>
927
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
118
</td>
<td style="font-weight: bold; text-align:right">
0.3
</td>
<td style="font-weight: bold; text-align:right">
1,111
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
27
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/austria/">
Austria
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,562,210
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+15,149
</td>
<td style="font-weight: bold; text-align:right;">
18,909
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+9
</td>
<td style="font-weight: bold; text-align:right">
4,424,590
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+11,066
</td>
<td style="text-align:right;font-weight:bold;">
118,711
</td>
<td style="font-weight: bold; text-align:right">
66
</td>
<td style="font-weight: bold; text-align:right">
500,755
</td>
<td style="font-weight: bold; text-align:right">
2,075
</td>
<td style="font-weight: bold; text-align:right">
191,723,708
</td>
<td style="font-weight: bold; text-align:right">
21,043,902
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/austria-population/">
9,110,654
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
482
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
1,663
</td>
<td style="font-weight: bold; text-align:right">
1.0
</td>
<td style="font-weight: bold; text-align:right">
13,030
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
28
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/thailand/">
Thailand
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,550,924
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+2,391
</td>
<td style="font-weight: bold; text-align:right;">
30,910
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+25
</td>
<td style="font-weight: bold; text-align:right">
4,495,935
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1,901
</td>
<td style="text-align:right;font-weight:bold;">
24,079
</td>
<td style="font-weight: bold; text-align:right">
1,496
</td>
<td style="font-weight: bold; text-align:right">
64,869
</td>
<td style="font-weight: bold; text-align:right">
441
</td>
<td style="font-weight: bold; text-align:right">
17,270,775
</td>
<td style="font-weight: bold; text-align:right">
246,179
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/thailand-population/">
70,155,276
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
15
</td>
<td>
2,270
</td>
<td>
4
</td>
<td style="font-weight: bold; text-align:right">
34
</td>
<td style="font-weight: bold; text-align:right">
0.4
</td>
<td style="font-weight: bold; text-align:right">
343
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
29
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/israel/">
Israel
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,482,095
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+9,971
</td>
<td style="font-weight: bold; text-align:right;">
11,101
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
4,399,889
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+17,708
</td>
<td style="text-align:right;font-weight:bold;">
71,105
</td>
<td style="font-weight: bold; text-align:right">
310
</td>
<td style="font-weight: bold; text-align:right">
480,602
</td>
<td style="font-weight: bold; text-align:right">
1,190
</td>
<td style="font-weight: bold; text-align:right">
41,373,364
</td>
<td style="font-weight: bold; text-align:right">
4,436,346
</td>
<td style="font-weight: bold; text-align:right">
9,326,000
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
2
</td>
<td>
840
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
1,069
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
7,624
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
30
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/belgium/">
Belgium
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,320,107
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
32,015
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
4,143,766
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
144,326
</td>
<td style="font-weight: bold; text-align:right">
74
</td>
<td style="font-weight: bold; text-align:right">
369,494
</td>
<td style="font-weight: bold; text-align:right">
2,738
</td>
<td style="font-weight: bold; text-align:right">
34,708,412
</td>
<td style="font-weight: bold; text-align:right">
2,968,574
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/belgium-population/">
11,691,948
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
365
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
12,344
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
31
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/taiwan/">
Taiwan
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,162,245
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+29,866
</td>
<td style="font-weight: bold; text-align:right;">
7,828
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+48
</td>
<td style="font-weight: bold; text-align:right">
3,479,788
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+48,265
</td>
<td style="text-align:right;font-weight:bold;">
674,629
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
174,122
</td>
<td style="font-weight: bold; text-align:right">
327
</td>
<td style="font-weight: bold; text-align:right">
21,797,516
</td>
<td style="font-weight: bold; text-align:right">
911,869
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/taiwan-population/">
23,904,219
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
6
</td>
<td>
3,054
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
1,249
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
28,222
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
32
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/chile/">
Chile
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,103,590
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+8,494
</td>
<td style="font-weight: bold; text-align:right;">
58,884
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+6
</td>
<td style="font-weight: bold; text-align:right">
3,770,241
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+9,092
</td>
<td style="text-align:right;font-weight:bold;">
274,465
</td>
<td style="font-weight: bold; text-align:right">
200
</td>
<td style="font-weight: bold; text-align:right">
210,991
</td>
<td style="font-weight: bold; text-align:right">
3,028
</td>
<td style="font-weight: bold; text-align:right">
41,165,310
</td>
<td style="font-weight: bold; text-align:right">
2,116,563
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/chile-population/">
19,449,130
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
5
</td>
<td>
330
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
437
</td>
<td style="font-weight: bold; text-align:right">
0.3
</td>
<td style="font-weight: bold; text-align:right">
14,112
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
33
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/south-africa/">
South Africa
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,998,863
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+397
</td>
<td style="font-weight: bold; text-align:right;">
101,907
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+12
</td>
<td style="font-weight: bold; text-align:right">
3,889,195
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
7,761
</td>
<td style="font-weight: bold; text-align:right">
192
</td>
<td style="font-weight: bold; text-align:right">
65,743
</td>
<td style="font-weight: bold; text-align:right">
1,675
</td>
<td style="font-weight: bold; text-align:right">
25,850,009
</td>
<td style="font-weight: bold; text-align:right">
424,984
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/south-africa-population/">
60,825,910
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
15
</td>
<td>
597
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
<td style="font-weight: bold; text-align:right">
0.2
</td>
<td style="font-weight: bold; text-align:right">
128
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
34
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/canada/">
Canada
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,990,239
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+4,031
</td>
<td style="font-weight: bold; text-align:right;">
42,254
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+15
</td>
<td style="font-weight: bold; text-align:right">
3,570,058
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+3
</td>
<td style="text-align:right;font-weight:bold;">
377,927
</td>
<td style="font-weight: bold; text-align:right">
195
</td>
<td style="font-weight: bold; text-align:right">
103,876
</td>
<td style="font-weight: bold; text-align:right">
1,100
</td>
<td style="font-weight: bold; text-align:right">
62,586,673
</td>
<td style="font-weight: bold; text-align:right">
1,629,286
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/canada-population/">
38,413,557
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
10
</td>
<td>
909
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
105
</td>
<td style="font-weight: bold; text-align:right">
0.4
</td>
<td style="font-weight: bold; text-align:right">
9,838
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
35
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/czech-republic/">
Czechia
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,945,788
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,979
</td>
<td style="font-weight: bold; text-align:right;">
40,343
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+3
</td>
<td style="font-weight: bold; text-align:right">
3,896,418
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+311
</td>
<td style="text-align:right;font-weight:bold;">
9,027
</td>
<td style="font-weight: bold; text-align:right">
13
</td>
<td style="font-weight: bold; text-align:right">
367,075
</td>
<td style="font-weight: bold; text-align:right">
3,753
</td>
<td style="font-weight: bold; text-align:right">
55,600,228
</td>
<td style="font-weight: bold; text-align:right">
5,172,460
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/czech-republic-population/">
10,749,282
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
266
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
184
</td>
<td style="font-weight: bold; text-align:right">
0.3
</td>
<td style="font-weight: bold; text-align:right">
840
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
36
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/switzerland/">
Switzerland
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,843,522
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
14,008
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
3,666,352
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
163,162
</td>
<td style="font-weight: bold; text-align:right">
60
</td>
<td style="font-weight: bold; text-align:right">
437,608
</td>
<td style="font-weight: bold; text-align:right">
1,595
</td>
<td style="font-weight: bold; text-align:right">
21,598,881
</td>
<td style="font-weight: bold; text-align:right">
2,459,160
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/switzerland-population/">
8,783,033
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
627
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
18,577
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
37
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/greece/">
Greece
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,843,142
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
30,476
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
3,614,441
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
198,225
</td>
<td style="font-weight: bold; text-align:right">
103
</td>
<td style="font-weight: bold; text-align:right">
372,404
</td>
<td style="font-weight: bold; text-align:right">
2,953
</td>
<td style="font-weight: bold; text-align:right">
86,634,526
</td>
<td style="font-weight: bold; text-align:right">
8,394,971
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/greece-population/">
10,319,812
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
339
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
19,208
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
38
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/philippines/">
Philippines
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,723,011
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,601
</td>
<td style="font-weight: bold; text-align:right;">
60,640
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
3,647,512
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1,203
</td>
<td style="text-align:right;font-weight:bold;">
14,859
</td>
<td style="font-weight: bold; text-align:right">
484
</td>
<td style="font-weight: bold; text-align:right">
33,082
</td>
<td style="font-weight: bold; text-align:right">
539
</td>
<td style="font-weight: bold; text-align:right">
31,056,409
</td>
<td style="font-weight: bold; text-align:right">
275,958
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/philippines-population/">
112,540,376
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
30
</td>
<td>
1,856
</td>
<td>
4
</td>
<td style="font-weight: bold; text-align:right">
14
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
132
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
39
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/peru/">
Peru
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,703,751
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+12,538
</td>
<td style="font-weight: bold; text-align:right;">
213,731
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+17
</td>
<td style="font-weight: bold; text-align:right">
3,411,396
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+7,452
</td>
<td style="text-align:right;font-weight:bold;">
78,624
</td>
<td style="font-weight: bold; text-align:right">
171
</td>
<td style="font-weight: bold; text-align:right">
109,243
</td>
<td style="font-weight: bold; text-align:right">
6,304
</td>
<td style="font-weight: bold; text-align:right">
32,068,347
</td>
<td style="font-weight: bold; text-align:right">
945,863
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/peru-population/">
33,903,781
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
9
</td>
<td>
159
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
370
</td>
<td style="font-weight: bold; text-align:right">
0.5
</td>
<td style="font-weight: bold; text-align:right">
2,319
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
40
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/denmark/">
Denmark
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,036,332
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,980
</td>
<td style="font-weight: bold; text-align:right;">
6,530
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
3,006,275
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1,900
</td>
<td style="text-align:right;font-weight:bold;">
23,527
</td>
<td style="font-weight: bold; text-align:right">
14
</td>
<td style="font-weight: bold; text-align:right">
520,492
</td>
<td style="font-weight: bold; text-align:right">
1,119
</td>
<td style="font-weight: bold; text-align:right">
127,804,276
</td>
<td style="font-weight: bold; text-align:right">
21,908,374
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/denmark-population/">
5,833,581
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
893
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
339
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,033
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
41
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/romania/">
Romania
</a>
</td>
<td style="font-weight: bold; text-align:right">
2,949,951
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+3,777
</td>
<td style="font-weight: bold; text-align:right;">
65,801
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+4
</td>
<td style="font-weight: bold; text-align:right">
2,853,664
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
30,486
</td>
<td style="font-weight: bold; text-align:right">
87
</td>
<td style="font-weight: bold; text-align:right">
155,445
</td>
<td style="font-weight: bold; text-align:right">
3,467
</td>
<td style="font-weight: bold; text-align:right">
23,675,834
</td>
<td style="font-weight: bold; text-align:right">
1,247,575
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/romania-population/">
18,977,479
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
6
</td>
<td>
288
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
199
</td>
<td style="font-weight: bold; text-align:right">
0.2
</td>
<td style="font-weight: bold; text-align:right">
1,606
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
42
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/sweden/">
Sweden
</a>
</td>
<td style="font-weight: bold; text-align:right">
2,528,166
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,029
</td>
<td style="font-weight: bold; text-align:right;">
19,170
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
2,492,728
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+101
</td>
<td style="text-align:right;font-weight:bold;">
16,268
</td>
<td style="font-weight: bold; text-align:right">
12
</td>
<td style="font-weight: bold; text-align:right">
247,204
</td>
<td style="font-weight: bold; text-align:right">
1,874
</td>
<td style="font-weight: bold; text-align:right">
18,688,615
</td>
<td style="font-weight: bold; text-align:right">
1,827,375
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/sweden-population/">
10,227,026
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
4
</td>
<td>
533
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
101
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,591
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
43
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/iraq/">
Iraq
</a>
</td>
<td style="font-weight: bold; text-align:right">
2,393,726
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+3,042
</td>
<td style="font-weight: bold; text-align:right;">
25,259
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+2
</td>
<td style="font-weight: bold; text-align:right">
2,332,346
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+2,760
</td>
<td style="text-align:right;font-weight:bold;">
36,121
</td>
<td style="font-weight: bold; text-align:right">
27
</td>
<td style="font-weight: bold; text-align:right">
56,921
</td>
<td style="font-weight: bold; text-align:right">
601
</td>
<td style="font-weight: bold; text-align:right">
18,904,478
</td>
<td style="font-weight: bold; text-align:right">
449,531
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/iraq-population/">
42,053,775
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
18
</td>
<td>
1,665
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
72
</td>
<td style="font-weight: bold; text-align:right">
0.05
</td>
<td style="font-weight: bold; text-align:right">
859
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
44
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/serbia/">
Serbia
</a>
</td>
<td style="font-weight: bold; text-align:right">
2,047,170
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+2,069
</td>
<td style="font-weight: bold; text-align:right;">
16,158
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+3
</td>
<td style="font-weight: bold; text-align:right">
2,009,422
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+532
</td>
<td style="text-align:right;font-weight:bold;">
21,590
</td>
<td style="font-weight: bold; text-align:right">
9
</td>
<td style="font-weight: bold; text-align:right">
236,230
</td>
<td style="font-weight: bold; text-align:right">
1,865
</td>
<td style="font-weight: bold; text-align:right">
9,995,798
</td>
<td style="font-weight: bold; text-align:right">
1,153,450
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/serbia-population/">
8,666,000
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
4
</td>
<td>
536
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
239
</td>
<td style="font-weight: bold; text-align:right">
0.3
</td>
<td style="font-weight: bold; text-align:right">
2,491
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
45
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bangladesh/">
Bangladesh
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,992,058
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,027
</td>
<td style="font-weight: bold; text-align:right;">
29,217
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+5
</td>
<td style="font-weight: bold; text-align:right">
1,917,419
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1,559
</td>
<td style="text-align:right;font-weight:bold;">
45,422
</td>
<td style="font-weight: bold; text-align:right">
1,228
</td>
<td style="font-weight: bold; text-align:right">
11,856
</td>
<td style="font-weight: bold; text-align:right">
174
</td>
<td style="font-weight: bold; text-align:right">
14,464,230
</td>
<td style="font-weight: bold; text-align:right">
86,087
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bangladesh-population/">
168,018,411
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
84
</td>
<td>
5,751
</td>
<td>
12
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
0.03
</td>
<td style="font-weight: bold; text-align:right">
270
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
46
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/hungary/">
Hungary
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,940,824
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+8,036
</td>
<td style="font-weight: bold; text-align:right;">
46,696
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+35
</td>
<td style="font-weight: bold; text-align:right">
1,878,221
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+3,289
</td>
<td style="text-align:right;font-weight:bold;">
15,907
</td>
<td style="font-weight: bold; text-align:right">
16
</td>
<td style="font-weight: bold; text-align:right">
201,946
</td>
<td style="font-weight: bold; text-align:right">
4,859
</td>
<td style="font-weight: bold; text-align:right">
11,394,556
</td>
<td style="font-weight: bold; text-align:right">
1,185,624
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/hungary-population/">
9,610,602
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
5
</td>
<td>
206
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
836
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
1,655
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
47
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/slovakia/">
Slovakia
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,802,866
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+873
</td>
<td style="font-weight: bold; text-align:right;">
20,166
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+3
</td>
<td style="font-weight: bold; text-align:right">
1,775,235
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+519
</td>
<td style="text-align:right;font-weight:bold;">
7,465
</td>
<td style="font-weight: bold; text-align:right">
16
</td>
<td style="font-weight: bold; text-align:right">
329,893
</td>
<td style="font-weight: bold; text-align:right">
3,690
</td>
<td style="font-weight: bold; text-align:right">
7,193,460
</td>
<td style="font-weight: bold; text-align:right">
1,316,277
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/slovakia-population/">
5,465,006
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
271
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
160
</td>
<td style="font-weight: bold; text-align:right">
0.5
</td>
<td style="font-weight: bold; text-align:right">
1,366
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
48
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/jordan/">
Jordan
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,700,526
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
14,068
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,685,354
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,104
</td>
<td style="font-weight: bold; text-align:right">
124
</td>
<td style="font-weight: bold; text-align:right">
163,376
</td>
<td style="font-weight: bold; text-align:right">
1,352
</td>
<td style="font-weight: bold; text-align:right">
16,894,012
</td>
<td style="font-weight: bold; text-align:right">
1,623,075
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/jordan-population/">
10,408,648
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
6
</td>
<td>
740
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
106
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
49
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/georgia/">
Georgia
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,662,299
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
16,844
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,637,293
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
8,162
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
418,332
</td>
<td style="font-weight: bold; text-align:right">
4,239
</td>
<td style="font-weight: bold; text-align:right">
16,920,079
</td>
<td style="font-weight: bold; text-align:right">
4,258,084
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/georgia-population/">
3,973,637
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
2
</td>
<td>
236
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,054
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
50
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/ireland/">
Ireland
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,628,745
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,207
</td>
<td style="font-weight: bold; text-align:right;">
7,537
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,565,874
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+887
</td>
<td style="text-align:right;font-weight:bold;">
55,334
</td>
<td style="font-weight: bold; text-align:right">
45
</td>
<td style="font-weight: bold; text-align:right">
322,543
</td>
<td style="font-weight: bold; text-align:right">
1,493
</td>
<td style="font-weight: bold; text-align:right">
12,466,865
</td>
<td style="font-weight: bold; text-align:right">
2,468,834
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/ireland-population/">
5,049,698
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
670
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
239
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
10,958
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
51
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/singapore/">
Singapore
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,557,648
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+16,870
</td>
<td style="font-weight: bold; text-align:right;">
1,440
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+3
</td>
<td style="font-weight: bold; text-align:right">
1,447,462
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+6,882
</td>
<td style="text-align:right;font-weight:bold;">
108,746
</td>
<td style="font-weight: bold; text-align:right">
14
</td>
<td style="font-weight: bold; text-align:right">
262,067
</td>
<td style="font-weight: bold; text-align:right">
242
</td>
<td style="font-weight: bold; text-align:right">
24,107,231
</td>
<td style="font-weight: bold; text-align:right">
4,055,935
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/singapore-population/">
5,943,693
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
4
</td>
<td>
4,128
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
2,838
</td>
<td style="font-weight: bold; text-align:right">
0.5
</td>
<td style="font-weight: bold; text-align:right">
18,296
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
52
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/pakistan/">
Pakistan
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,543,741
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+236
</td>
<td style="font-weight: bold; text-align:right;">
30,424
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,503,023
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+226
</td>
<td style="text-align:right;font-weight:bold;">
10,294
</td>
<td style="font-weight: bold; text-align:right">
152
</td>
<td style="font-weight: bold; text-align:right">
6,724
</td>
<td style="font-weight: bold; text-align:right">
133
</td>
<td style="font-weight: bold; text-align:right">
29,201,954
</td>
<td style="font-weight: bold; text-align:right">
127,189
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/pakistan-population/">
229,594,826
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
149
</td>
<td>
7,547
</td>
<td>
8
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
45
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
53
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/new-zealand/">
New Zealand
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,462,257
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+11,806
</td>
<td style="font-weight: bold; text-align:right;">
1,674
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+29
</td>
<td style="font-weight: bold; text-align:right">
1,390,502
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+10,527
</td>
<td style="text-align:right;font-weight:bold;">
70,081
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
292,329
</td>
<td style="font-weight: bold; text-align:right">
335
</td>
<td style="font-weight: bold; text-align:right">
7,323,062
</td>
<td style="font-weight: bold; text-align:right">
1,463,998
</td>
<td style="font-weight: bold; text-align:right">
5,002,100
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
3
</td>
<td>
2,988
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
2,360
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
14,010
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
54
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/norway/">
Norway
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,451,854
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+339
</td>
<td style="font-weight: bold; text-align:right;">
3,504
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,441,619
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+841
</td>
<td style="text-align:right;font-weight:bold;">
6,731
</td>
<td style="font-weight: bold; text-align:right">
20
</td>
<td style="font-weight: bold; text-align:right">
263,626
</td>
<td style="font-weight: bold; text-align:right">
636
</td>
<td style="font-weight: bold; text-align:right">
11,002,430
</td>
<td style="font-weight: bold; text-align:right">
1,997,809
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/norway-population/">
5,507,247
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
4
</td>
<td>
1,572
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
62
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,222
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
55
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/kazakhstan/">
Kazakhstan
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,310,370
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+482
</td>
<td style="font-weight: bold; text-align:right;">
13,663
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,293,251
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+55
</td>
<td style="text-align:right;font-weight:bold;">
3,456
</td>
<td style="font-weight: bold; text-align:right">
24
</td>
<td style="font-weight: bold; text-align:right">
68,133
</td>
<td style="font-weight: bold; text-align:right">
710
</td>
<td style="font-weight: bold; text-align:right">
11,575,012
</td>
<td style="font-weight: bold; text-align:right">
601,849
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/kazakhstan-population/">
19,232,410
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
15
</td>
<td>
1,408
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
25
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
180
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
56
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/china-hong-kong-sar/">
Hong Kong
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,279,840
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+3,154
</td>
<td style="font-weight: bold; text-align:right;">
9,422
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+2
</td>
<td style="font-weight: bold; text-align:right">
1,206,515
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+238
</td>
<td style="text-align:right;font-weight:bold;">
63,903
</td>
<td style="font-weight: bold; text-align:right">
9
</td>
<td style="font-weight: bold; text-align:right">
167,950
</td>
<td style="font-weight: bold; text-align:right">
1,236
</td>
<td style="font-weight: bold; text-align:right">
50,415,048
</td>
<td style="font-weight: bold; text-align:right">
6,615,815
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/china-hong-kong-sar-population/">
7,620,384
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
6
</td>
<td>
809
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
414
</td>
<td style="font-weight: bold; text-align:right">
0.3
</td>
<td style="font-weight: bold; text-align:right">
8,386
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
57
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/morocco/">
Morocco
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,244,892
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+2,064
</td>
<td style="font-weight: bold; text-align:right;">
16,165
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+5
</td>
<td style="font-weight: bold; text-align:right">
1,212,252
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+2,886
</td>
<td style="text-align:right;font-weight:bold;">
16,475
</td>
<td style="font-weight: bold; text-align:right">
293
</td>
<td style="font-weight: bold; text-align:right">
32,935
</td>
<td style="font-weight: bold; text-align:right">
428
</td>
<td style="font-weight: bold; text-align:right">
12,068,467
</td>
<td style="font-weight: bold; text-align:right">
319,287
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/morocco-population/">
37,798,233
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
30
</td>
<td>
2,338
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
55
</td>
<td style="font-weight: bold; text-align:right">
0.1
</td>
<td style="font-weight: bold; text-align:right">
436
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
58
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bulgaria/">
Bulgaria
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,181,657
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,021
</td>
<td style="font-weight: bold; text-align:right;">
37,281
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+2
</td>
<td style="font-weight: bold; text-align:right">
1,133,919
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+376
</td>
<td style="text-align:right;font-weight:bold;">
10,457
</td>
<td style="font-weight: bold; text-align:right">
39
</td>
<td style="font-weight: bold; text-align:right">
172,696
</td>
<td style="font-weight: bold; text-align:right">
5,449
</td>
<td style="font-weight: bold; text-align:right">
10,162,263
</td>
<td style="font-weight: bold; text-align:right">
1,485,192
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bulgaria-population/">
6,842,392
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
6
</td>
<td>
184
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
149
</td>
<td style="font-weight: bold; text-align:right">
0.3
</td>
<td style="font-weight: bold; text-align:right">
1,528
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
59
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/croatia/">
Croatia
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,162,061
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,808
</td>
<td style="font-weight: bold; text-align:right;">
16,130
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+6
</td>
<td style="font-weight: bold; text-align:right">
1,137,179
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+404
</td>
<td style="text-align:right;font-weight:bold;">
8,752
</td>
<td style="font-weight: bold; text-align:right">
14
</td>
<td style="font-weight: bold; text-align:right">
286,650
</td>
<td style="font-weight: bold; text-align:right">
3,979
</td>
<td style="font-weight: bold; text-align:right">
4,981,512
</td>
<td style="font-weight: bold; text-align:right">
1,228,810
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/croatia-population/">
4,053,933
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
251
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
446
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
2,159
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
60
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/finland/">
Finland
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,158,485
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
4,941
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,120,401
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
33,143
</td>
<td style="font-weight: bold; text-align:right">
21
</td>
<td style="font-weight: bold; text-align:right">
208,429
</td>
<td style="font-weight: bold; text-align:right">
889
</td>
<td style="font-weight: bold; text-align:right">
11,097,112
</td>
<td style="font-weight: bold; text-align:right">
1,996,537
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/finland-population/">
5,558,180
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
5
</td>
<td>
1,125
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
5,963
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
61
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/lebanon/">
Lebanon
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,125,720
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
10,477
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,087,587
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
27,656
</td>
<td style="font-weight: bold; text-align:right">
186
</td>
<td style="font-weight: bold; text-align:right">
166,441
</td>
<td style="font-weight: bold; text-align:right">
1,549
</td>
<td style="font-weight: bold; text-align:right">
4,795,578
</td>
<td style="font-weight: bold; text-align:right">
709,042
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/lebanon-population/">
6,763,462
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
6
</td>
<td>
646
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,089
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
62
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cuba/">
Cuba
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,106,553
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+63
</td>
<td style="font-weight: bold; text-align:right;">
8,529
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,097,740
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+45
</td>
<td style="text-align:right;font-weight:bold;">
284
</td>
<td style="font-weight: bold; text-align:right">
23
</td>
<td style="font-weight: bold; text-align:right">
97,816
</td>
<td style="font-weight: bold; text-align:right">
754
</td>
<td style="font-weight: bold; text-align:right">
13,852,049
</td>
<td style="font-weight: bold; text-align:right">
1,224,480
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cuba-population/">
11,312,593
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
10
</td>
<td>
1,326
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
25
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
63
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/tunisia/">
Tunisia
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,087,030
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
28,823
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
29
</td>
<td style="font-weight: bold; text-align:right">
90,064
</td>
<td style="font-weight: bold; text-align:right">
2,388
</td>
<td style="font-weight: bold; text-align:right">
4,743,992
</td>
<td style="font-weight: bold; text-align:right">
393,055
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/tunisia-population/">
12,069,534
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
11
</td>
<td>
419
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,606
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
64
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/lithuania/">
Lithuania
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,072,519
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+654
</td>
<td style="font-weight: bold; text-align:right;">
9,187
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+5
</td>
<td style="font-weight: bold; text-align:right">
1,038,300
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
25,032
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
405,442
</td>
<td style="font-weight: bold; text-align:right">
3,473
</td>
<td style="font-weight: bold; text-align:right">
10,022,944
</td>
<td style="font-weight: bold; text-align:right">
3,788,954
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/lithuania-population/">
2,645,306
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
288
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
247
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
9,463
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
65
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/slovenia/">
Slovenia
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,054,441
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,867
</td>
<td style="font-weight: bold; text-align:right;">
6,662
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+1
</td>
<td style="font-weight: bold; text-align:right">
1,031,087
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1,064
</td>
<td style="text-align:right;font-weight:bold;">
16,692
</td>
<td style="font-weight: bold; text-align:right">
14
</td>
<td style="font-weight: bold; text-align:right">
507,060
</td>
<td style="font-weight: bold; text-align:right">
3,204
</td>
<td style="font-weight: bold; text-align:right">
2,690,924
</td>
<td style="font-weight: bold; text-align:right">
1,294,013
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/slovenia-population/">
2,079,518
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
312
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
898
</td>
<td style="font-weight: bold; text-align:right">
0.5
</td>
<td style="font-weight: bold; text-align:right">
8,027
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
66
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/belarus/">
Belarus
</a>
</td>
<td style="font-weight: bold; text-align:right">
994,037
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
7,118
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
985,592
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,327
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
105,267
</td>
<td style="font-weight: bold; text-align:right">
754
</td>
<td style="font-weight: bold; text-align:right">
13,646,641
</td>
<td style="font-weight: bold; text-align:right">
1,445,157
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/belarus-population/">
9,443,019
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
9
</td>
<td>
1,327
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
141
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
67
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/nepal/">
Nepal
</a>
</td>
<td style="font-weight: bold; text-align:right">
980,767
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+177
</td>
<td style="font-weight: bold; text-align:right;">
11,952
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
967,810
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+45
</td>
<td style="text-align:right;font-weight:bold;">
1,005
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
32,476
</td>
<td style="font-weight: bold; text-align:right">
396
</td>
<td style="font-weight: bold; text-align:right">
5,778,673
</td>
<td style="font-weight: bold; text-align:right">
191,346
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/nepal-population/">
30,200,104
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
31
</td>
<td>
2,527
</td>
<td>
5
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
33
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
68
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/united-arab-emirates/">
UAE
</a>
</td>
<td style="font-weight: bold; text-align:right">
967,597
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,522
</td>
<td style="font-weight: bold; text-align:right;">
2,325
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+1
</td>
<td style="font-weight: bold; text-align:right">
947,677
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1,475
</td>
<td style="text-align:right;font-weight:bold;">
17,595
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
95,491
</td>
<td style="font-weight: bold; text-align:right">
229
</td>
<td style="font-weight: bold; text-align:right">
173,031,961
</td>
<td style="font-weight: bold; text-align:right">
17,076,317
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/united-arab-emirates-population/">
10,132,862
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
10
</td>
<td>
4,358
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
150
</td>
<td style="font-weight: bold; text-align:right">
0.10
</td>
<td style="font-weight: bold; text-align:right">
1,736
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
69
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/uruguay/">
Uruguay
</a>
</td>
<td style="font-weight: bold; text-align:right">
965,370
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
7,373
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
955,371
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
2,626
</td>
<td style="font-weight: bold; text-align:right">
18
</td>
<td style="font-weight: bold; text-align:right">
275,966
</td>
<td style="font-weight: bold; text-align:right">
2,108
</td>
<td style="font-weight: bold; text-align:right">
6,114,822
</td>
<td style="font-weight: bold; text-align:right">
1,748,015
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/uruguay-population/">
3,498,152
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
4
</td>
<td>
474
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
751
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
70
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/guatemala/">
Guatemala
</a>
</td>
<td style="font-weight: bold; text-align:right">
963,117
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+7,747
</td>
<td style="font-weight: bold; text-align:right;">
18,756
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+8
</td>
<td style="font-weight: bold; text-align:right">
877,945
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+3,059
</td>
<td style="text-align:right;font-weight:bold;">
66,416
</td>
<td style="font-weight: bold; text-align:right">
5
</td>
<td style="font-weight: bold; text-align:right">
51,814
</td>
<td style="font-weight: bold; text-align:right">
1,009
</td>
<td style="font-weight: bold; text-align:right">
5,083,330
</td>
<td style="font-weight: bold; text-align:right">
273,474
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/guatemala-population/">
18,587,983
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
19
</td>
<td>
991
</td>
<td>
4
</td>
<td style="font-weight: bold; text-align:right">
417
</td>
<td style="font-weight: bold; text-align:right">
0.4
</td>
<td style="font-weight: bold; text-align:right">
3,573
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
71
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bolivia/">
Bolivia
</a>
</td>
<td style="font-weight: bold; text-align:right">
952,456
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+3,801
</td>
<td style="font-weight: bold; text-align:right;">
21,973
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+3
</td>
<td style="font-weight: bold; text-align:right">
896,459
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1,060
</td>
<td style="text-align:right;font-weight:bold;">
34,024
</td>
<td style="font-weight: bold; text-align:right">
220
</td>
<td style="font-weight: bold; text-align:right">
79,397
</td>
<td style="font-weight: bold; text-align:right">
1,832
</td>
<td style="font-weight: bold; text-align:right">
2,705,422
</td>
<td style="font-weight: bold; text-align:right">
225,525
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bolivia-population/">
11,996,097
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
13
</td>
<td>
546
</td>
<td>
4
</td>
<td style="font-weight: bold; text-align:right">
317
</td>
<td style="font-weight: bold; text-align:right">
0.3
</td>
<td style="font-weight: bold; text-align:right">
2,836
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
72
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/panama/">
Panama
</a>
</td>
<td style="font-weight: bold; text-align:right">
932,710
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
8,384
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
910,900
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
13,426
</td>
<td style="font-weight: bold; text-align:right">
16
</td>
<td style="font-weight: bold; text-align:right">
209,476
</td>
<td style="font-weight: bold; text-align:right">
1,883
</td>
<td style="font-weight: bold; text-align:right">
6,637,861
</td>
<td style="font-weight: bold; text-align:right">
1,490,789
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/panama-population/">
4,452,581
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
5
</td>
<td>
531
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,015
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
73
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/mongolia/">
Mongolia
</a>
</td>
<td style="font-weight: bold; text-align:right">
930,327
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+674
</td>
<td style="font-weight: bold; text-align:right;">
2,179
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
192
</td>
<td style="font-weight: bold; text-align:right">
274,805
</td>
<td style="font-weight: bold; text-align:right">
644
</td>
<td style="font-weight: bold; text-align:right">
4,030,048
</td>
<td style="font-weight: bold; text-align:right">
1,190,418
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/mongolia-population/">
3,385,407
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
4
</td>
<td>
1,554
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
199
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
181,630
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
74
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/ecuador/">
Ecuador
</a>
</td>
<td style="font-weight: bold; text-align:right">
927,700
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+2,816
</td>
<td style="font-weight: bold; text-align:right;">
35,769
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+6
</td>
<td style="font-weight: bold; text-align:right">
870,985
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+319
</td>
<td style="text-align:right;font-weight:bold;">
20,946
</td>
<td style="font-weight: bold; text-align:right">
759
</td>
<td style="font-weight: bold; text-align:right">
51,010
</td>
<td style="font-weight: bold; text-align:right">
1,967
</td>
<td style="font-weight: bold; text-align:right">
2,470,170
</td>
<td style="font-weight: bold; text-align:right">
135,823
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/ecuador-population/">
18,186,639
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
20
</td>
<td>
508
</td>
<td>
7
</td>
<td style="font-weight: bold; text-align:right">
155
</td>
<td style="font-weight: bold; text-align:right">
0.3
</td>
<td style="font-weight: bold; text-align:right">
1,152
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
75
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/costa-rica/">
Costa Rica
</a>
</td>
<td style="font-weight: bold; text-align:right">
904,934
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
8,525
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
860,711
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
35,698
</td>
<td style="font-weight: bold; text-align:right">
52
</td>
<td style="font-weight: bold; text-align:right">
174,412
</td>
<td style="font-weight: bold; text-align:right">
1,643
</td>
<td style="font-weight: bold; text-align:right">
4,659,757
</td>
<td style="font-weight: bold; text-align:right">
898,094
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/costa-rica-population/">
5,188,498
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
6
</td>
<td>
609
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6,880
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
76
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/latvia/">
Latvia
</a>
</td>
<td style="font-weight: bold; text-align:right">
843,035
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+908
</td>
<td style="font-weight: bold; text-align:right;">
5,871
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
829,292
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+615
</td>
<td style="text-align:right;font-weight:bold;">
7,872
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
457,196
</td>
<td style="font-weight: bold; text-align:right">
3,184
</td>
<td style="font-weight: bold; text-align:right">
7,355,485
</td>
<td style="font-weight: bold; text-align:right">
3,989,035
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/latvia-population/">
1,843,926
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
314
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
492
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,269
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
77
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saudi-arabia/">
Saudi Arabia
</a>
</td>
<td style="font-weight: bold; text-align:right">
801,349
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+480
</td>
<td style="font-weight: bold; text-align:right;">
9,225
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+2
</td>
<td style="font-weight: bold; text-align:right">
786,220
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+598
</td>
<td style="text-align:right;font-weight:bold;">
5,904
</td>
<td style="font-weight: bold; text-align:right">
160
</td>
<td style="font-weight: bold; text-align:right">
22,313
</td>
<td style="font-weight: bold; text-align:right">
257
</td>
<td style="font-weight: bold; text-align:right">
43,614,875
</td>
<td style="font-weight: bold; text-align:right">
1,214,427
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saudi-arabia-population/">
35,913,946
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
45
</td>
<td>
3,893
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
13
</td>
<td style="font-weight: bold; text-align:right">
0.06
</td>
<td style="font-weight: bold; text-align:right">
164
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
78
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/azerbaijan/">
Azerbaijan
</a>
</td>
<td style="font-weight: bold; text-align:right">
793,827
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+63
</td>
<td style="font-weight: bold; text-align:right;">
9,719
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
783,453
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
655
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
76,887
</td>
<td style="font-weight: bold; text-align:right">
941
</td>
<td style="font-weight: bold; text-align:right">
6,972,527
</td>
<td style="font-weight: bold; text-align:right">
675,332
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/azerbaijan-population/">
10,324,599
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
13
</td>
<td>
1,062
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
63
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
79
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/paraguay/">
Paraguay
</a>
</td>
<td style="font-weight: bold; text-align:right">
673,829
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
19,036
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
639,340
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
15,453
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
92,175
</td>
<td style="font-weight: bold; text-align:right">
2,604
</td>
<td style="font-weight: bold; text-align:right">
2,646,163
</td>
<td style="font-weight: bold; text-align:right">
361,977
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/paraguay-population/">
7,310,305
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
11
</td>
<td>
384
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,114
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
80
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/sri-lanka/">
Sri Lanka
</a>
</td>
<td style="font-weight: bold; text-align:right">
664,345
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+30
</td>
<td style="font-weight: bold; text-align:right;">
16,526
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
647,442
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+3
</td>
<td style="text-align:right;font-weight:bold;">
377
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
30,763
</td>
<td style="font-weight: bold; text-align:right">
765
</td>
<td style="font-weight: bold; text-align:right">
6,486,117
</td>
<td style="font-weight: bold; text-align:right">
300,347
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/sri-lanka-population/">
21,595,391
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
33
</td>
<td>
1,307
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
17
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
81
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/kuwait/">
Kuwait
</a>
</td>
<td style="font-weight: bold; text-align:right">
648,216
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
2,556
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
641,752
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
3,908
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
147,365
</td>
<td style="font-weight: bold; text-align:right">
581
</td>
<td style="font-weight: bold; text-align:right">
8,242,720
</td>
<td style="font-weight: bold; text-align:right">
1,873,891
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/kuwait-population/">
4,398,718
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
7
</td>
<td>
1,721
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
888
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
82
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bahrain/">
Bahrain
</a>
</td>
<td style="font-weight: bold; text-align:right">
643,672
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,694
</td>
<td style="font-weight: bold; text-align:right;">
1,503
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
631,712
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1,402
</td>
<td style="text-align:right;font-weight:bold;">
10,457
</td>
<td style="font-weight: bold; text-align:right">
17
</td>
<td style="font-weight: bold; text-align:right">
353,361
</td>
<td style="font-weight: bold; text-align:right">
825
</td>
<td style="font-weight: bold; text-align:right">
10,093,235
</td>
<td style="font-weight: bold; text-align:right">
5,540,945
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bahrain-population/">
1,821,573
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
3
</td>
<td>
1,212
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
930
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
5,741
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
83
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/dominican-republic/">
Dominican Republic
</a>
</td>
<td style="font-weight: bold; text-align:right">
620,237
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+736
</td>
<td style="font-weight: bold; text-align:right;">
4,383
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
611,355
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+587
</td>
<td style="text-align:right;font-weight:bold;">
4,499
</td>
<td style="font-weight: bold; text-align:right">
27
</td>
<td style="font-weight: bold; text-align:right">
56,036
</td>
<td style="font-weight: bold; text-align:right">
396
</td>
<td style="font-weight: bold; text-align:right">
3,548,349
</td>
<td style="font-weight: bold; text-align:right">
320,577
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/dominican-republic-population/">
11,068,627
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
18
</td>
<td>
2,525
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
66
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
406
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
84
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/myanmar/">
Myanmar
</a>
</td>
<td style="font-weight: bold; text-align:right">
613,773
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+13
</td>
<td style="font-weight: bold; text-align:right;">
19,434
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
592,679
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+8
</td>
<td style="text-align:right;font-weight:bold;">
1,660
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
11,129
</td>
<td style="font-weight: bold; text-align:right">
352
</td>
<td style="font-weight: bold; text-align:right">
8,437,198
</td>
<td style="font-weight: bold; text-align:right">
152,987
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/myanmar-population/">
55,149,826
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
90
</td>
<td>
2,838
</td>
<td>
7
</td>
<td style="font-weight: bold; text-align:right">
0.2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
30
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
85
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/state-of-palestine/">
Palestine
</a>
</td>
<td style="font-weight: bold; text-align:right">
586,058
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
5,358
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
578,920
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,780
</td>
<td style="font-weight: bold; text-align:right">
17
</td>
<td style="font-weight: bold; text-align:right">
109,707
</td>
<td style="font-weight: bold; text-align:right">
1,003
</td>
<td style="font-weight: bold; text-align:right">
3,078,533
</td>
<td style="font-weight: bold; text-align:right">
576,286
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/state-of-palestine-population/">
5,342,019
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
9
</td>
<td>
997
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
333
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
86
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/estonia/">
Estonia
</a>
</td>
<td style="font-weight: bold; text-align:right">
585,143
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
2,608
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
523,576
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
58,959
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
440,505
</td>
<td style="font-weight: bold; text-align:right">
1,963
</td>
<td style="font-weight: bold; text-align:right">
3,424,969
</td>
<td style="font-weight: bold; text-align:right">
2,578,373
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/estonia-population/">
1,328,345
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
509
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
44,385
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
87
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cyprus/">
Cyprus
</a>
</td>
<td style="font-weight: bold; text-align:right">
530,510
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,079
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
124,370
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
405,061
</td>
<td style="font-weight: bold; text-align:right">
60
</td>
<td style="font-weight: bold; text-align:right">
433,002
</td>
<td style="font-weight: bold; text-align:right">
881
</td>
<td style="font-weight: bold; text-align:right">
9,477,138
</td>
<td style="font-weight: bold; text-align:right">
7,735,233
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cyprus-population/">
1,225,191
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
2
</td>
<td>
1,135
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
330,610
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
88
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/venezuela/">
Venezuela
</a>
</td>
<td style="font-weight: bold; text-align:right">
528,785
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+219
</td>
<td style="font-weight: bold; text-align:right;">
5,742
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+1
</td>
<td style="font-weight: bold; text-align:right">
520,353
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+229
</td>
<td style="text-align:right;font-weight:bold;">
2,690
</td>
<td style="font-weight: bold; text-align:right">
36
</td>
<td style="font-weight: bold; text-align:right">
18,703
</td>
<td style="font-weight: bold; text-align:right">
203
</td>
<td style="font-weight: bold; text-align:right">
3,359,014
</td>
<td style="font-weight: bold; text-align:right">
118,808
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/venezuela-population/">
28,272,539
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
53
</td>
<td>
4,924
</td>
<td>
8
</td>
<td style="font-weight: bold; text-align:right">
8
</td>
<td style="font-weight: bold; text-align:right">
0.04
</td>
<td style="font-weight: bold; text-align:right">
95
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
89
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/moldova/">
Moldova
</a>
</td>
<td style="font-weight: bold; text-align:right">
520,321
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
11,567
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
504,142
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
4,612
</td>
<td style="font-weight: bold; text-align:right">
49
</td>
<td style="font-weight: bold; text-align:right">
129,596
</td>
<td style="font-weight: bold; text-align:right">
2,881
</td>
<td style="font-weight: bold; text-align:right">
3,216,305
</td>
<td style="font-weight: bold; text-align:right">
801,083
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/moldova-population/">
4,014,948
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
8
</td>
<td>
347
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,149
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
90
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/egypt/">
Egypt
</a>
</td>
<td style="font-weight: bold; text-align:right">
515,645
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
24,613
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
442,182
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
48,850
</td>
<td style="font-weight: bold; text-align:right">
122
</td>
<td style="font-weight: bold; text-align:right">
4,853
</td>
<td style="font-weight: bold; text-align:right">
232
</td>
<td style="font-weight: bold; text-align:right">
3,693,367
</td>
<td style="font-weight: bold; text-align:right">
34,761
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/egypt-population/">
106,250,559
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
206
</td>
<td>
4,317
</td>
<td>
29
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
460
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
91
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/libya/">
Libya
</a>
</td>
<td style="font-weight: bold; text-align:right">
502,289
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
6,430
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
490,973
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
4,886
</td>
<td style="font-weight: bold; text-align:right">
101
</td>
<td style="font-weight: bold; text-align:right">
71,137
</td>
<td style="font-weight: bold; text-align:right">
911
</td>
<td style="font-weight: bold; text-align:right">
2,477,219
</td>
<td style="font-weight: bold; text-align:right">
350,837
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/libya-population/">
7,060,876
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
14
</td>
<td>
1,098
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
692
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
92
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/ethiopia/">
Ethiopia
</a>
</td>
<td style="font-weight: bold; text-align:right">
490,695
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+138
</td>
<td style="font-weight: bold; text-align:right;">
7,559
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+7
</td>
<td style="font-weight: bold; text-align:right">
467,941
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+166
</td>
<td style="text-align:right;font-weight:bold;">
15,195
</td>
<td style="font-weight: bold; text-align:right">
42
</td>
<td style="font-weight: bold; text-align:right">
4,064
</td>
<td style="font-weight: bold; text-align:right">
63
</td>
<td style="font-weight: bold; text-align:right">
5,093,993
</td>
<td style="font-weight: bold; text-align:right">
42,189
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/ethiopia-population/">
120,741,154
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
246
</td>
<td>
15,973
</td>
<td>
24
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
0.06
</td>
<td style="font-weight: bold; text-align:right">
126
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
93
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/honduras/">
Honduras
</a>
</td>
<td style="font-weight: bold; text-align:right">
430,672
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
10,912
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
132,498
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
287,262
</td>
<td style="font-weight: bold; text-align:right">
105
</td>
<td style="font-weight: bold; text-align:right">
42,123
</td>
<td style="font-weight: bold; text-align:right">
1,067
</td>
<td style="font-weight: bold; text-align:right">
1,415,120
</td>
<td style="font-weight: bold; text-align:right">
138,408
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/honduras-population/">
10,224,234
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
24
</td>
<td>
937
</td>
<td>
7
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
28,096
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
94
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/reunion/">
Réunion
</a>
</td>
<td style="font-weight: bold; text-align:right">
425,638
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
819
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
418,572
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
6,247
</td>
<td style="font-weight: bold; text-align:right">
10
</td>
<td style="font-weight: bold; text-align:right">
468,622
</td>
<td style="font-weight: bold; text-align:right">
902
</td>
<td style="font-weight: bold; text-align:right">
1,603,660
</td>
<td style="font-weight: bold; text-align:right">
1,765,611
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/reunion-population/">
908,275
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
2
</td>
<td>
1,109
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6,878
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
95
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/armenia/">
Armenia
</a>
</td>
<td style="font-weight: bold; text-align:right">
423,771
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
8,629
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
412,661
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
2,481
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
142,469
</td>
<td style="font-weight: bold; text-align:right">
2,901
</td>
<td style="font-weight: bold; text-align:right">
3,109,931
</td>
<td style="font-weight: bold; text-align:right">
1,045,538
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/armenia-population/">
2,974,478
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
7
</td>
<td>
345
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
834
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
96
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/oman/">
Oman
</a>
</td>
<td style="font-weight: bold; text-align:right">
391,641
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
4,260
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
384,669
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
2,712
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
72,930
</td>
<td style="font-weight: bold; text-align:right">
793
</td>
<td style="font-weight: bold; text-align:right">
25,000,000
</td>
<td style="font-weight: bold; text-align:right">
4,655,385
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/oman-population/">
5,370,125
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
14
</td>
<td>
1,261
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
505
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
97
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/qatar/">
Qatar
</a>
</td>
<td style="font-weight: bold; text-align:right">
390,918
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+863
</td>
<td style="font-weight: bold; text-align:right;">
680
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
385,129
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+690
</td>
<td style="text-align:right;font-weight:bold;">
5,109
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
139,225
</td>
<td style="font-weight: bold; text-align:right">
242
</td>
<td style="font-weight: bold; text-align:right">
3,690,191
</td>
<td style="font-weight: bold; text-align:right">
1,314,262
</td>
<td style="font-weight: bold; text-align:right">
2,807,805
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
7
</td>
<td>
4,129
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
307
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,820
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
98
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bosnia-and-herzegovina/">
Bosnia and Herzegovina
</a>
</td>
<td style="font-weight: bold; text-align:right">
380,211
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+229
</td>
<td style="font-weight: bold; text-align:right;">
15,812
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+2
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
117,369
</td>
<td style="font-weight: bold; text-align:right">
4,881
</td>
<td style="font-weight: bold; text-align:right">
1,799,158
</td>
<td style="font-weight: bold; text-align:right">
555,392
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bosnia-and-herzegovina-population/">
3,239,440
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
9
</td>
<td>
205
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
71
</td>
<td style="font-weight: bold; text-align:right">
0.6
</td>
<td style="font-weight: bold; text-align:right">
53,151
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
99
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/kenya/">
Kenya
</a>
</td>
<td style="font-weight: bold; text-align:right">
336,292
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+239
</td>
<td style="font-weight: bold; text-align:right;">
5,668
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
328,825
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+258
</td>
<td style="text-align:right;font-weight:bold;">
1,799
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
5,987
</td>
<td style="font-weight: bold; text-align:right">
101
</td>
<td style="font-weight: bold; text-align:right">
3,787,541
</td>
<td style="font-weight: bold; text-align:right">
67,425
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/kenya-population/">
56,174,415
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
167
</td>
<td>
9,911
</td>
<td>
15
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
32
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
100
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/zambia/">
Zambia
</a>
</td>
<td style="font-weight: bold; text-align:right">
327,102
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
4,008
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
322,093
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,001
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
16,836
</td>
<td style="font-weight: bold; text-align:right">
206
</td>
<td style="font-weight: bold; text-align:right">
3,576,701
</td>
<td style="font-weight: bold; text-align:right">
184,095
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/zambia-population/">
19,428,522
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
59
</td>
<td>
4,847
</td>
<td>
5
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
52
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
101
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/botswana/">
Botswana
</a>
</td>
<td style="font-weight: bold; text-align:right">
324,154
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
2,753
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
319,099
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
2,302
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
132,418
</td>
<td style="font-weight: bold; text-align:right">
1,125
</td>
<td style="font-weight: bold; text-align:right">
2,026,898
</td>
<td style="font-weight: bold; text-align:right">
827,993
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/botswana-population/">
2,447,965
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
8
</td>
<td>
889
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
940
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
102
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/macedonia/">
North Macedonia
</a>
</td>
<td style="font-weight: bold; text-align:right">
317,140
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+411
</td>
<td style="font-weight: bold; text-align:right;">
9,337
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
305,712
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+209
</td>
<td style="text-align:right;font-weight:bold;">
2,091
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
152,237
</td>
<td style="font-weight: bold; text-align:right">
4,482
</td>
<td style="font-weight: bold; text-align:right">
2,079,928
</td>
<td style="font-weight: bold; text-align:right">
998,429
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/macedonia-population/">
2,083,201
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
7
</td>
<td>
223
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
197
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,004
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
103
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/albania/">
Albania
</a>
</td>
<td style="font-weight: bold; text-align:right">
290,954
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,563
</td>
<td style="font-weight: bold; text-align:right;">
3,517
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+1
</td>
<td style="font-weight: bold; text-align:right">
280,374
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+725
</td>
<td style="text-align:right;font-weight:bold;">
7,063
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
101,327
</td>
<td style="font-weight: bold; text-align:right">
1,225
</td>
<td style="font-weight: bold; text-align:right">
1,866,752
</td>
<td style="font-weight: bold; text-align:right">
650,114
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/albania-population/">
2,871,424
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
10
</td>
<td>
816
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
544
</td>
<td style="font-weight: bold; text-align:right">
0.3
</td>
<td style="font-weight: bold; text-align:right">
2,460
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
104
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/algeria/">
Algeria
</a>
</td>
<td style="font-weight: bold; text-align:right">
266,328
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+25
</td>
<td style="font-weight: bold; text-align:right;">
6,875
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
178,728
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+13
</td>
<td style="text-align:right;font-weight:bold;">
80,725
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
5,859
</td>
<td style="font-weight: bold; text-align:right">
151
</td>
<td style="font-weight: bold; text-align:right">
230,861
</td>
<td style="font-weight: bold; text-align:right">
5,079
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/algeria-population/">
45,457,663
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
171
</td>
<td>
6,612
</td>
<td>
197
</td>
<td style="font-weight: bold; text-align:right">
0.5
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,776
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
105
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/luxembourg/">
Luxembourg
</a>
</td>
<td style="font-weight: bold; text-align:right">
263,167
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,094
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
251,249
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
10,824
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
406,975
</td>
<td style="font-weight: bold; text-align:right">
1,692
</td>
<td style="font-weight: bold; text-align:right">
4,307,055
</td>
<td style="font-weight: bold; text-align:right">
6,660,659
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/luxembourg-population/">
646,641
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
591
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
16,739
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
106
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/nigeria/">
Nigeria
</a>
</td>
<td style="font-weight: bold; text-align:right">
258,874
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
3,144
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
250,456
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
5,274
</td>
<td style="font-weight: bold; text-align:right">
11
</td>
<td style="font-weight: bold; text-align:right">
1,196
</td>
<td style="font-weight: bold; text-align:right">
15
</td>
<td style="font-weight: bold; text-align:right">
5,349,305
</td>
<td style="font-weight: bold; text-align:right">
24,707
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/nigeria-population/">
216,505,530
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
836
</td>
<td>
68,863
</td>
<td>
40
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
24
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
107
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/zimbabwe/">
Zimbabwe
</a>
</td>
<td style="font-weight: bold; text-align:right">
256,047
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+66
</td>
<td style="font-weight: bold; text-align:right;">
5,566
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+1
</td>
<td style="font-weight: bold; text-align:right">
249,834
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+111
</td>
<td style="text-align:right;font-weight:bold;">
647
</td>
<td style="font-weight: bold; text-align:right">
12
</td>
<td style="font-weight: bold; text-align:right">
16,733
</td>
<td style="font-weight: bold; text-align:right">
364
</td>
<td style="font-weight: bold; text-align:right">
2,421,838
</td>
<td style="font-weight: bold; text-align:right">
158,270
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/zimbabwe-population/">
15,301,924
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
60
</td>
<td>
2,749
</td>
<td>
6
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
0.07
</td>
<td style="font-weight: bold; text-align:right">
42
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
108
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/montenegro/">
Montenegro
</a>
</td>
<td style="font-weight: bold; text-align:right">
244,903
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+566
</td>
<td style="font-weight: bold; text-align:right;">
2,730
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
238,886
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+228
</td>
<td style="text-align:right;font-weight:bold;">
3,287
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
389,832
</td>
<td style="font-weight: bold; text-align:right">
4,346
</td>
<td style="font-weight: bold; text-align:right">
2,512,273
</td>
<td style="font-weight: bold; text-align:right">
3,998,989
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/montenegro-population/">
628,227
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
230
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
901
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
5,232
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
109
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/uzbekistan/">
Uzbekistan
</a>
</td>
<td style="font-weight: bold; text-align:right">
241,882
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+68
</td>
<td style="font-weight: bold; text-align:right;">
1,637
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
238,799
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+43
</td>
<td style="text-align:right;font-weight:bold;">
1,446
</td>
<td style="font-weight: bold; text-align:right">
23
</td>
<td style="font-weight: bold; text-align:right">
7,021
</td>
<td style="font-weight: bold; text-align:right">
48
</td>
<td style="font-weight: bold; text-align:right">
1,377,915
</td>
<td style="font-weight: bold; text-align:right">
39,994
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/uzbekistan-population/">
34,453,391
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
142
</td>
<td>
21,047
</td>
<td>
25
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
42
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
110
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/mozambique/">
Mozambique
</a>
</td>
<td style="font-weight: bold; text-align:right">
228,840
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+71
</td>
<td style="font-weight: bold; text-align:right;">
2,214
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
226,149
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+16
</td>
<td style="text-align:right;font-weight:bold;">
477
</td>
<td style="font-weight: bold; text-align:right">
11
</td>
<td style="font-weight: bold; text-align:right">
6,928
</td>
<td style="font-weight: bold; text-align:right">
67
</td>
<td style="font-weight: bold; text-align:right">
1,357,529
</td>
<td style="font-weight: bold; text-align:right">
41,097
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/mozambique-population/">
33,032,036
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
144
</td>
<td>
14,920
</td>
<td>
24
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
14
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
111
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/laos/">
Laos
</a>
</td>
<td style="font-weight: bold; text-align:right">
210,401
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+15
</td>
<td style="font-weight: bold; text-align:right;">
757
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
28,092
</td>
<td style="font-weight: bold; text-align:right">
101
</td>
<td style="font-weight: bold; text-align:right">
1,233,207
</td>
<td style="font-weight: bold; text-align:right">
164,652
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/laos-population/">
7,489,772
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
36
</td>
<td>
9,894
</td>
<td>
6
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
26,968
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
112
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/martinique/">
Martinique
</a>
</td>
<td style="font-weight: bold; text-align:right">
207,969
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
987
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
104
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
206,878
</td>
<td style="font-weight: bold; text-align:right">
8
</td>
<td style="font-weight: bold; text-align:right">
555,065
</td>
<td style="font-weight: bold; text-align:right">
2,634
</td>
<td style="font-weight: bold; text-align:right">
828,928
</td>
<td style="font-weight: bold; text-align:right">
2,212,392
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/martinique-population/">
374,675
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
2
</td>
<td>
380
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
552,153
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
113
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/kyrgyzstan/">
Kyrgyzstan
</a>
</td>
<td style="font-weight: bold; text-align:right">
201,282
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+229
</td>
<td style="font-weight: bold; text-align:right;">
2,991
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
196,406
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,885
</td>
<td style="font-weight: bold; text-align:right">
131
</td>
<td style="font-weight: bold; text-align:right">
29,852
</td>
<td style="font-weight: bold; text-align:right">
444
</td>
<td style="font-weight: bold; text-align:right">
1,907,195
</td>
<td style="font-weight: bold; text-align:right">
282,858
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/kyrgyzstan-population/">
6,742,594
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
33
</td>
<td>
2,254
</td>
<td>
4
</td>
<td style="font-weight: bold; text-align:right">
34
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
280
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
114
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/iceland/">
Iceland
</a>
</td>
<td style="font-weight: bold; text-align:right">
198,721
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
179
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
574,777
</td>
<td style="font-weight: bold; text-align:right">
518
</td>
<td style="font-weight: bold; text-align:right">
1,977,641
</td>
<td style="font-weight: bold; text-align:right">
5,720,090
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/iceland-population/">
345,736
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
1,931
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
355,349
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
115
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/maldives/">
Maldives
</a>
</td>
<td style="font-weight: bold; text-align:right">
183,491
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
307
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
163,687
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
19,497
</td>
<td style="font-weight: bold; text-align:right">
25
</td>
<td style="font-weight: bold; text-align:right">
327,744
</td>
<td style="font-weight: bold; text-align:right">
548
</td>
<td style="font-weight: bold; text-align:right">
2,213,831
</td>
<td style="font-weight: bold; text-align:right">
3,954,251
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/maldives-population/">
559,861
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
3
</td>
<td>
1,824
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
34,825
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
116
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/afghanistan/">
Afghanistan
</a>
</td>
<td style="font-weight: bold; text-align:right">
183,285
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+12
</td>
<td style="font-weight: bold; text-align:right;">
7,728
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
165,263
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+124
</td>
<td style="text-align:right;font-weight:bold;">
10,294
</td>
<td style="font-weight: bold; text-align:right">
1,124
</td>
<td style="font-weight: bold; text-align:right">
4,503
</td>
<td style="font-weight: bold; text-align:right">
190
</td>
<td style="font-weight: bold; text-align:right">
1,012,119
</td>
<td style="font-weight: bold; text-align:right">
24,863
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/afghanistan-population/">
40,707,111
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
222
</td>
<td>
5,267
</td>
<td>
40
</td>
<td style="font-weight: bold; text-align:right">
0.3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
253
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
117
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/el-salvador/">
El Salvador
</a>
</td>
<td style="font-weight: bold; text-align:right">
180,970
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
4,165
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+1
</td>
<td style="font-weight: bold; text-align:right">
165,895
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
10,910
</td>
<td style="font-weight: bold; text-align:right">
8
</td>
<td style="font-weight: bold; text-align:right">
27,618
</td>
<td style="font-weight: bold; text-align:right">
636
</td>
<td style="font-weight: bold; text-align:right">
2,284,873
</td>
<td style="font-weight: bold; text-align:right">
348,697
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/el-salvador-population/">
6,552,601
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
36
</td>
<td>
1,573
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
0.2
</td>
<td style="font-weight: bold; text-align:right">
1,665
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
118
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/brunei-darussalam/">
Brunei
</a>
</td>
<td style="font-weight: bold; text-align:right">
178,267
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1,585
</td>
<td style="font-weight: bold; text-align:right;">
225
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
164,116
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
13,926
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
399,722
</td>
<td style="font-weight: bold; text-align:right">
505
</td>
<td style="font-weight: bold; text-align:right">
717,784
</td>
<td style="font-weight: bold; text-align:right">
1,609,461
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/brunei-darussalam-population/">
445,978
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
3
</td>
<td>
1,982
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
3,554
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
31,226
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
119
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/guadeloupe/">
Guadeloupe
</a>
</td>
<td style="font-weight: bold; text-align:right">
175,348
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
958
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
2,250
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
172,140
</td>
<td style="font-weight: bold; text-align:right">
19
</td>
<td style="font-weight: bold; text-align:right">
438,082
</td>
<td style="font-weight: bold; text-align:right">
2,393
</td>
<td style="font-weight: bold; text-align:right">
938,039
</td>
<td style="font-weight: bold; text-align:right">
2,343,557
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/guadeloupe-population/">
400,263
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
2
</td>
<td>
418
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
430,067
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
120
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/namibia/">
Namibia
</a>
</td>
<td style="font-weight: bold; text-align:right">
169,253
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
4,065
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
164,813
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
375
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
64,250
</td>
<td style="font-weight: bold; text-align:right">
1,543
</td>
<td style="font-weight: bold; text-align:right">
1,062,663
</td>
<td style="font-weight: bold; text-align:right">
403,400
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/namibia-population/">
2,634,269
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
16
</td>
<td>
648
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
142
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
121
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/trinidad-and-tobago/">
Trinidad and Tobago
</a>
</td>
<td style="font-weight: bold; text-align:right">
168,617
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+190
</td>
<td style="font-weight: bold; text-align:right;">
4,033
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+2
</td>
<td style="font-weight: bold; text-align:right">
158,396
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
6,188
</td>
<td style="font-weight: bold; text-align:right">
18
</td>
<td style="font-weight: bold; text-align:right">
119,698
</td>
<td style="font-weight: bold; text-align:right">
2,863
</td>
<td style="font-weight: bold; text-align:right">
779,251
</td>
<td style="font-weight: bold; text-align:right">
553,178
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/trinidad-and-tobago-population/">
1,408,681
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
8
</td>
<td>
349
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
135
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
4,393
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
122
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/uganda/">
Uganda
</a>
</td>
<td style="font-weight: bold; text-align:right">
168,497
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+57
</td>
<td style="font-weight: bold; text-align:right;">
3,627
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
100,420
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
64,450
</td>
<td style="font-weight: bold; text-align:right">
10
</td>
<td style="font-weight: bold; text-align:right">
3,462
</td>
<td style="font-weight: bold; text-align:right">
75
</td>
<td style="font-weight: bold; text-align:right">
2,793,398
</td>
<td style="font-weight: bold; text-align:right">
57,393
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/uganda-population/">
48,671,743
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
289
</td>
<td>
13,419
</td>
<td>
17
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,324
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
123
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/ghana/">
Ghana
</a>
</td>
<td style="font-weight: bold; text-align:right">
167,215
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,456
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
165,153
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
606
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
5,163
</td>
<td style="font-weight: bold; text-align:right">
45
</td>
<td style="font-weight: bold; text-align:right">
2,479,277
</td>
<td style="font-weight: bold; text-align:right">
76,547
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/ghana-population/">
32,388,938
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
194
</td>
<td>
22,245
</td>
<td>
13
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
19
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
124
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/jamaica/">
Jamaica
</a>
</td>
<td style="font-weight: bold; text-align:right">
144,213
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+75
</td>
<td style="font-weight: bold; text-align:right;">
3,161
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+3
</td>
<td style="font-weight: bold; text-align:right">
91,937
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+79
</td>
<td style="text-align:right;font-weight:bold;">
49,115
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
48,274
</td>
<td style="font-weight: bold; text-align:right">
1,058
</td>
<td style="font-weight: bold; text-align:right">
1,137,392
</td>
<td style="font-weight: bold; text-align:right">
380,731
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/jamaica-population/">
2,987,387
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
21
</td>
<td>
945
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
25
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
16,441
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
125
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cambodia/">
Cambodia
</a>
</td>
<td style="font-weight: bold; text-align:right">
136,390
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+16
</td>
<td style="font-weight: bold; text-align:right;">
3,056
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
133,258
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+14
</td>
<td style="text-align:right;font-weight:bold;">
76
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
7,935
</td>
<td style="font-weight: bold; text-align:right">
178
</td>
<td style="font-weight: bold; text-align:right">
3,001,916
</td>
<td style="font-weight: bold; text-align:right">
174,647
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cambodia-population/">
17,188,440
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
126
</td>
<td>
5,624
</td>
<td>
6
</td>
<td style="font-weight: bold; text-align:right">
0.9
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
126
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/rwanda/">
Rwanda
</a>
</td>
<td style="font-weight: bold; text-align:right">
131,766
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+32
</td>
<td style="font-weight: bold; text-align:right;">
1,462
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
45,522
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
84,782
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
9,686
</td>
<td style="font-weight: bold; text-align:right">
107
</td>
<td style="font-weight: bold; text-align:right">
5,604,943
</td>
<td style="font-weight: bold; text-align:right">
412,018
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/rwanda-population/">
13,603,629
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
103
</td>
<td>
9,305
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6,232
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
127
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cameroon/">
Cameroon
</a>
</td>
<td style="font-weight: bold; text-align:right">
120,068
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,931
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
117,791
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
346
</td>
<td style="font-weight: bold; text-align:right">
13
</td>
<td style="font-weight: bold; text-align:right">
4,306
</td>
<td style="font-weight: bold; text-align:right">
69
</td>
<td style="font-weight: bold; text-align:right">
1,751,774
</td>
<td style="font-weight: bold; text-align:right">
62,818
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cameroon-population/">
27,886,520
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
232
</td>
<td>
14,441
</td>
<td>
16
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
12
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
128
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/malta/">
Malta
</a>
</td>
<td style="font-weight: bold; text-align:right">
109,911
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+418
</td>
<td style="font-weight: bold; text-align:right;">
766
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+3
</td>
<td style="font-weight: bold; text-align:right">
101,188
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+601
</td>
<td style="text-align:right;font-weight:bold;">
7,957
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
247,587
</td>
<td style="font-weight: bold; text-align:right">
1,726
</td>
<td style="font-weight: bold; text-align:right">
1,992,748
</td>
<td style="font-weight: bold; text-align:right">
4,488,899
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/malta-population/">
443,928
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
4
</td>
<td>
580
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
942
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
<td style="font-weight: bold; text-align:right">
17,924
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
129
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/angola/">
Angola
</a>
</td>
<td style="font-weight: bold; text-align:right">
101,320
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,900
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
97,149
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
2,271
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,900
</td>
<td style="font-weight: bold; text-align:right">
54
</td>
<td style="font-weight: bold; text-align:right">
1,499,795
</td>
<td style="font-weight: bold; text-align:right">
42,924
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/angola-population/">
34,940,471
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
345
</td>
<td>
18,390
</td>
<td>
23
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
65
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
130
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/democratic-republic-of-the-congo/">
DRC
</a>
</td>
<td style="font-weight: bold; text-align:right">
91,737
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,376
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
50,930
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
39,431
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
965
</td>
<td style="font-weight: bold; text-align:right">
14
</td>
<td style="font-weight: bold; text-align:right">
846,704
</td>
<td style="font-weight: bold; text-align:right">
8,905
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/democratic-republic-of-the-congo-population/">
95,085,590
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
1,037
</td>
<td>
69,103
</td>
<td>
112
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
415
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
131
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/french-guiana/">
French Guiana
</a>
</td>
<td style="font-weight: bold; text-align:right">
89,779
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
402
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
11,254
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
78,123
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
285,567
</td>
<td style="font-weight: bold; text-align:right">
1,279
</td>
<td style="font-weight: bold; text-align:right">
644,972
</td>
<td style="font-weight: bold; text-align:right">
2,051,509
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/french-guiana-population/">
314,389
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
4
</td>
<td>
782
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
248,492
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
132
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/malawi/">
Malawi
</a>
</td>
<td style="font-weight: bold; text-align:right">
86,823
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+24
</td>
<td style="font-weight: bold; text-align:right;">
2,651
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
83,506
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
666
</td>
<td style="font-weight: bold; text-align:right">
67
</td>
<td style="font-weight: bold; text-align:right">
4,312
</td>
<td style="font-weight: bold; text-align:right">
132
</td>
<td style="font-weight: bold; text-align:right">
596,340
</td>
<td style="font-weight: bold; text-align:right">
29,620
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/malawi-population/">
20,132,870
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
232
</td>
<td>
7,594
</td>
<td>
34
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
33
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
133
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/barbados/">
Barbados
</a>
</td>
<td style="font-weight: bold; text-align:right">
86,691
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+240
</td>
<td style="font-weight: bold; text-align:right;">
479
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+1
</td>
<td style="font-weight: bold; text-align:right">
84,540
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+73
</td>
<td style="text-align:right;font-weight:bold;">
1,672
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
300,917
</td>
<td style="font-weight: bold; text-align:right">
1,663
</td>
<td style="font-weight: bold; text-align:right">
713,255
</td>
<td style="font-weight: bold; text-align:right">
2,475,815
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/barbados-population/">
288,089
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
3
</td>
<td>
601
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
833
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
5,804
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
134
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/senegal/">
Senegal
</a>
</td>
<td style="font-weight: bold; text-align:right">
86,594
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+53
</td>
<td style="font-weight: bold; text-align:right;">
1,968
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
84,517
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+23
</td>
<td style="text-align:right;font-weight:bold;">
109
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,909
</td>
<td style="font-weight: bold; text-align:right">
112
</td>
<td style="font-weight: bold; text-align:right">
1,122,931
</td>
<td style="font-weight: bold; text-align:right">
63,661
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/senegal-population/">
17,639,141
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
204
</td>
<td>
8,963
</td>
<td>
16
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
135
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/channel-islands/">
Channel Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
84,518
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
181
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
81,180
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
3,157
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
477,195
</td>
<td style="font-weight: bold; text-align:right">
1,022
</td>
<td style="font-weight: bold; text-align:right">
1,252,808
</td>
<td style="font-weight: bold; text-align:right">
7,073,456
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/channel-islands-population/">
177,114
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
979
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
17,825
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
136
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cote-d-ivoire/">
Ivory Coast
</a>
</td>
<td style="font-weight: bold; text-align:right">
84,248
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+83
</td>
<td style="font-weight: bold; text-align:right;">
806
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
83,241
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+23
</td>
<td style="text-align:right;font-weight:bold;">
201
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,041
</td>
<td style="font-weight: bold; text-align:right">
29
</td>
<td style="font-weight: bold; text-align:right">
1,562,320
</td>
<td style="font-weight: bold; text-align:right">
56,394
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cote-d-ivoire-population/">
27,703,542
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
329
</td>
<td>
34,372
</td>
<td>
18
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
137
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/suriname/">
Suriname
</a>
</td>
<td style="font-weight: bold; text-align:right">
80,919
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,377
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
49,590
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
29,952
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
135,476
</td>
<td style="font-weight: bold; text-align:right">
2,305
</td>
<td style="font-weight: bold; text-align:right">
238,251
</td>
<td style="font-weight: bold; text-align:right">
398,883
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/suriname-population/">
597,296
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
7
</td>
<td>
434
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
50,146
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
138
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/french-polynesia/">
French Polynesia
</a>
</td>
<td style="font-weight: bold; text-align:right">
73,858
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
649
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
<td style="font-weight: bold; text-align:right">
259,879
</td>
<td style="font-weight: bold; text-align:right">
2,284
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/french-polynesia-population/">
284,202
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
4
</td>
<td>
438
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
139,721
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
139
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/swaziland/">
Eswatini
</a>
</td>
<td style="font-weight: bold; text-align:right">
73,229
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+2
</td>
<td style="font-weight: bold; text-align:right;">
1,417
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
71,719
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+3
</td>
<td style="text-align:right;font-weight:bold;">
93
</td>
<td style="font-weight: bold; text-align:right">
11
</td>
<td style="font-weight: bold; text-align:right">
61,821
</td>
<td style="font-weight: bold; text-align:right">
1,196
</td>
<td style="font-weight: bold; text-align:right">
1,038,616
</td>
<td style="font-weight: bold; text-align:right">
876,812
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/swaziland-population/">
1,184,537
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
16
</td>
<td>
836
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
79
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
140
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/guyana/">
Guyana
</a>
</td>
<td style="font-weight: bold; text-align:right">
68,500
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+91
</td>
<td style="font-weight: bold; text-align:right;">
1,264
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+1
</td>
<td style="font-weight: bold; text-align:right">
66,359
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+31
</td>
<td style="text-align:right;font-weight:bold;">
877
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
86,245
</td>
<td style="font-weight: bold; text-align:right">
1,591
</td>
<td style="font-weight: bold; text-align:right">
667,480
</td>
<td style="font-weight: bold; text-align:right">
840,388
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/guyana-population/">
794,252
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
12
</td>
<td>
628
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
115
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
1,104
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
141
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/fiji/">
Fiji
</a>
</td>
<td style="font-weight: bold; text-align:right">
66,634
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+164
</td>
<td style="font-weight: bold; text-align:right;">
869
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
63,984
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,781
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
73,254
</td>
<td style="font-weight: bold; text-align:right">
955
</td>
<td style="font-weight: bold; text-align:right">
582,933
</td>
<td style="font-weight: bold; text-align:right">
640,851
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/fiji-population/">
909,624
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
14
</td>
<td>
1,047
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
180
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,958
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
142
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/new-caledonia/">
New Caledonia
</a>
</td>
<td style="font-weight: bold; text-align:right">
66,596
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
314
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
64,483
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,799
</td>
<td style="font-weight: bold; text-align:right">
9
</td>
<td style="font-weight: bold; text-align:right">
228,800
</td>
<td style="font-weight: bold; text-align:right">
1,079
</td>
<td style="font-weight: bold; text-align:right">
98,964
</td>
<td style="font-weight: bold; text-align:right">
340,004
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/new-caledonia-population/">
291,067
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
4
</td>
<td>
927
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6,181
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
143
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/madagascar/">
Madagascar
</a>
</td>
<td style="font-weight: bold; text-align:right">
66,098
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,403
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
63,895
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
800
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
2,269
</td>
<td style="font-weight: bold; text-align:right">
48
</td>
<td style="font-weight: bold; text-align:right">
478,036
</td>
<td style="font-weight: bold; text-align:right">
16,407
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/madagascar-population/">
29,135,325
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
441
</td>
<td>
20,766
</td>
<td>
61
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
27
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
144
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/belize/">
Belize
</a>
</td>
<td style="font-weight: bold; text-align:right">
65,508
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
680
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
64,113
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
715
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
158,894
</td>
<td style="font-weight: bold; text-align:right">
1,649
</td>
<td style="font-weight: bold; text-align:right">
576,016
</td>
<td style="font-weight: bold; text-align:right">
1,397,168
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/belize-population/">
412,274
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
6
</td>
<td>
606
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,734
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
145
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/sudan/">
Sudan
</a>
</td>
<td style="font-weight: bold; text-align:right">
62,795
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
4,955
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,367
</td>
<td style="font-weight: bold; text-align:right">
108
</td>
<td style="font-weight: bold; text-align:right">
562,941
</td>
<td style="font-weight: bold; text-align:right">
12,257
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/sudan-population/">
45,926,466
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
731
</td>
<td>
9,269
</td>
<td>
82
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
381
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
146
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cabo-verde/">
Cabo Verde
</a>
</td>
<td style="font-weight: bold; text-align:right">
61,776
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+49
</td>
<td style="font-weight: bold; text-align:right;">
409
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
60,941
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+188
</td>
<td style="text-align:right;font-weight:bold;">
426
</td>
<td style="font-weight: bold; text-align:right">
23
</td>
<td style="font-weight: bold; text-align:right">
108,715
</td>
<td style="font-weight: bold; text-align:right">
720
</td>
<td style="font-weight: bold; text-align:right">
401,416
</td>
<td style="font-weight: bold; text-align:right">
706,421
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cabo-verde-population/">
568,239
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
9
</td>
<td>
1,389
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
86
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
750
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
147
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/mauritania/">
Mauritania
</a>
</td>
<td style="font-weight: bold; text-align:right">
61,543
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+140
</td>
<td style="font-weight: bold; text-align:right;">
986
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
58,830
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+136
</td>
<td style="text-align:right;font-weight:bold;">
1,727
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
12,566
</td>
<td style="font-weight: bold; text-align:right">
201
</td>
<td style="font-weight: bold; text-align:right">
885,990
</td>
<td style="font-weight: bold; text-align:right">
180,902
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/mauritania-population/">
4,897,620
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
80
</td>
<td>
4,967
</td>
<td>
6
</td>
<td style="font-weight: bold; text-align:right">
29
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
353
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
148
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bhutan/">
Bhutan
</a>
</td>
<td style="font-weight: bold; text-align:right">
59,940
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
21
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
59,845
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
74
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
75,984
</td>
<td style="font-weight: bold; text-align:right">
27
</td>
<td style="font-weight: bold; text-align:right">
2,303,734
</td>
<td style="font-weight: bold; text-align:right">
2,920,381
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bhutan-population/">
788,847
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
13
</td>
<td>
37,564
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
94
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
149
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/syria/">
Syria
</a>
</td>
<td style="font-weight: bold; text-align:right">
55,960
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+3
</td>
<td style="font-weight: bold; text-align:right;">
3,150
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
52,776
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+2
</td>
<td style="text-align:right;font-weight:bold;">
34
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,047
</td>
<td style="font-weight: bold; text-align:right">
172
</td>
<td style="font-weight: bold; text-align:right">
146,269
</td>
<td style="font-weight: bold; text-align:right">
7,965
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/syria-population/">
18,363,203
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
328
</td>
<td>
5,830
</td>
<td>
126
</td>
<td style="font-weight: bold; text-align:right">
0.2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
150
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/gabon/">
Gabon
</a>
</td>
<td style="font-weight: bold; text-align:right">
48,157
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
305
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
47,391
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
461
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
20,648
</td>
<td style="font-weight: bold; text-align:right">
131
</td>
<td style="font-weight: bold; text-align:right">
1,604,748
</td>
<td style="font-weight: bold; text-align:right">
688,057
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/gabon-population/">
2,332,288
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
48
</td>
<td>
7,647
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
198
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
151
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/seychelles/">
Seychelles
</a>
</td>
<td style="font-weight: bold; text-align:right">
45,000
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
167
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
44,627
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
206
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
451,889
</td>
<td style="font-weight: bold; text-align:right">
1,677
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/seychelles-population/">
99,582
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
2
</td>
<td>
596
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,069
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
152
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/curacao/">
Curaçao
</a>
</td>
<td style="font-weight: bold; text-align:right">
44,782
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
280
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
44,339
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
163
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
270,661
</td>
<td style="font-weight: bold; text-align:right">
1,692
</td>
<td style="font-weight: bold; text-align:right">
496,693
</td>
<td style="font-weight: bold; text-align:right">
3,002,001
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/curacao-population/">
165,454
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
4
</td>
<td>
591
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
985
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
153
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/papua-new-guinea/">
Papua New Guinea
</a>
</td>
<td style="font-weight: bold; text-align:right">
44,752
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
662
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
43,982
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
108
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
<td style="font-weight: bold; text-align:right">
4,817
</td>
<td style="font-weight: bold; text-align:right">
71
</td>
<td style="font-weight: bold; text-align:right">
249,149
</td>
<td style="font-weight: bold; text-align:right">
26,816
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/papua-new-guinea-population/">
9,290,895
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
208
</td>
<td>
14,035
</td>
<td>
37
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
12
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
154
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/andorra/">
Andorra
</a>
</td>
<td style="font-weight: bold; text-align:right">
44,671
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
153
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
43,802
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
716
</td>
<td style="font-weight: bold; text-align:right">
14
</td>
<td style="font-weight: bold; text-align:right">
576,281
</td>
<td style="font-weight: bold; text-align:right">
1,974
</td>
<td style="font-weight: bold; text-align:right">
249,838
</td>
<td style="font-weight: bold; text-align:right">
3,223,051
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/andorra-population/">
77,516
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
507
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
9,237
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
155
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/burundi/">
Burundi
</a>
</td>
<td style="font-weight: bold; text-align:right">
43,060
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
38
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,415
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
345,742
</td>
<td style="font-weight: bold; text-align:right">
27,420
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/burundi-population/">
12,609,279
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
293
</td>
<td>
331,823
</td>
<td>
36
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,351
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
156
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/aruba/">
Aruba
</a>
</td>
<td style="font-weight: bold; text-align:right">
41,448
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
224
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
40,882
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
342
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
384,897
</td>
<td style="font-weight: bold; text-align:right">
2,080
</td>
<td style="font-weight: bold; text-align:right">
177,885
</td>
<td style="font-weight: bold; text-align:right">
1,651,886
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/aruba-population/">
107,686
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
3
</td>
<td>
481
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,176
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
157
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/mauritius/">
Mauritius
</a>
</td>
<td style="font-weight: bold; text-align:right">
38,737
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,008
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
36,856
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
873
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
30,357
</td>
<td style="font-weight: bold; text-align:right">
790
</td>
<td style="font-weight: bold; text-align:right">
358,675
</td>
<td style="font-weight: bold; text-align:right">
281,082
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/mauritius-population/">
1,276,049
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
33
</td>
<td>
1,266
</td>
<td>
4
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
684
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
158
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/mayotte/">
Mayotte
</a>
</td>
<td style="font-weight: bold; text-align:right">
37,958
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
187
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
2,964
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
34,807
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
132,641
</td>
<td style="font-weight: bold; text-align:right">
653
</td>
<td style="font-weight: bold; text-align:right">
176,919
</td>
<td style="font-weight: bold; text-align:right">
618,230
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/mayotte-population/">
286,170
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
8
</td>
<td>
1,530
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
121,630
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
159
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/togo/">
Togo
</a>
</td>
<td style="font-weight: bold; text-align:right">
37,671
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+35
</td>
<td style="font-weight: bold; text-align:right;">
275
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
37,137
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+8
</td>
<td style="text-align:right;font-weight:bold;">
259
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,344
</td>
<td style="font-weight: bold; text-align:right">
32
</td>
<td style="font-weight: bold; text-align:right">
759,517
</td>
<td style="font-weight: bold; text-align:right">
87,579
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/togo-population/">
8,672,391
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
230
</td>
<td>
31,536
</td>
<td>
11
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
30
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
160
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/guinea/">
Guinea
</a>
</td>
<td style="font-weight: bold; text-align:right">
37,358
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
443
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
36,419
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
496
</td>
<td style="font-weight: bold; text-align:right">
8
</td>
<td style="font-weight: bold; text-align:right">
2,696
</td>
<td style="font-weight: bold; text-align:right">
32
</td>
<td style="font-weight: bold; text-align:right">
660,107
</td>
<td style="font-weight: bold; text-align:right">
47,642
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/guinea-population/">
13,855,517
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
371
</td>
<td>
31,277
</td>
<td>
21
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
36
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
161
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/isle-of-man/">
Isle of Man
</a>
</td>
<td style="font-weight: bold; text-align:right">
37,239
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+241
</td>
<td style="font-weight: bold; text-align:right;">
110
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
26,794
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
10,335
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
433,284
</td>
<td style="font-weight: bold; text-align:right">
1,280
</td>
<td style="font-weight: bold; text-align:right">
150,753
</td>
<td style="font-weight: bold; text-align:right">
1,754,043
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/isle-of-man-population/">
85,946
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
781
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
2,804
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
120,250
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
162
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bahamas/">
Bahamas
</a>
</td>
<td style="font-weight: bold; text-align:right">
36,299
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
822
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
34,772
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
705
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
90,551
</td>
<td style="font-weight: bold; text-align:right">
2,051
</td>
<td style="font-weight: bold; text-align:right">
241,422
</td>
<td style="font-weight: bold; text-align:right">
602,248
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bahamas-population/">
400,868
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
11
</td>
<td>
488
</td>
<td>
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,759
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
163
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/tanzania/">
Tanzania
</a>
</td>
<td style="font-weight: bold; text-align:right">
36,174
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
841
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
<td style="font-weight: bold; text-align:right">
572
</td>
<td style="font-weight: bold; text-align:right">
13
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/tanzania-population/">
63,186,161
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
1,747
</td>
<td>
75,132
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
556
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
164
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/faeroe-islands/">
Faeroe Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
34,658
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
28
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
5
</td>
<td style="font-weight: bold; text-align:right">
703,859
</td>
<td style="font-weight: bold; text-align:right">
569
</td>
<td style="font-weight: bold; text-align:right">
778,000
</td>
<td style="font-weight: bold; text-align:right">
15,800,162
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/faeroe-islands-population/">
49,240
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
1
</td>
<td>
1,759
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
547,055
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
165
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/lesotho/">
Lesotho
</a>
</td>
<td style="font-weight: bold; text-align:right">
34,040
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
702
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
24,155
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
9,183
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
15,638
</td>
<td style="font-weight: bold; text-align:right">
323
</td>
<td style="font-weight: bold; text-align:right">
431,221
</td>
<td style="font-weight: bold; text-align:right">
198,107
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/lesotho-population/">
2,176,704
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
64
</td>
<td>
3,101
</td>
<td>
5
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,219
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
166
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/haiti/">
Haiti
</a>
</td>
<td style="font-weight: bold; text-align:right">
31,980
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
837
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
29,878
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,265
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,737
</td>
<td style="font-weight: bold; text-align:right">
72
</td>
<td style="font-weight: bold; text-align:right">
132,422
</td>
<td style="font-weight: bold; text-align:right">
11,333
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/haiti-population/">
11,684,564
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
365
</td>
<td>
13,960
</td>
<td>
88
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
108
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
167
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/mali/">
Mali
</a>
</td>
<td style="font-weight: bold; text-align:right">
31,195
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+3
</td>
<td style="font-weight: bold; text-align:right;">
737
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
30,363
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+8
</td>
<td style="text-align:right;font-weight:bold;">
95
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,455
</td>
<td style="font-weight: bold; text-align:right">
34
</td>
<td style="font-weight: bold; text-align:right">
706,610
</td>
<td style="font-weight: bold; text-align:right">
32,966
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/mali-population/">
21,434,224
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
687
</td>
<td>
29,083
</td>
<td>
30
</td>
<td style="font-weight: bold; text-align:right">
0.1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
168
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cayman-islands/">
Cayman Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
27,966
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
29
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
8,553
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
19,384
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
415,616
</td>
<td style="font-weight: bold; text-align:right">
431
</td>
<td style="font-weight: bold; text-align:right">
222,773
</td>
<td style="font-weight: bold; text-align:right">
3,310,739
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cayman-islands-population/">
67,288
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
2
</td>
<td>
2,320
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
288,075
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
169
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saint-lucia/">
Saint Lucia
</a>
</td>
<td style="font-weight: bold; text-align:right">
27,408
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+71
</td>
<td style="font-weight: bold; text-align:right;">
385
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
26,840
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+65
</td>
<td style="text-align:right;font-weight:bold;">
183
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
147,888
</td>
<td style="font-weight: bold; text-align:right">
2,077
</td>
<td style="font-weight: bold; text-align:right">
209,716
</td>
<td style="font-weight: bold; text-align:right">
1,131,582
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saint-lucia-population/">
185,330
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
7
</td>
<td>
481
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
383
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
987
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
170
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/benin/">
Benin
</a>
</td>
<td style="font-weight: bold; text-align:right">
27,216
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
163
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
25,506
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,547
</td>
<td style="font-weight: bold; text-align:right">
5
</td>
<td style="font-weight: bold; text-align:right">
2,132
</td>
<td style="font-weight: bold; text-align:right">
13
</td>
<td style="font-weight: bold; text-align:right">
604,310
</td>
<td style="font-weight: bold; text-align:right">
47,332
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/benin-population/">
12,767,443
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
469
</td>
<td>
78,328
</td>
<td>
21
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
121
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
171
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/somalia/">
Somalia
</a>
</td>
<td style="font-weight: bold; text-align:right">
26,900
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1,350
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
13,182
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
12,368
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,602
</td>
<td style="font-weight: bold; text-align:right">
80
</td>
<td style="font-weight: bold; text-align:right">
400,466
</td>
<td style="font-weight: bold; text-align:right">
23,847
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/somalia-population/">
16,792,828
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
624
</td>
<td>
12,439
</td>
<td>
42
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
737
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
172
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/congo/">
Congo
</a>
</td>
<td style="font-weight: bold; text-align:right">
24,421
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
386
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
20,178
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
3,857
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,215
</td>
<td style="font-weight: bold; text-align:right">
67
</td>
<td style="font-weight: bold; text-align:right">
347,815
</td>
<td style="font-weight: bold; text-align:right">
60,034
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/congo-population/">
5,793,654
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
237
</td>
<td>
15,009
</td>
<td>
17
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
666
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
173
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/timor-leste/">
Timor-Leste
</a>
</td>
<td style="font-weight: bold; text-align:right">
22,974
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+2
</td>
<td style="font-weight: bold; text-align:right;">
133
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
22,825
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1
</td>
<td style="text-align:right;font-weight:bold;">
16
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
16,777
</td>
<td style="font-weight: bold; text-align:right">
97
</td>
<td style="font-weight: bold; text-align:right">
271,069
</td>
<td style="font-weight: bold; text-align:right">
197,948
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/timor-leste-population/">
1,369,395
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
60
</td>
<td>
10,296
</td>
<td>
5
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
12
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
174
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/solomon-islands/">
Solomon Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
21,544
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
153
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
16,357
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
5,034
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
29,878
</td>
<td style="font-weight: bold; text-align:right">
212
</td>
<td style="font-weight: bold; text-align:right">
5,117
</td>
<td style="font-weight: bold; text-align:right">
7,097
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/solomon-islands-population/">
721,059
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
33
</td>
<td>
4,713
</td>
<td>
141
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6,981
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
175
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/burkina-faso/">
Burkina Faso
</a>
</td>
<td style="font-weight: bold; text-align:right">
20,853
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
382
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
20,439
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
32
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
945
</td>
<td style="font-weight: bold; text-align:right">
17
</td>
<td style="font-weight: bold; text-align:right">
248,995
</td>
<td style="font-weight: bold; text-align:right">
11,284
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/burkina-faso-population/">
22,066,182
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
1,058
</td>
<td>
57,765
</td>
<td>
89
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
176
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/gibraltar/">
Gibraltar
</a>
</td>
<td style="font-weight: bold; text-align:right">
19,796
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
105
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
16,579
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
3,112
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
587,924
</td>
<td style="font-weight: bold; text-align:right">
3,118
</td>
<td style="font-weight: bold; text-align:right">
534,283
</td>
<td style="font-weight: bold; text-align:right">
15,867,750
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/gibraltar-population/">
33,671
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
321
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
92,424
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
177
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/san-marino/">
San Marino
</a>
</td>
<td style="font-weight: bold; text-align:right">
18,977
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+91
</td>
<td style="font-weight: bold; text-align:right;">
116
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
18,267
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+81
</td>
<td style="text-align:right;font-weight:bold;">
594
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
556,902
</td>
<td style="font-weight: bold; text-align:right">
3,404
</td>
<td style="font-weight: bold; text-align:right">
152,231
</td>
<td style="font-weight: bold; text-align:right">
4,467,396
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/san-marino-population/">
34,076
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
294
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
2,671
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
17,432
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
178
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/grenada/">
Grenada
</a>
</td>
<td style="font-weight: bold; text-align:right">
18,592
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+32
</td>
<td style="font-weight: bold; text-align:right;">
233
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
18,178
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+54
</td>
<td style="text-align:right;font-weight:bold;">
181
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
163,689
</td>
<td style="font-weight: bold; text-align:right">
2,051
</td>
<td style="font-weight: bold; text-align:right">
172,268
</td>
<td style="font-weight: bold; text-align:right">
1,516,697
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/grenada-population/">
113,581
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
6
</td>
<td>
487
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
282
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,594
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
179
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/nicaragua/">
Nicaragua
</a>
</td>
<td style="font-weight: bold; text-align:right">
18,491
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
225
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
4,225
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
14,041
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,725
</td>
<td style="font-weight: bold; text-align:right">
33
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/nicaragua-population/">
6,784,471
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
367
</td>
<td>
30,153
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,070
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
180
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/liechtenstein/">
Liechtenstein
</a>
</td>
<td style="font-weight: bold; text-align:right">
18,257
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+30
</td>
<td style="font-weight: bold; text-align:right;">
85
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
17,931
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+31
</td>
<td style="text-align:right;font-weight:bold;">
241
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
476,063
</td>
<td style="font-weight: bold; text-align:right">
2,216
</td>
<td style="font-weight: bold; text-align:right">
102,174
</td>
<td style="font-weight: bold; text-align:right">
2,664,250
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/liechtenstein-population/">
38,350
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
2
</td>
<td>
451
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
782
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6,284
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
181
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/tajikistan/">
Tajikistan
</a>
</td>
<td style="font-weight: bold; text-align:right">
17,786
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
125
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
17,264
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
397
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,784
</td>
<td style="font-weight: bold; text-align:right">
13
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/tajikistan-population/">
9,972,283
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
561
</td>
<td>
79,778
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
40
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
182
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/south-sudan/">
South Sudan
</a>
</td>
<td style="font-weight: bold; text-align:right">
17,733
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
138
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
15,630
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,965
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
1,547
</td>
<td style="font-weight: bold; text-align:right">
12
</td>
<td style="font-weight: bold; text-align:right">
410,280
</td>
<td style="font-weight: bold; text-align:right">
35,801
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/south-sudan-population/">
11,460,002
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
646
</td>
<td>
83,043
</td>
<td>
28
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
171
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
183
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/bermuda/">
Bermuda
</a>
</td>
<td style="font-weight: bold; text-align:right">
16,722
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+321
</td>
<td style="font-weight: bold; text-align:right;">
141
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+1
</td>
<td style="font-weight: bold; text-align:right">
16,201
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+198
</td>
<td style="text-align:right;font-weight:bold;">
380
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
270,534
</td>
<td style="font-weight: bold; text-align:right">
2,281
</td>
<td style="font-weight: bold; text-align:right">
958,749
</td>
<td style="font-weight: bold; text-align:right">
15,510,977
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/bermuda-population/">
61,811
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
4
</td>
<td>
438
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
5,193
</td>
<td style="font-weight: bold; text-align:right">
16
</td>
<td style="font-weight: bold; text-align:right">
6,148
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
184
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/equatorial-guinea/">
Equatorial Guinea
</a>
</td>
<td style="font-weight: bold; text-align:right">
16,504
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
183
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
15,862
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
459
</td>
<td style="font-weight: bold; text-align:right">
5
</td>
<td style="font-weight: bold; text-align:right">
11,028
</td>
<td style="font-weight: bold; text-align:right">
122
</td>
<td style="font-weight: bold; text-align:right">
346,685
</td>
<td style="font-weight: bold; text-align:right">
231,664
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/equatorial-guinea-population/">
1,496,500
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
91
</td>
<td>
8,178
</td>
<td>
4
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
307
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
185
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/djibouti/">
Djibouti
</a>
</td>
<td style="font-weight: bold; text-align:right">
15,690
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
189
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
15,427
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
74
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
15,425
</td>
<td style="font-weight: bold; text-align:right">
186
</td>
<td style="font-weight: bold; text-align:right">
305,941
</td>
<td style="font-weight: bold; text-align:right">
300,782
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/djibouti-population/">
1,017,152
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
65
</td>
<td>
5,382
</td>
<td>
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
73
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
186
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/samoa/">
Samoa
</a>
</td>
<td style="font-weight: bold; text-align:right">
15,134
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
29
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,605
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
13,500
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
75,260
</td>
<td style="font-weight: bold; text-align:right">
144
</td>
<td style="font-weight: bold; text-align:right">
168,260
</td>
<td style="font-weight: bold; text-align:right">
836,744
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/samoa-population/">
201,089
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
13
</td>
<td>
6,934
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
67,134
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
187
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/dominica/">
Dominica
</a>
</td>
<td style="font-weight: bold; text-align:right">
14,852
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
68
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
14,554
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
230
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
205,283
</td>
<td style="font-weight: bold; text-align:right">
940
</td>
<td style="font-weight: bold; text-align:right">
210,195
</td>
<td style="font-weight: bold; text-align:right">
2,905,292
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/dominica-population/">
72,349
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
5
</td>
<td>
1,064
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,179
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
188
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/central-african-republic/">
CAR
</a>
</td>
<td style="font-weight: bold; text-align:right">
14,712
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
113
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
6,859
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
7,740
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
2,942
</td>
<td style="font-weight: bold; text-align:right">
23
</td>
<td style="font-weight: bold; text-align:right">
81,294
</td>
<td style="font-weight: bold; text-align:right">
16,258
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/central-african-republic-population/">
5,000,148
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
340
</td>
<td>
44,249
</td>
<td>
62
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,548
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
189
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/monaco/">
Monaco
</a>
</td>
<td style="font-weight: bold; text-align:right">
13,645
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+69
</td>
<td style="font-weight: bold; text-align:right;">
57
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
13,308
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+94
</td>
<td style="text-align:right;font-weight:bold;">
280
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
342,788
</td>
<td style="font-weight: bold; text-align:right">
1,432
</td>
<td style="font-weight: bold; text-align:right">
77,770
</td>
<td style="font-weight: bold; text-align:right">
1,953,726
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/monaco-population/">
39,806
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
3
</td>
<td>
698
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
1,733
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
7,034
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
190
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/tonga/">
Tonga
</a>
</td>
<td style="font-weight: bold; text-align:right">
12,382
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
12
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
12,223
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
147
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
114,515
</td>
<td style="font-weight: bold; text-align:right">
111
</td>
<td style="font-weight: bold; text-align:right">
535,009
</td>
<td style="font-weight: bold; text-align:right">
4,948,014
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/tonga-population/">
108,126
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
9
</td>
<td>
9,011
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,360
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
191
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/gambia/">
Gambia
</a>
</td>
<td style="font-weight: bold; text-align:right">
12,009
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
365
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
11,591
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
53
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,701
</td>
<td style="font-weight: bold; text-align:right">
143
</td>
<td style="font-weight: bold; text-align:right">
155,686
</td>
<td style="font-weight: bold; text-align:right">
60,948
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/gambia-population/">
2,554,413
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
213
</td>
<td>
6,998
</td>
<td>
16
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
21
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
192
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/greenland/">
Greenland
</a>
</td>
<td style="font-weight: bold; text-align:right">
11,971
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
21
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
2,761
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
9,189
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
210,128
</td>
<td style="font-weight: bold; text-align:right">
369
</td>
<td style="font-weight: bold; text-align:right">
164,926
</td>
<td style="font-weight: bold; text-align:right">
2,894,962
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/greenland-population/">
56,970
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
5
</td>
<td>
2,713
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
161,295
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
193
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/yemen/">
Yemen
</a>
</td>
<td style="font-weight: bold; text-align:right">
11,832
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
2,149
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
9,108
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
575
</td>
<td style="font-weight: bold; text-align:right">
23
</td>
<td style="font-weight: bold; text-align:right">
380
</td>
<td style="font-weight: bold; text-align:right">
69
</td>
<td style="font-weight: bold; text-align:right">
265,253
</td>
<td style="font-weight: bold; text-align:right">
8,513
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/yemen-population/">
31,158,750
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
2,633
</td>
<td>
14,499
</td>
<td>
117
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
18
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
194
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/vanuatu/">
Vanuatu
</a>
</td>
<td style="font-weight: bold; text-align:right">
11,690
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
14
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
11,502
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
174
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
36,337
</td>
<td style="font-weight: bold; text-align:right">
44
</td>
<td style="font-weight: bold; text-align:right">
24,976
</td>
<td style="font-weight: bold; text-align:right">
77,636
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/vanuatu-population/">
321,707
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
28
</td>
<td>
22,979
</td>
<td>
13
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
541
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
195
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saint-martin/">
Saint Martin
</a>
</td>
<td style="font-weight: bold; text-align:right">
11,224
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
63
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,399
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
9,762
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
<td style="font-weight: bold; text-align:right">
280,572
</td>
<td style="font-weight: bold; text-align:right">
1,575
</td>
<td style="font-weight: bold; text-align:right">
112,382
</td>
<td style="font-weight: bold; text-align:right">
2,809,269
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saint-martin-population/">
40,004
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
4
</td>
<td>
635
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
244,026
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
196
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/sint-maarten/">
Sint Maarten
</a>
</td>
<td style="font-weight: bold; text-align:right">
10,656
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
87
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
10,524
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
45
</td>
<td style="font-weight: bold; text-align:right">
10
</td>
<td style="font-weight: bold; text-align:right">
242,933
</td>
<td style="font-weight: bold; text-align:right">
1,983
</td>
<td style="font-weight: bold; text-align:right">
62,056
</td>
<td style="font-weight: bold; text-align:right">
1,414,736
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/sint-maarten-population/">
43,864
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
4
</td>
<td>
504
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,026
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
197
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/caribbean-netherlands/">
Caribbean Netherlands
</a>
</td>
<td style="font-weight: bold; text-align:right">
10,523
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
35
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
10,376
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
112
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
393,854
</td>
<td style="font-weight: bold; text-align:right">
1,310
</td>
<td style="font-weight: bold; text-align:right">
30,126
</td>
<td style="font-weight: bold; text-align:right">
1,127,554
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/caribbean-netherlands-population/">
26,718
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
3
</td>
<td>
763
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,192
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
198
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/eritrea/">
Eritrea
</a>
</td>
<td style="font-weight: bold; text-align:right">
9,844
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+17
</td>
<td style="font-weight: bold; text-align:right;">
103
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
9,701
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1
</td>
<td style="text-align:right;font-weight:bold;">
40
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,700
</td>
<td style="font-weight: bold; text-align:right">
28
</td>
<td style="font-weight: bold; text-align:right">
23,693
</td>
<td style="font-weight: bold; text-align:right">
6,498
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/eritrea-population/">
3,646,011
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
370
</td>
<td>
35,398
</td>
<td>
154
</td>
<td style="font-weight: bold; text-align:right">
5
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
11
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
199
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/niger/">
Niger
</a>
</td>
<td style="font-weight: bold; text-align:right">
9,096
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
311
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
8,628
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
157
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
350
</td>
<td style="font-weight: bold; text-align:right">
12
</td>
<td style="font-weight: bold; text-align:right">
254,538
</td>
<td style="font-weight: bold; text-align:right">
9,796
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/niger-population/">
25,984,404
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
2,857
</td>
<td>
83,551
</td>
<td>
102
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
200
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/antigua-and-barbuda/">
Antigua and Barbuda
</a>
</td>
<td style="font-weight: bold; text-align:right">
8,686
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
143
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
8,516
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
27
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
87,232
</td>
<td style="font-weight: bold; text-align:right">
1,436
</td>
<td style="font-weight: bold; text-align:right">
18,901
</td>
<td style="font-weight: bold; text-align:right">
189,819
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/antigua-and-barbuda-population/">
99,574
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
11
</td>
<td>
696
</td>
<td>
5
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
271
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
201
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/guinea-bissau/">
Guinea-Bissau
</a>
</td>
<td style="font-weight: bold; text-align:right">
8,400
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
171
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
8,151
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
78
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
4,073
</td>
<td style="font-weight: bold; text-align:right">
83
</td>
<td style="font-weight: bold; text-align:right">
145,231
</td>
<td style="font-weight: bold; text-align:right">
70,419
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/guinea-bissau-population/">
2,062,372
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
246
</td>
<td>
12,061
</td>
<td>
14
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
38
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
202
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/comoros/">
Comoros
</a>
</td>
<td style="font-weight: bold; text-align:right">
8,209
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
160
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
7,933
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
116
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
9,049
</td>
<td style="font-weight: bold; text-align:right">
176
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/comoros-population/">
907,185
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
111
</td>
<td>
5,670
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
128
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
203
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/sierra-leone/">
Sierra Leone
</a>
</td>
<td style="font-weight: bold; text-align:right">
7,718
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
125
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
929
</td>
<td style="font-weight: bold; text-align:right">
15
</td>
<td style="font-weight: bold; text-align:right">
259,958
</td>
<td style="font-weight: bold; text-align:right">
31,297
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/sierra-leone-population/">
8,306,116
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
1,076
</td>
<td>
66,449
</td>
<td>
32
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
334
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
204
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/liberia/">
Liberia
</a>
</td>
<td style="font-weight: bold; text-align:right">
7,502
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
294
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
5,747
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
1,461
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
1,416
</td>
<td style="font-weight: bold; text-align:right">
55
</td>
<td style="font-weight: bold; text-align:right">
139,824
</td>
<td style="font-weight: bold; text-align:right">
26,388
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/liberia-population/">
5,298,865
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
706
</td>
<td>
18,023
</td>
<td>
38
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
276
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
205
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/chad/">
Chad
</a>
</td>
<td style="font-weight: bold; text-align:right">
7,427
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
193
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
4,874
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
2,360
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
427
</td>
<td style="font-weight: bold; text-align:right">
11
</td>
<td style="font-weight: bold; text-align:right">
191,341
</td>
<td style="font-weight: bold; text-align:right">
11,008
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/chad-population/">
17,382,135
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
2,340
</td>
<td>
90,063
</td>
<td>
91
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
136
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
206
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/british-virgin-islands/">
British Virgin Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
7,131
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
63
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
232,743
</td>
<td style="font-weight: bold; text-align:right">
2,056
</td>
<td style="font-weight: bold; text-align:right">
105,790
</td>
<td style="font-weight: bold; text-align:right">
3,452,789
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/british-virgin-islands-population/">
30,639
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
4
</td>
<td>
486
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
783
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
207
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saint-vincent-and-the-grenadines/">
St. Vincent Grenadines
</a>
</td>
<td style="font-weight: bold; text-align:right">
7,035
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+4
</td>
<td style="font-weight: bold; text-align:right;">
114
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
6,641
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
280
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
63,007
</td>
<td style="font-weight: bold; text-align:right">
1,021
</td>
<td style="font-weight: bold; text-align:right">
100,334
</td>
<td style="font-weight: bold; text-align:right">
898,607
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saint-vincent-and-the-grenadines-population/">
111,655
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
16
</td>
<td>
979
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
36
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,508
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
208
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/nauru/">
Nauru
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,930
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+10
</td>
<td style="font-weight: bold; text-align:right;">
1
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
3,171
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+381
</td>
<td style="text-align:right;font-weight:bold;">
3,758
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
632,184
</td>
<td style="font-weight: bold; text-align:right">
91
</td>
<td style="font-weight: bold; text-align:right">
14,517
</td>
<td style="font-weight: bold; text-align:right">
1,324,302
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/nauru-population/">
10,962
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
2
</td>
<td>
10,962
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
912
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
342,821
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
209
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saint-kitts-and-nevis/">
Saint Kitts and Nevis
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,332
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
45
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
6,137
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
150
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
117,342
</td>
<td style="font-weight: bold; text-align:right">
834
</td>
<td style="font-weight: bold; text-align:right">
108,021
</td>
<td style="font-weight: bold; text-align:right">
2,001,798
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saint-kitts-and-nevis-population/">
53,962
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
9
</td>
<td>
1,199
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
2,780
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
210
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/turks-and-caicos-islands/">
Turks and Caicos
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,234
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
36
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
6,141
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
57
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
156,712
</td>
<td style="font-weight: bold; text-align:right">
905
</td>
<td style="font-weight: bold; text-align:right">
548,537
</td>
<td style="font-weight: bold; text-align:right">
13,789,266
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/turks-and-caicos-islands-population/">
39,780
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
6
</td>
<td>
1,105
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,433
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
211
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/sao-tome-and-principe/">
Sao Tome and Principe
</a>
</td>
<td style="font-weight: bold; text-align:right">
6,079
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
74
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
5,990
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
15
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
26,731
</td>
<td style="font-weight: bold; text-align:right">
325
</td>
<td style="font-weight: bold; text-align:right">
29,036
</td>
<td style="font-weight: bold; text-align:right">
127,678
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/sao-tome-and-principe-population/">
227,416
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
37
</td>
<td>
3,073
</td>
<td>
8
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
66
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
212
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/cook-islands/">
Cook Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
5,814
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
5,794
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
19
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
330,397
</td>
<td style="font-weight: bold; text-align:right">
57
</td>
<td style="font-weight: bold; text-align:right">
19,690
</td>
<td style="font-weight: bold; text-align:right">
1,118,941
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/cook-islands-population/">
17,597
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
3
</td>
<td>
17,597
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,080
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
213
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/palau/">
Palau
</a>
</td>
<td style="font-weight: bold; text-align:right">
5,308
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
6
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
5,047
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
255
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
290,547
</td>
<td style="font-weight: bold; text-align:right">
328
</td>
<td style="font-weight: bold; text-align:right">
62,460
</td>
<td style="font-weight: bold; text-align:right">
3,418,906
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/palau-population/">
18,269
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
3
</td>
<td>
3,045
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
13,958
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
214
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saint-barthelemy/">
St. Barth
</a>
</td>
<td style="font-weight: bold; text-align:right">
4,845
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
6
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
487,523
</td>
<td style="font-weight: bold; text-align:right">
604
</td>
<td style="font-weight: bold; text-align:right">
78,646
</td>
<td style="font-weight: bold; text-align:right">
7,913,665
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saint-barthelemy-population/">
9,938
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
2
</td>
<td>
1,656
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
440,431
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
215
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/anguilla/">
Anguilla
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,496
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
9
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
3,464
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
23
</td>
<td style="font-weight: bold; text-align:right">
4
</td>
<td style="font-weight: bold; text-align:right">
228,871
</td>
<td style="font-weight: bold; text-align:right">
589
</td>
<td style="font-weight: bold; text-align:right">
51,382
</td>
<td style="font-weight: bold; text-align:right">
3,363,797
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/anguilla-population/">
15,275
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
4
</td>
<td>
1,697
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,506
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
216
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/kiribati/">
Kiribati
</a>
</td>
<td style="font-weight: bold; text-align:right">
3,236
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
13
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
2,665
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
558
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right">
26,273
</td>
<td style="font-weight: bold; text-align:right">
106
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/kiribati-population/">
123,167
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
38
</td>
<td>
9,474
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
4,530
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
217
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saint-pierre-and-miquelon/">
Saint Pierre Miquelon
</a>
</td>
<td style="font-weight: bold; text-align:right">
2,970
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
2,449
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
520
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
517,692
</td>
<td style="font-weight: bold; text-align:right">
174
</td>
<td style="font-weight: bold; text-align:right">
24,521
</td>
<td style="font-weight: bold; text-align:right">
4,274,185
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saint-pierre-and-miquelon-population/">
5,737
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
2
</td>
<td>
5,737
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
90,640
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
218
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/falkland-islands-malvinas/">
Falkland Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,831
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
N/A
</td>
<td style="font-weight: bold; text-align:right;">
N/A
</td>
<td style="text-align:right;font-weight:bold;">
N/A
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
496,744
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
8,632
</td>
<td style="font-weight: bold; text-align:right">
2,341,834
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/falkland-islands-malvinas-population/">
3,686
</a>
</td>
<td data-continent="South America" style="display:none">
South America
</td>
<td>
2
</td>
<td>
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
463,104
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
219
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/montserrat/">
Montserrat
</a>
</td>
<td style="font-weight: bold; text-align:right">
1,025
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+2
</td>
<td style="font-weight: bold; text-align:right;">
8
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
1,013
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+1
</td>
<td style="text-align:right;font-weight:bold;">
4
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
205,082
</td>
<td style="font-weight: bold; text-align:right">
1,601
</td>
<td style="font-weight: bold; text-align:right">
14,243
</td>
<td style="font-weight: bold; text-align:right">
2,849,740
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/montserrat-population/">
4,998
</a>
</td>
<td data-continent="North America" style="display:none">
North America
</td>
<td>
5
</td>
<td>
625
</td>
<td>
0
</td>
<td style="font-weight: bold; text-align:right">
400
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
800
</td>
</tr>
<tr style="background-color:#F0F0F0">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
220
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<span style="color:#00B5F0; font-style:italic; ">
Diamond Princess
</span>
</td>
<td style="font-weight: bold; text-align:right">
712
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
13
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
699
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td data-continent="" style="display:none">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
221
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/china-macao-sar/">
Macao
</a>
</td>
<td style="font-weight: bold; text-align:right">
679
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+16
</td>
<td style="font-weight: bold; text-align:right;">
4
</td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">
+1
</td>
<td style="font-weight: bold; text-align:right">
163
</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">
+12
</td>
<td style="text-align:right;font-weight:bold;">
512
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,018
</td>
<td style="font-weight: bold; text-align:right">
6
</td>
<td style="font-weight: bold; text-align:right">
7,574
</td>
<td style="font-weight: bold; text-align:right">
11,350
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/china-macao-sar-population/">
667,295
</a>
</td>
<td data-continent="Asia" style="display:none">
Asia
</td>
<td>
983
</td>
<td>
166,824
</td>
<td>
88
</td>
<td style="font-weight: bold; text-align:right">
24
</td>
<td style="font-weight: bold; text-align:right">
1
</td>
<td style="font-weight: bold; text-align:right">
767
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
222
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/wallis-and-futuna-islands/">
Wallis and Futuna
</a>
</td>
<td style="font-weight: bold; text-align:right">
456
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
7
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
438
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
11
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
42,066
</td>
<td style="font-weight: bold; text-align:right">
646
</td>
<td style="font-weight: bold; text-align:right">
20,508
</td>
<td style="font-weight: bold; text-align:right">
1,891,882
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/wallis-and-futuna-islands-population/">
10,840
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
24
</td>
<td>
1,549
</td>
<td>
1
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
1,015
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
223
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/marshall-islands/">
Marshall Islands
</a>
</td>
<td style="font-weight: bold; text-align:right">
47
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
18
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
29
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
783
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/marshall-islands-population/">
60,000
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
1,277
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
483
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
224
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/micronesia/">
Micronesia
</a>
</td>
<td style="font-weight: bold; text-align:right">
38
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
33
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
5
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
323
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
21,923
</td>
<td style="font-weight: bold; text-align:right">
186,628
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/micronesia-population/">
117,469
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
3,091
</td>
<td>
</td>
<td>
5
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
43
</td>
</tr>
<tr style="background-color:#EAF7D5">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
225
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/holy-see/">
Vatican City
</a>
</td>
<td style="font-weight: bold; text-align:right">
29
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
29
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
36,025
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/holy-see-population/">
805
</a>
</td>
<td data-continent="Europe" style="display:none">
Europe
</td>
<td>
28
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
226
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/niue/">
Niue
</a>
</td>
<td style="font-weight: bold; text-align:right">
26
</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">
+1
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
20
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
6
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
15,777
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/niue-population/">
1,648
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
63
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
607
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
3,641
</td>
</tr>
<tr style="background-color:#F0F0F0">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
227
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/western-sahara/">
Western Sahara
</a>
</td>
<td style="font-weight: bold; text-align:right">
10
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
1
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
9
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
16
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/western-sahara-population/">
627,136
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
62,714
</td>
<td>
627,136
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
</tr>
<tr style="background-color:#F0F0F0">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
228
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<span style="color:#00B5F0; font-style:italic; ">
MS Zaandam
</span>
</td>
<td style="font-weight: bold; text-align:right">
9
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
2
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
7
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td data-continent="" style="display:none">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
229
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/tuvalu/">
Tuvalu
</a>
</td>
<td style="font-weight: bold; text-align:right">
3
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
3
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
248
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/tuvalu-population/">
12,087
</a>
</td>
<td data-continent="Australia/Oceania" style="display:none">
Australia/Oceania
</td>
<td>
4,029
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
248
</td>
</tr>
<tr style="background-color:#EAF7D5">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">
230
</td>
<td style="font-weight: bold; font-size:15px; text-align:left;">
<a class="mt_a" href="country/saint-helena/">
Saint Helena
</a>
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="font-weight: bold;
text-align:right;">
</td>
<td style="font-weight: bold; text-align:right">
2
</td>
<td style="font-weight: bold; text-align:right;">
</td>
<td style="text-align:right;font-weight:bold;">
0
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
327
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
<a href="/world-population/saint-helena-population/">
6,114
</a>
</td>
<td data-continent="Africa" style="display:none">
Africa
</td>
<td>
3,057
</td>
<td>
</td>
<td>
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
<td style="font-weight: bold; text-align:right">
</td>
</tr>
</tbody>
<tbody class="body_continents">
<tr class="row_continent total_row" data-continent="Asia" style="display: none">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
163,494,006
</td>
<td style="background-color:#FFEEAA; color:#000;">
+217,000
</td>
<td>
1,442,283
</td>
<td style="background-color:red; color:#fff">
+185
</td>
<td>
157,652,286
</td>
<td style="background-color:#c8e6c9; color:#000">
+145,624
</td>
<td>
4,399,437
</td>
<td>
10,911
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Asia" style="display:none;">
Asia
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="row_continent total_row" data-continent="North America" style="display: none">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
107,614,916
</td>
<td style="background-color:#FFEEAA; color:#000;">
+170,938
</td>
<td>
1,494,271
</td>
<td style="background-color:red; color:#fff">
+600
</td>
<td>
100,597,412
</td>
<td style="background-color:#c8e6c9; color:#000">
+144,907
</td>
<td>
5,523,233
</td>
<td>
9,504
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="North America" style="display:none;">
North America
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="row_continent total_row" data-continent="South America" style="display: none">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
60,798,308
</td>
<td style="background-color:#FFEEAA; color:#000;">
+99,460
</td>
<td>
1,309,452
</td>
<td style="background-color:red; color:#fff">
+422
</td>
<td>
57,830,468
</td>
<td style="background-color:#c8e6c9; color:#000">
+90,677
</td>
<td>
1,658,388
</td>
<td>
10,464
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="South America" style="display:none;">
South America
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="row_continent total_row" data-continent="Europe" style="display: none">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
209,626,632
</td>
<td style="background-color:#FFEEAA; color:#000;">
+473,428
</td>
<td>
1,863,298
</td>
<td style="background-color:red; color:#fff">
+499
</td>
<td>
198,663,611
</td>
<td style="background-color:#c8e6c9; color:#000">
+276,665
</td>
<td>
9,099,723
</td>
<td>
6,678
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Europe" style="display:none;">
Europe
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="row_continent total_row" data-continent="Australia/Oceania" style="display: none">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
10,402,518
</td>
<td style="background-color:#FFEEAA; color:#000;">
+56,223
</td>
<td>
14,841
</td>
<td style="background-color:red; color:#fff">
+81
</td>
<td>
9,933,927
</td>
<td style="background-color:#c8e6c9; color:#000">
+52,636
</td>
<td>
453,750
</td>
<td>
169
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Australia/Oceania" style="display:none;">
Australia/Oceania
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="row_continent total_row" data-continent="Africa" style="display: none">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
12,425,326
</td>
<td style="background-color:#FFEEAA; color:#000;">
+3,495
</td>
<td>
256,360
</td>
<td style="background-color:red; color:#fff">
+25
</td>
<td>
11,573,207
</td>
<td style="background-color:#c8e6c9; color:#000">
+3,840
</td>
<td>
595,759
</td>
<td>
1,006
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="Africa" style="display:none;">
Africa
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr class="row_continent total_row" data-continent="" style="display: none">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
721
</td>
<td style="">
</td>
<td>
15
</td>
<td style="">
</td>
<td>
706
</td>
<td style="">
</td>
<td>
0
</td>
<td>
0
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="" style="display:none;">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
</tbody>
<tbody class="total_row_body body_world">
<tr class="total_row">
<td>
</td>
<td>
<strong>
Total:
</strong>
</td>
<td>
564,362,427
</td>
<td style="background-color:#FFEEAA; color:#000;">
+1,020,544
</td>
<td>
6,380,520
</td>
<td style="background-color:red; color:#fff">
+1,812
</td>
<td>
536,251,617
</td>
<td style="background-color:#c8e6c9; color:#000">
+714,349
</td>
<td>
21,730,290
</td>
<td>
38,732
</td>
<td>
72,402.4
</td>
<td>
818.6
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td data-continent="all" style="display:none">
All
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div style="font-size:13px; margin-top:10px; padding-bottom:10px">
<div style="background-color:#EAF7D5; padding:5px; float:left">
Highlighted in green
</div>
<div style="padding:5px; float:left">
= all cases have recovered from the infection
</div>
</div>
<div style="clear:both; font-size:13px; margin-top:25px; padding-bottom:45px">
<div style="background-color:#F0F0F0; padding:5px; float:left">
Highlighted in grey
</div>
<div style="padding:5px; float:left">
= all cases have had an outcome (there are no active cases)
</div>
</div>
<div style="clear:both; font-size:13px; margin-top:25px; padding-bottom:45px; line-height: 13px !important;">
</div>
<p align="center">
[
<a href="#page-top">
back to top ↑
</a>
]
</p>
</p>
</div>
</div>
<div style="margin-top:40px; margin-bottom:40px; text-align:center">
<script async="" crossorigin="anonymous" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3701697624350410">
</script>
<ins class="adsbygoogle" data-ad-client="ca-pub-3701697624350410" data-ad-format="auto" data-ad-slot="6592067501" data-full-width-responsive="true" style="display:block">
</ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div class="row">
<div class="col-md-8">
<div id="innercontent">
<style type="text/css">
.style2 {
color: #222222
}
.style4 {
font-weight: bold
}
.red {
color: red
}
.underline a {
text-decoration: underline;
}
/* .news_body ul li { margin-bottom: 40px !important; }*/
.news_post {
margin-bottom: 40px;
}
.btn:focus,
.btn:active {
outline: none !important;
/*box-shadow: none !important;*/
}
.load-more__btn {
color: #000 !important;
}
.news_date {
font-weight: bold;
text-align: left;
/* color: grey;*/
margin-bottom: 50px;
}
.news_title {
color: #222;
font-size: 18px;
margin-bottom: 16px;
}
.news_type {
float: left;
margin-right: 8px;
}
.news_source {
/* float: left;*/
position: absolute;
right: 0;
bottom: 0;
}
.news_body {
position: relative;
}
.date-btn {
font-size: 16px;
font-weight: bold;
display: block;
margin-bottom: 16px;
}
.newsdate_div {
margin-top: 20px;
}
.news_sources li {
list-style-type: none;
margin-bottom: 10px !important;
}
.news_ul li {
margin-bottom: 10px !important;
}
#news_block article {
margin-bottom: 20px !important;
}
.news_category_title {
font-size: 20px;
font-weight: bold;
margin-bottom: 20px;
display: inline-block;
}
</style>
<div class="row">
<div class="col-md-12" id="news_block">
<h2 align="left" id="news" style="margin-bottom: 50px;">
Latest News
</h2>
<div class="news_date">
<h4>
July 15 (GMT)
</h4>
</div>
<div id="newsdate2022-07-15">
<span class="news_category_title" id="updates">
Updates
</span>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,795 new cases
</strong>
and
<strong>
23 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/thailand/" style="text-decoration: underline;">
Thailand
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/informationcovid19/photos/a.106455480972785/603645534587108/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
34,885 new cases
</strong>
and
<strong>
74 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/mexico/" style="text-decoration: underline;">
Mexico
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.gob.mx/cms/uploads/attachment/file/743609/Informe_Tecnico_Diario_COVID-19_2022.07.14.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
500 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/north-korea/" style="text-decoration: underline;">
North Korea
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://kcna.kp/en/article/q/fa27645df08d241c6d9c40d37328274b.kcmsf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
38,864 new cases
</strong>
and
<strong>
16 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/south-korea/" style="text-decoration: underline;">
South Korea
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://ncov.mohw.go.kr/bdBoardList_Real.do?brdId=1&brdGubun=13&ncvContSeq=&contSeq=&board_id=&gubun=" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
30,830 new cases
</strong>
and
<strong>
55 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/australia/" style="text-decoration: underline;">
Australia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/coronavirus-covid-19-current-situation-and-case-numbers" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.health.nsw.gov.au/Infectious/covid-19/Pages/stats-nsw.aspx" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.dhhs.vic.gov.au/coronavirus-covid-19-daily-update" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.health.qld.gov.au/news-events/doh-media-releases" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://covidlive.com.au/australia" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
113 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/china/" style="text-decoration: underline;">
China
</a>
</strong>
The number of new asymptomatic cases, which China counts separately, were
<strong>
282
</strong>
<span class="source">
[
<a class="news_source_a" href="http://www.nhc.gov.cn/xcs/yqtb/202207/7f9fa78e660449c3af5ffd6ef9b6892f.shtml" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
</div>
<button class="btn btn-light date-btn" data-date="2022-07-14" style="margin-top:30px;">
July 14
<i class="fa fa-chevron-circle-down">
</i>
</button>
<div class="newsdate_div" id="newsdate2022-07-14" style="display: none;">
<span class="news_category_title" id="updates">
Updates
</span>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,336 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/tanzania/" style="text-decoration: underline;">
Tanzania
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/afro/country/tz" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1 new case
</strong>
in
<strong>
<a href="/coronavirus/country/timor-leste/" style="text-decoration: underline;">
Timor-Leste
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=415355330639174&set=a.251718540336188" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
21 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/turks-and-caicos-islands/" style="text-decoration: underline;">
the Turks and Caicos Islands
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=350211893957283&set=pcb.350212813957191" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
185 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/seychelles/" style="text-decoration: underline;">
Seychelles
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://www.health.gov.sc/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/el-salvador/" style="text-decoration: underline;">
El Salvador
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.gob.sv/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
6 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/papua-new-guinea/" style="text-decoration: underline;">
Papua New Guinea
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/wpro/country/pg" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/liberia/" style="text-decoration: underline;">
Liberia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/afro/country/lr" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
23 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/saint-kitts-and-nevis/" style="text-decoration: underline;">
Saint Kitts and Nevis
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=417956187037950&set=pcb.417956223704613" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
90 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/haiti/" style="text-decoration: underline;">
Haiti
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.mspp.gouv.ht/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
66 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/gibraltar/" style="text-decoration: underline;">
Gibraltar
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/GibraltarGov/status/1547551204921704454/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
8 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/eritrea/" style="text-decoration: underline;">
Eritrea
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://shabait.com/2022/07/14/announcement-from-the-ministry-of-health-509/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
13 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/cook-islands/" style="text-decoration: underline;">
the Cook Islands
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.gov.ck/data-statistics#cv-covid-cases" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
332 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/belize/" style="text-decoration: underline;">
Belize
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=163955752824611&set=pcb.163955802824606" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
55 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/bahamas/" style="text-decoration: underline;">
Bahamas
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/OurNewsRev/status/1547718217572835328/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
44 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/caribbean-netherlands/" style="text-decoration: underline;">
the Caribbean Netherlands
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=386492756911780&set=a.183174633910261 https://www.facebook.com/photo?fbid=402404038585541&set=a.353319536827325 https://www.facebook.com/photo/?fbid=385910993641640&set=a.338223535077053" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
18 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/antigua-and-barbuda/" style="text-decoration: underline;">
Antigua and Barbuda
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=705172720760368&set=a.582034583074183" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
65,379 new cases
</strong>
and
<strong>
292 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/brazil/" style="text-decoration: underline;">
Brazil
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid.saude.gov.br/" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://g1.globo.com/saude/coronavirus/noticia/2022/07/14/brasil-registra-292-novas-mortes-por-covid-media-movel-volta-a-apontar-alta.ghtml" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
322 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/norway/" style="text-decoration: underline;">
Norway
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.vg.no/spesial/corona/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
42 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/rwanda/" style="text-decoration: underline;">
Rwanda
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/RwandaHealth/status/1547695125106606081/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
136 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/jamaica/" style="text-decoration: underline;">
Jamaica
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo.php?fbid=422141906605412&set=a.223719679780970&type=3" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
72 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/uganda/" style="text-decoration: underline;">
Uganda
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/MinofHealthUG/status/1547552982664970240/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
47 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/mozambique/" style="text-decoration: underline;">
Mozambique
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.ins.gov.mz/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
687 new cases
</strong>
and
<strong>
7 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/botswana/" style="text-decoration: underline;">
Botswana
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=424986916340059&set=a.300917452080340" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
810 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/dominican-republic/" style="text-decoration: underline;">
the Dominican Republic
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo.php?fbid=411790434319999&set=a.250238787141832&type=3" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
6 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/syria/" style="text-decoration: underline;">
Syria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://t.me/s/mohsyria/5743" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
91 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/mongolia/" style="text-decoration: underline;">
Mongolia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/wpro/country/mn" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
127 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/guyana/" style="text-decoration: underline;">
Guyana
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo.php?fbid=368698022064941&set=a.293510942916983&type=3" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,330 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/channel-islands/" style="text-decoration: underline;">
Channel Islands
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.gov.je/Health/Coronavirus/Pages/CoronavirusCases.aspx#tab_totalsSinceMarch https://covid19.gov.gg/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
99 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/cote-d-ivoire/" style="text-decoration: underline;">
Côte d'Ivoire
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/mshpcmu/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
280 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/angola/" style="text-decoration: underline;">
Angola
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/afro/country/ao" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
60 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/nigeria/" style="text-decoration: underline;">
Nigeria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo.php?fbid=409523671212606&set=a.215224317309210&type=3" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
7,504 new cases
</strong>
and
<strong>
12 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/guatemala/" style="text-decoration: underline;">
Guatemala
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://tablerocovid.mspas.gob.gt/tablerocovid/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,107 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/bulgaria/" style="text-decoration: underline;">
Bulgaria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://coronavirus.bg/bg/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
91 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/azerbaijan/" style="text-decoration: underline;">
Azerbaijan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/euro/country/az" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
311 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/barbados/" style="text-decoration: underline;">
Barbados
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://gisbarbados.gov.bb/blog/covid-19-update-for-wednesday-july-13/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,727 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/bahrain/" style="text-decoration: underline;">
Bahrain
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.moh.gov.bh/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
14,936 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/india/" style="text-decoration: underline;">
India
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.mohfw.gov.in/" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://covid19bharat.org/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
28 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/algeria/" style="text-decoration: underline;">
Algeria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.aps.dz/sante-science-technologie/142849-coronavirus-28-nouveaux-cas-et-aucun-deces" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
482 new cases
</strong>
and
<strong>
8 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/south-africa/" style="text-decoration: underline;">
South Africa
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://sacoronavirus.co.za/2022/07/14/update-on-covid-19-thursday-14-july-2022/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
191 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/trinidad-and-tobago/" style="text-decoration: underline;">
Trinidad and Tobago
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/MOH_TT/status/1547672437990404096/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
11,772 new cases
</strong>
and
<strong>
4 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/singapore/" style="text-decoration: underline;">
Singapore
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.moh.gov.sg/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
97 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/mauritania/" style="text-decoration: underline;">
Mauritania
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/MSMauritanie" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
51 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/monaco/" style="text-decoration: underline;">
Monaco
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.mc/liens-utiles/chiffres-cles/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1 new case
</strong>
in
<strong>
<a href="/coronavirus/country/mali/" style="text-decoration: underline;">
Mali
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/msdsmali1/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
121 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/ethiopia/" style="text-decoration: underline;">
Ethiopia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/lia_tadesse/status/1547630918059233285/photo/2" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
47 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/togo/" style="text-decoration: underline;">
Togo
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.gouv.tg/situation-au-togo/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1 new case
</strong>
in
<strong>
<a href="/coronavirus/country/swaziland/" style="text-decoration: underline;">
Eswatini
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/EswatiniGovern1/status/1547633621829226497/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
19 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/sri-lanka/" style="text-decoration: underline;">
Sri Lanka
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.epid.gov.lk/web/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
4,098 new cases
</strong>
and
<strong>
8 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/malaysia/" style="text-decoration: underline;">
Malaysia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covidnow.moh.gov.my/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
119,285 new cases
</strong>
and
<strong>
54 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/france/" style="text-decoration: underline;">
France
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.santepubliquefrance.fr/dossiers/coronavirus-covid-19/coronavirus-chiffres-cles-et-evolution-de-la-covid-19-en-france-et-dans-le-monde" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
11 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/myanmar/" style="text-decoration: underline;">
Myanmar
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://doph.maps.arcgis.com/apps/dashboards/f8fb4ccc3d2d42c7ab0590dbb3fc26b8" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
7,301 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/israel/" style="text-decoration: underline;">
Israel
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://datadashboard.health.gov.il/COVID-19/general" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,721 new cases
</strong>
and
<strong>
24 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/canada/" style="text-decoration: underline;">
Canada
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.ctvnews.ca/health/coronavirus/tracking-every-case-of-covid-19-in-canada-1.4852102" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
466 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/montenegro/" style="text-decoration: underline;">
Montenegro
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.ijzcg.me/me/novosti/covid-19-presjek-stanja-14-jul-2022-godine" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,943 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/morocco/" style="text-decoration: underline;">
Morocco
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://www.covidmaroc.ma/Pages/AccueilAR.aspx" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,218 new cases
</strong>
and
<strong>
4 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/serbia/" style="text-decoration: underline;">
Serbia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.rs/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
9,698 new cases
</strong>
and
<strong>
71 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/chile/" style="text-decoration: underline;">
Chile
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.gob.cl/pasoapaso/cifrasoficiales/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
107,122 new cases
</strong>
and
<strong>
105 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/italy/" style="text-decoration: underline;">
Italy
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://github.com/pcm-dpc/COVID-19/blob/master/schede-riepilogative/regioni/dpc-covid19-ita-scheda-regioni-latest.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
49 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/cuba/" style="text-decoration: underline;">
Cuba
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/MINSAPCuba" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
153 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/kenya/" style="text-decoration: underline;">
Kenya
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/MinstryofHealthKE/posts/pfbid02JNSc8jLpSsTTfKXEMddpePByg5aEyVTprrLWcNBMYP7Ajqg9CQZXHerQ1zL7mcHxl" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
7,062 new cases
</strong>
and
<strong>
4 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/netherlands/" style="text-decoration: underline;">
the Netherlands
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://allecijfers.nl/nieuws/statistieken-over-het-corona-virus-en-covid19/#Corona_kerncijfers" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
494 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/macedonia/" style="text-decoration: underline;">
the Republic of North Macedonia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/ZdravstvoMK/status/1547562553940664322" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,981 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/iraq/" style="text-decoration: underline;">
Iraq
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=418550980315278&set=pb.100064811373232.-2207520000.." target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3,674 new cases
</strong>
and
<strong>
5 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/china-hong-kong-sar/" style="text-decoration: underline;">
China, Hong Kong SAR
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://chp-dashboard.geodata.gov.hk/covid-19/zh.html" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
586 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/saudi-arabia/" style="text-decoration: underline;">
Saudi Arabia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.moh.gov.sa/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,960 new cases
</strong>
and
<strong>
13 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/denmark/" style="text-decoration: underline;">
Denmark
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://experience.arcgis.com/experience/aa41b29149f24e20a4007a0c4e13db1d" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,324 new cases
</strong>
and
<strong>
6 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/bangladesh/" style="text-decoration: underline;">
Bangladesh
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.bssnews.net/news-flash/71665" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
5,234 new cases
</strong>
and
<strong>
8 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/iran/" style="text-decoration: underline;">
Iran
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://en.irna.ir/news/84821298/8-Iranians-die-due-to-COVID-19-in-past-24-hours" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
12,512 new cases
</strong>
and
<strong>
7 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/austria/" style="text-decoration: underline;">
Austria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://info.gesundheitsministerium.gv.at/?re=infektionslage" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
73 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/afghanistan/" style="text-decoration: underline;">
Afghanistan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://moph-dw.gov.af/dhis-web-dashboard/#/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,500 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/united-arab-emirates/" style="text-decoration: underline;">
the United Arab Emirates
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.ncema.gov.ae/en" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,371 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/philippines/" style="text-decoration: underline;">
the Philippines
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://doh.gov.ph/covid19tracker" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
214 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/nepal/" style="text-decoration: underline;">
Nepal
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.mohp.gov.np/#/https://covid19.mohp.gov.np/#/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
37 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/senegal/" style="text-decoration: underline;">
Senegal
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/cousenegal/status/1547528868495597569/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
932 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/viet-nam/" style="text-decoration: underline;">
Vietnam
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://suckhoedoisong.vn/ngay-14-7-co-932-ca-covid-19-moi-so-khoi-benh-gap-9-lan-169220714174315347.htm" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
79 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/fiji/" style="text-decoration: underline;">
Fiji
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.health.gov.fj/14-07-2022/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
17 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/china-macao-sar/" style="text-decoration: underline;">
China, Macao SAR
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.ssm.gov.mo/apps1/PreventCOVID-19/en.aspx#clg22916" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
287 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/bosnia-and-herzegovina/" style="text-decoration: underline;">
Bosnia and Herzegovina
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://mcp.gov.ba/publication/read/sluzbene-informacije-o-koronavirusu-covid-19?pageId=97" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,027 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/qatar/" style="text-decoration: underline;">
Qatar
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.moph.gov.qa/EN/Pages/default.aspx" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3,584 new cases
</strong>
and
<strong>
9 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/indonesia/" style="text-decoration: underline;">
Indonesia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.go.id/peta-sebaran" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,738 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/slovenia/" style="text-decoration: underline;">
Slovenia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid-19.sledilnik.org/en/tables" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,763 new cases
</strong>
and
<strong>
5 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/croatia/" style="text-decoration: underline;">
Croatia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.koronavirus.hr/najnovije/35" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
12,549 new cases
</strong>
and
<strong>
71 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/finland/" style="text-decoration: underline;">
Finland
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://sampo.thl.fi/pivot/prod/fi/epirapo/covid19case/summary_tshcdweekly" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,492 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/brunei-darussalam/" style="text-decoration: underline;">
Brunei Darussalam
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/wpro/country/bn" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3,993 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/romania/" style="text-decoration: underline;">
Romania
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.ms.ro/wp-content/uploads/2022/07/Buletin-de-presa-14.07.2022-1.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
280 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/malta/" style="text-decoration: underline;">
Malta
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://github.com/COVID19-Malta/COVID19-Data/blob/master/COVID-19%20Malta%20-%20Aggregate%20Data%20Set.csv" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,840 new cases
</strong>
and
<strong>
4 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/poland/" style="text-decoration: underline;">
Poland
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.gov.pl/web/koronawirus/wykaz-zarazen-koronawirusem-sars-cov-2" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
4,238 new cases
</strong>
and
<strong>
43 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/russia/" style="text-decoration: underline;">
Russia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://xn--80aesfpebagmfblc0a.xn--p1ai/information/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,107 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/latvia/" style="text-decoration: underline;">
Latvia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/SPKCentrs/status/1547481512047742976" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
822 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/slovakia/" style="text-decoration: underline;">
Slovakia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid-19.nczisk.sk/en/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
609 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/lithuania/" style="text-decoration: underline;">
Lithuania
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://osp.stat.gov.lt/praejusios-paros-covid-19-statistika" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
42 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/liechtenstein/" style="text-decoration: underline;">
Liechtenstein
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.llv.li/inhalt/118863/amtsstellen/situationsbericht" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,984 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/czech-republic/" style="text-decoration: underline;">
Czechia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://onemocneni-aktualne.mzcr.cz/covid-19" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
27,684 new cases
</strong>
and
<strong>
89 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/taiwan/" style="text-decoration: underline;">
Taiwan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.cdc.gov.tw/Bulletin/Detail/UmMJ_3Xqc6kP6K3R48pcOQ?typeid=9" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
32 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/laos/" style="text-decoration: underline;">
Laos
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=423592306470370&set=pb.100064588125919.-2207520000.." target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
17 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/cambodia/" style="text-decoration: underline;">
Cambodia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo?fbid=412169717606464&set=pb.100064403181076.-2207520000.." target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
71 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/uzbekistan/" style="text-decoration: underline;">
Uzbekistan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://t.me/ssvuz/10155" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,924 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/kazakhstan/" style="text-decoration: underline;">
Kazakhstan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.coronavirus2020.kz/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
47 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/kyrgyzstan/" style="text-decoration: underline;">
Kyrgyzstan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://med.kg/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
47,205 new cases
</strong>
and
<strong>
78 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/australia/" style="text-decoration: underline;">
Australia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/coronavirus-covid-19-current-situation-and-case-numbers" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.health.nsw.gov.au/Infectious/covid-19/Pages/stats-nsw.aspx" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.dhhs.vic.gov.au/coronavirus-covid-19-daily-update" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.health.qld.gov.au/news-events/doh-media-releases" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://covidlive.com.au/australia" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
390 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/pakistan/" style="text-decoration: underline;">
Pakistan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/NIH_Pakistan/status/1547397908626014208" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
92,507 new cases
</strong>
and
<strong>
29 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/japan/" style="text-decoration: underline;">
Japan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.mhlw.go.jp/stf/covid-19/kokunainohasseijoukyou.html" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
4,173 new cases
</strong>
and
<strong>
4 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/bolivia/" style="text-decoration: underline;">
Bolivia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/LosTiemposBol/status/1547414073775738883" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,257 new cases
</strong>
and
<strong>
28 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/thailand/" style="text-decoration: underline;">
Thailand
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/informationcovid19/photos/a.106455480972785/602961387988856/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
37,346 new cases
</strong>
and
<strong>
72 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/mexico/" style="text-decoration: underline;">
Mexico
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.gob.mx/cms/uploads/attachment/file/742755/Informe_Tecnico_Diario_COVID-19_2022.07.13.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
570 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/north-korea/" style="text-decoration: underline;">
North Korea
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://kcna.kp/en/article/q/4e88cda3dcc0806d2d5829ab84441887.kcmsf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
39,169 new cases
</strong>
and
<strong>
16 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/south-korea/" style="text-decoration: underline;">
South Korea
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://ncov.mohw.go.kr/bdBoardList_Real.do?brdId=1&brdGubun=13&ncvContSeq=&contSeq=&board_id=&gubun=" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
11,698 new cases
</strong>
and
<strong>
23 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/new-zealand/" style="text-decoration: underline;">
New Zealand
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.health.govt.nz/covid-19-novel-coronavirus/covid-19-data-and-statistics/covid-19-current-cases" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
121 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/china/" style="text-decoration: underline;">
China
</a>
</strong>
The number of new asymptomatic cases, which China counts separately, were
<strong>
245
</strong>
<span class="source">
[
<a class="news_source_a" href="http://www.nhc.gov.cn/xcs/yqtb/202207/5079bcaa1f5e404787cdaf899af22337.shtml" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
95,400 new cases
</strong>
and
<strong>
231 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/us/" style="text-decoration: underline;">
the United States
</a>
</strong>
</li>
</ul>
</div>
</div>
</div>
<button class="btn btn-light date-btn" data-date="2022-07-13" style="margin-top:30px;">
July 13
<i class="fa fa-chevron-circle-down">
</i>
</button>
<div class="newsdate_div" id="newsdate2022-07-13" style="display: none;">
<span class="news_category_title" id="updates">
Updates
</span>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
4 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/saint-vincent-and-the-grenadines/" style="text-decoration: underline;">
Saint Vincent and the Grenadines
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=512696483986431&set=a.391690926086988" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/timor-leste/" style="text-decoration: underline;">
Timor-Leste
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo?fbid=414691180705589&set=a.251718540336188" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/syria/" style="text-decoration: underline;">
Syria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://t.me/s/mohsyria/5734" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
91 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/san-marino/" style="text-decoration: underline;">
San Marino
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.iss.sm/on-line/home.html" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/el-salvador/" style="text-decoration: underline;">
El Salvador
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.gob.sv/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
71 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/saint-lucia/" style="text-decoration: underline;">
Saint Lucia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.covid19response.lc/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
32 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/grenada/" style="text-decoration: underline;">
Grenada
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo?fbid=353829423605477&set=a.181926647462423" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
17 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/eritrea/" style="text-decoration: underline;">
Eritrea
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://shabait.com/2022/07/13/announcement-from-the-ministry-of-health-508/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,816 new cases
</strong>
and
<strong>
6 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/ecuador/" style="text-decoration: underline;">
Ecuador
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.salud.gob.ec/wp-content/uploads/2022/07/MSP_cvd19_infografia_diaria_20220713.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
736 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/dominican-republic/" style="text-decoration: underline;">
the Dominican Republic
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo.php?fbid=411155781050131&set=a.250238787141832&type=3" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
321 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/bermuda/" style="text-decoration: underline;">
Bermuda
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.gov.bm/coronavirus-covid19-update" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
4,031 new cases
</strong>
and
<strong>
15 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/canada/" style="text-decoration: underline;">
Canada
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.ctvnews.ca/health/coronavirus/tracking-every-case-of-covid-19-in-canada-1.4852102" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
71,501 new cases
</strong>
and
<strong>
388 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/brazil/" style="text-decoration: underline;">
Brazil
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid.saude.gov.br/" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://g1.globo.com/saude/coronavirus/noticia/2022/07/13/brasil-registra-381-novas-mortes-por-covid-media-movel-esta-em-estabilidade.ghtml" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
339 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/norway/" style="text-decoration: underline;">
Norway
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.vg.no/spesial/corona/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
32 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/rwanda/" style="text-decoration: underline;">
Rwanda
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/RwandaHealth/status/1547348242005901312/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
75 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/jamaica/" style="text-decoration: underline;">
Jamaica
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo.php?fbid=421594039993532&set=a.223719679780970&type=3" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
239 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/kenya/" style="text-decoration: underline;">
Kenya
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/MOH_Kenya/status/1547255180382670848/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
63 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/azerbaijan/" style="text-decoration: underline;">
Azerbaijan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/euro/country/az" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
241 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/isle-of-man/" style="text-decoration: underline;">
Isle of Man
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/euro/country/im" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
674 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/mongolia/" style="text-decoration: underline;">
Mongolia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/wpro/country/mn" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
91 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/guyana/" style="text-decoration: underline;">
Guyana
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo.php?fbid=368052218796188&set=a.293510942916983&type=3" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
83 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/cote-d-ivoire/" style="text-decoration: underline;">
Côte d'Ivoire
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/mshpcmu/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
7,747 new cases
</strong>
and
<strong>
8 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/guatemala/" style="text-decoration: underline;">
Guatemala
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://tablerocovid.mspas.gob.gt/tablerocovid/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,021 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/bulgaria/" style="text-decoration: underline;">
Bulgaria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://coronavirus.bg/bg/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/montserrat/" style="text-decoration: underline;">
Montserrat
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo?fbid=360464966232330&set=a.308378171441010" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
190 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/trinidad-and-tobago/" style="text-decoration: underline;">
Trinidad and Tobago
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/MOH_TT/status/1547309961721651201/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
17,834 new cases
</strong>
and
<strong>
38 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/india/" style="text-decoration: underline;">
India
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.mohfw.gov.in/" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://covid19bharat.org/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
240 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/barbados/" style="text-decoration: underline;">
Barbados
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://gisbarbados.gov.bb/blog/covid-19-update-for-tuesday-july-12/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,694 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/bahrain/" style="text-decoration: underline;">
Bahrain
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.moh.gov.bh/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3,934 new cases
</strong>
and
<strong>
9 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/malaysia/" style="text-decoration: underline;">
Malaysia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covidnow.moh.gov.my/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
25 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/algeria/" style="text-decoration: underline;">
Algeria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.aps.dz/sante-science-technologie/142814-coronavirus-25-nouveaux-cas-et-aucun-deces-ces-dernieres-24h-en-algerie" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
397 new cases
</strong>
and
<strong>
12 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/south-africa/" style="text-decoration: underline;">
South Africa
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://sacoronavirus.co.za/2022/07/13/update-on-covid-19-wednesday-13-july-2022/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
16,870 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/singapore/" style="text-decoration: underline;">
Singapore
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.moh.gov.sg/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
140 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/mauritania/" style="text-decoration: underline;">
Mauritania
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/MSMauritanie" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
69 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/monaco/" style="text-decoration: underline;">
Monaco
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.mc/liens-utiles/chiffres-cles/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/mali/" style="text-decoration: underline;">
Mali
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/msdsmali1/photos/a.1773051416257702/3299221050307390/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
24 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/malawi/" style="text-decoration: underline;">
Malawi
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=354331313545815&set=pcb.354331340212479" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,563 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/albania/" style="text-decoration: underline;">
Albania
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://coronavirus.al/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
138 new cases
</strong>
and
<strong>
7 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/ethiopia/" style="text-decoration: underline;">
Ethiopia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/lia_tadesse/status/1547299133618376706/photo/2" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
35 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/togo/" style="text-decoration: underline;">
Togo
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.gouv.tg/situation-au-togo/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/swaziland/" style="text-decoration: underline;">
Eswatini
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/EswatiniGovern1/status/1547267757321895939/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
49 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/cabo-verde/" style="text-decoration: underline;">
Cabo Verde
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/GovernodeCaboVerde" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
127,642 new cases
</strong>
and
<strong>
109 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/france/" style="text-decoration: underline;">
France
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.santepubliquefrance.fr/dossiers/coronavirus-covid-19/coronavirus-chiffres-cles-et-evolution-de-la-covid-19-en-france-et-dans-le-monde" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
71 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/mozambique/" style="text-decoration: underline;">
Mozambique
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.ins.gov.mz/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
13 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/myanmar/" style="text-decoration: underline;">
Myanmar
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://doph.maps.arcgis.com/apps/dashboards/f8fb4ccc3d2d42c7ab0590dbb3fc26b8" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
9,971 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/israel/" style="text-decoration: underline;">
Israel
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://datadashboard.health.gov.il/COVID-19/general" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,207 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/ireland/" style="text-decoration: underline;">
Ireland
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://epi-covid-19-hpscireland.hub.arcgis.com/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
566 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/montenegro/" style="text-decoration: underline;">
Montenegro
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.ijzcg.me/me/novosti/covid-19-presjek-stanja-13-jul-2022-godine" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
30 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/sri-lanka/" style="text-decoration: underline;">
Sri Lanka
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.epid.gov.lk/web/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,064 new cases
</strong>
and
<strong>
5 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/morocco/" style="text-decoration: underline;">
Morocco
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://www.covidmaroc.ma/Pages/AccueilAR.aspx" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
411 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/macedonia/" style="text-decoration: underline;">
the Republic of North Macedonia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/ZdravstvoMK/status/1547231615784558593/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
8,494 new cases
</strong>
and
<strong>
6 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/chile/" style="text-decoration: underline;">
Chile
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.gob.cl/pasoapaso/cifrasoficiales/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
7,391 new cases
</strong>
and
<strong>
10 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/portugal/" style="text-decoration: underline;">
Portugal
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.min-saude.pt/numero-de-novos-casos-e-obitos-por-dia" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
111,678 new cases
</strong>
and
<strong>
106 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/italy/" style="text-decoration: underline;">
Italy
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://github.com/pcm-dpc/COVID-19/blob/master/schede-riepilogative/regioni/dpc-covid19-ita-scheda-regioni-latest.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,069 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/serbia/" style="text-decoration: underline;">
Serbia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.rs/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
63 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/cuba/" style="text-decoration: underline;">
Cuba
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/MINSAPCuba" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
5,000 new cases
</strong>
and
<strong>
5 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/iran/" style="text-decoration: underline;">
Iran
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://en.irna.ir/news/84820231/5-Iranians-die-due-to-COVID-19-in-past-24-hours" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
6,819 new cases
</strong>
and
<strong>
4 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/netherlands/" style="text-decoration: underline;">
the Netherlands
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://allecijfers.nl/nieuws/statistieken-over-het-corona-virus-en-covid19/#Corona_kerncijfers" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3,042 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/iraq/" style="text-decoration: underline;">
Iraq
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo?fbid=417776733726036&set=pb.100064811373232.-2207520000.." target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,808 new cases
</strong>
and
<strong>
6 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/croatia/" style="text-decoration: underline;">
Croatia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.koronavirus.hr/najnovije/35" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
8,036 new cases
</strong>
and
<strong>
35 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/hungary/" style="text-decoration: underline;">
Hungary
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://koronavirus.gov.hu/cikkek/6-millio-412-ezer-beoltott-8036-az-uj-fertozott-es-elhunyt-35-beteg" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
57 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/uganda/" style="text-decoration: underline;">
Uganda
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/MinofHealthUG/status/1547199120300982274" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
12 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/afghanistan/" style="text-decoration: underline;">
Afghanistan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://moph-dw.gov.af/dhis-web-dashboard/#/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,027 new cases
</strong>
and
<strong>
5 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/bangladesh/" style="text-decoration: underline;">
Bangladesh
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://bssnews.net/news-flash/71524" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
53 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/senegal/" style="text-decoration: underline;">
Senegal
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/cousenegal/status/1547193499598180352" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3,154 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/china-hong-kong-sar/" style="text-decoration: underline;">
China, Hong Kong SAR
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://chp-dashboard.geodata.gov.hk/covid-19/zh.html" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
480 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/saudi-arabia/" style="text-decoration: underline;">
Saudi Arabia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.moh.gov.sa/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,980 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/denmark/" style="text-decoration: underline;">
Denmark
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://experience.arcgis.com/experience/aa41b29149f24e20a4007a0c4e13db1d" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
229 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/bosnia-and-herzegovina/" style="text-decoration: underline;">
Bosnia and Herzegovina
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://mcp.gov.ba/publication/read/sluzbene-informacije-o-koronavirusu-covid-19?pageId=97" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3,777 new cases
</strong>
and
<strong>
4 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/romania/" style="text-decoration: underline;">
Romania
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.ms.ro/wp-content/uploads/2022/07/Buletin-de-presa-13.07.2022.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
177 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/nepal/" style="text-decoration: underline;">
Nepal
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.mohp.gov.np/#/https://covid19.mohp.gov.np/#/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,601 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/philippines/" style="text-decoration: underline;">
the Philippines
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://doh.gov.ph/covid19tracker" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,001 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/viet-nam/" style="text-decoration: underline;">
Vietnam
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://suckhoedoisong.vn/ngay-13-7-ca-covid-19-vuot-moc-1000-cao-nhat-trong-40-ngay-qua-169220713174114372.htm" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,585 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/brunei-darussalam/" style="text-decoration: underline;">
Brunei Darussalam
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/wpro/country/bn" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
16 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/china-macao-sar/" style="text-decoration: underline;">
China, Macao SAR
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.ssm.gov.mo/apps1/PreventCOVID-19/en.aspx#clg22916" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,522 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/united-arab-emirates/" style="text-decoration: underline;">
the United Arab Emirates
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.ncema.gov.ae/en" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,867 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/slovenia/" style="text-decoration: underline;">
Slovenia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid-19.sledilnik.org/en/tables" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3,822 new cases
</strong>
and
<strong>
12 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/indonesia/" style="text-decoration: underline;">
Indonesia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.go.id/peta-sebaran" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
15,149 new cases
</strong>
and
<strong>
9 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/austria/" style="text-decoration: underline;">
Austria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://info.gesundheitsministerium.gv.at/?re=infektionslage" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
863 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/qatar/" style="text-decoration: underline;">
Qatar
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.moph.gov.qa/EN/Pages/default.aspx" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
418 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/malta/" style="text-decoration: underline;">
Malta
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://github.com/COVID19-Malta/COVID19-Data/blob/master/COVID-19%20Malta%20-%20Aggregate%20Data%20Set.csv" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3,929 new cases
</strong>
and
<strong>
42 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/russia/" style="text-decoration: underline;">
Russia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://xn--80aesfpebagmfblc0a.xn--p1ai/information/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
908 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/latvia/" style="text-decoration: underline;">
Latvia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/SPKCentrs/status/1547130826701275136" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
30 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/liechtenstein/" style="text-decoration: underline;">
Liechtenstein
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.llv.li/inhalt/118863/amtsstellen/situationsbericht" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,647 new cases
</strong>
and
<strong>
6 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/poland/" style="text-decoration: underline;">
Poland
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.gov.pl/web/koronawirus/wykaz-zarazen-koronawirusem-sars-cov-2" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
873 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/slovakia/" style="text-decoration: underline;">
Slovakia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid-19.nczisk.sk/en/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
654 new cases
</strong>
and
<strong>
5 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/lithuania/" style="text-decoration: underline;">
Lithuania
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://experience.arcgis.com/experience/cab84dcfe0464c2a8050a78f817924ca/page/Ap%C5%BEvalga/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,979 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/czech-republic/" style="text-decoration: underline;">
Czechia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://onemocneni-aktualne.mzcr.cz/covid-19" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1 new case
</strong>
in
<strong>
<a href="/coronavirus/country/niue/" style="text-decoration: underline;">
Niue
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.gov.nu/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
29,866 new cases
</strong>
and
<strong>
48 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/taiwan/" style="text-decoration: underline;">
Taiwan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.cdc.gov.tw/Bulletin/Detail/4qebAxVn722NDiT6F9BdNw?typeid=9" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
15 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/laos/" style="text-decoration: underline;">
Laos
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=422921053204162&set=pb.100064588125919.-2207520000.." target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
68 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/uzbekistan/" style="text-decoration: underline;">
Uzbekistan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://t.me/ssvuz/10145" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
16 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/cambodia/" style="text-decoration: underline;">
Cambodia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.cdcmoh.gov.kh" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=411430977680338&set=a.307506831406087" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
44,242 new cases
</strong>
and
<strong>
52 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/australia/" style="text-decoration: underline;">
Australia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/coronavirus-covid-19-current-situation-and-case-numbers" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.health.nsw.gov.au/Infectious/covid-19/Pages/stats-nsw.aspx" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.dhhs.vic.gov.au/coronavirus-covid-19-daily-update" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.health.qld.gov.au/news-events/doh-media-releases" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://covidlive.com.au/australia" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
12,538 new cases
</strong>
and
<strong>
17 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/peru/" style="text-decoration: underline;">
Peru
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.dge.gob.pe/portal/docs/tools/coronavirus/coronavirus110722.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
482 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/kazakhstan/" style="text-decoration: underline;">
Kazakhstan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.coronavirus2020.kz/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
229 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/kyrgyzstan/" style="text-decoration: underline;">
Kyrgyzstan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://med.kg/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3,801 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/bolivia/" style="text-decoration: underline;">
Bolivia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/LosTiemposBol/status/1547045144804859906/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
236 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/pakistan/" style="text-decoration: underline;">
Pakistan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/NIH_Pakistan/status/1547026576713388032" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
68,191 new cases
</strong>
and
<strong>
20 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/japan/" style="text-decoration: underline;">
Japan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.mhlw.go.jp/stf/covid-19/kokunainohasseijoukyou.html" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
152,149 new cases
</strong>
and
<strong>
145 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/germany/" style="text-decoration: underline;">
Germany
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://experience.arcgis.com/experience/478220a4c454480e823b17327b2bf1d4" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
219 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/venezuela/" style="text-decoration: underline;">
Venezuela
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/delcyrodriguezv/status/1547029633304088576/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,391 new cases
</strong>
and
<strong>
25 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/thailand/" style="text-decoration: underline;">
Thailand
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/informationcovid19/photos/a.106455480972785/602245714727090/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
36,334 new cases
</strong>
and
<strong>
92 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/mexico/" style="text-decoration: underline;">
Mexico
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.gob.mx/cms/uploads/attachment/file/742032/Informe_Tecnico_Diario_COVID-19_2022.07.12.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
770 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/north-korea/" style="text-decoration: underline;">
North Korea
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://kcna.kp/en/article/q/018e3ba00d1eaa090256bf7cae721a83.kcmsf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
40,248 new cases
</strong>
and
<strong>
12 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/south-korea/" style="text-decoration: underline;">
South Korea
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://ncov.mohw.go.kr/bdBoardList_Real.do?brdId=1&brdGubun=13&ncvContSeq=&contSeq=&board_id=&gubun=" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
11,806 new cases
</strong>
and
<strong>
29 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/new-zealand/" style="text-decoration: underline;">
New Zealand
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.health.govt.nz/covid-19-novel-coronavirus/covid-19-data-and-statistics/covid-19-current-cases" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
98 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/china/" style="text-decoration: underline;">
China
</a>
</strong>
The number of new asymptomatic cases, which China counts separately, were
<strong>
240
</strong>
<span class="source">
[
<a class="news_source_a" href="http://www.nhc.gov.cn/xcs/yqtb/202207/2d134035f07c4c8384c0797974f3a7ab.shtml" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
121,092 new cases
</strong>
and
<strong>
477 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/us/" style="text-decoration: underline;">
the United States
</a>
</strong>
</li>
</ul>
</div>
</div>
</div>
<button class="btn btn-light date-btn" data-date="2022-07-12" style="margin-top:30px;">
July 12
<i class="fa fa-chevron-circle-down">
</i>
</button>
<div class="newsdate_div" id="newsdate2022-07-12" style="display: none;">
<span class="news_category_title" id="updates">
Updates
</span>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
19 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/samoa/" style="text-decoration: underline;">
Samoa
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo?fbid=405097371653419&set=a.220705696759255" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
11 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/timor-leste/" style="text-decoration: underline;">
Timor-Leste
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo?fbid=413911144116926&set=a.251718540336188" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
52 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/sint-maarten/" style="text-decoration: underline;">
Sint Maarten
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=407350114760618&set=a.355454833283480" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
29 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/suriname/" style="text-decoration: underline;">
Suriname
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid-19.sr/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
15 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/sao-tome-and-principe/" style="text-decoration: underline;">
Sao Tome and Principe
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo?fbid=196232459426719&set=a.156040156779283" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
152 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/san-marino/" style="text-decoration: underline;">
San Marino
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.iss.sm/on-line/home.html" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
170 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/french-polynesia/" style="text-decoration: underline;">
French Polynesia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/wpro/country/pf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1 new case
</strong>
in
<strong>
<a href="/coronavirus/country/papua-new-guinea/" style="text-decoration: underline;">
Papua New Guinea
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/wpro/country/pg" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
39 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/palau/" style="text-decoration: underline;">
Palau
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=407869481374373&set=a.355410419953613" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
163 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/saint-martin/" style="text-decoration: underline;">
Saint Martin
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/amro/country/mf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
24 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/saint-kitts-and-nevis/" style="text-decoration: underline;">
Saint Kitts and Nevis
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo?fbid=415983663901869&set=a.251201910380046" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
72 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/haiti/" style="text-decoration: underline;">
Haiti
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.mspp.gouv.ht/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
37 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/equatorial-guinea/" style="text-decoration: underline;">
Equatorial Guinea
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://guineasalud.org/estadisticas/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
120 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/curacao/" style="text-decoration: underline;">
Curaçao
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.covid19.cw/anunsio-covid-19/djaluna-11-di-yuli-2022-ultimo-desaroyo/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
48 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/comoros/" style="text-decoration: underline;">
Comoros
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/afro/country/km" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
20 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/cook-islands/" style="text-decoration: underline;">
the Cook Islands
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.gov.ck/data-statistics#cv-covid-cases" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
37 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/central-african-republic/" style="text-decoration: underline;">
the Central African Republic
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/afro/country/cf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
560 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/belize/" style="text-decoration: underline;">
Belize
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo.php?fbid=163499132870273&set=a.115234181030102&type=3" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
12 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/bahamas/" style="text-decoration: underline;">
Bahamas
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/OurNewsRev/status/1546914219068690432/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
64,771 new cases
</strong>
and
<strong>
352 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/brazil/" style="text-decoration: underline;">
Brazil
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid.saude.gov.br/" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://g1.globo.com/saude/coronavirus/noticia/2022/07/12/brasil-registra-352-novas-mortes-por-covid-casos-conhecidos-passam-de-33-milhoes.ghtml" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
411 new cases
</strong>
and
<strong>
12 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/norway/" style="text-decoration: underline;">
Norway
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.vg.no/spesial/corona/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/el-salvador/" style="text-decoration: underline;">
El Salvador
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.gob.sv/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
297 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/barbados/" style="text-decoration: underline;">
Barbados
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://gisbarbados.gov.bb/blog/covid-19-update-for-monday-july-11/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
43 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/rwanda/" style="text-decoration: underline;">
Rwanda
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/RwandaHealth/status/1546976104484945921/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
46 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/jamaica/" style="text-decoration: underline;">
Jamaica
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo.php?fbid=420649290088007&set=a.223719679780970&type=3" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
399 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/ghana/" style="text-decoration: underline;">
Ghana
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.ghs.gov.gh/covid19/dashboardm.php" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
824 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/honduras/" style="text-decoration: underline;">
Honduras
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://www.salud.gob.hn/site/index.php/component/edocman/boletin-covid-11-7-2022" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
105 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/saint-barthelemy/" style="text-decoration: underline;">
Saint Barthélemy
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/amro/country/bl" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,486 new cases
</strong>
and
<strong>
8 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/ecuador/" style="text-decoration: underline;">
Ecuador
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.salud.gob.ec/wp-content/uploads/2022/07/MSP_cvd19_infografia_diaria_20220711.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
628 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/dominican-republic/" style="text-decoration: underline;">
the Dominican Republic
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo.php?fbid=410362021129507&set=a.250238787141832&type=3" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/syria/" style="text-decoration: underline;">
Syria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://t.me/s/mohsyria/5733" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
105 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/trinidad-and-tobago/" style="text-decoration: underline;">
Trinidad and Tobago
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://experience.arcgis.com/experience/59226cacd2b441c7a939dca13f832112/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
81 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/cote-d-ivoire/" style="text-decoration: underline;">
Côte d'Ivoire
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/mshpcmu/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
947 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/channel-islands/" style="text-decoration: underline;">
Channel Islands
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.gov.je/Health/Coronavirus/Pages/CoronavirusCases.aspx#tab_totalsSinceMarch https://covid19.gov.gg/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
184 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/guyana/" style="text-decoration: underline;">
Guyana
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo.php?fbid=367341038867306&set=a.293510926250318&type=3" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
50 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/sudan/" style="text-decoration: underline;">
Sudan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/emro/country/sd" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
100 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/libya/" style="text-decoration: underline;">
Libya
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/emro/country/ly" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
357 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/nigeria/" style="text-decoration: underline;">
Nigeria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.ncdc.gov.ng/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,139 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/bulgaria/" style="text-decoration: underline;">
Bulgaria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://coronavirus.bg/bg/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
65 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/niger/" style="text-decoration: underline;">
Niger
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/afro/country/ne" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
307 new cases
</strong>
and
<strong>
4 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/solomon-islands/" style="text-decoration: underline;">
the Solomon Islands
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/wpro/country/sb" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
491 new cases
</strong>
and
<strong>
15 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/south-africa/" style="text-decoration: underline;">
South Africa
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/nicd_sa/status/1546887833041911810/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
32 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/azerbaijan/" style="text-decoration: underline;">
Azerbaijan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/euro/country/az" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,345 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/malaysia/" style="text-decoration: underline;">
Malaysia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covidnow.moh.gov.my/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
19,211 new cases
</strong>
and
<strong>
45 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/india/" style="text-decoration: underline;">
India
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.mohfw.gov.in/" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://covid19bharat.org/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
29 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/algeria/" style="text-decoration: underline;">
Algeria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.aps.dz/sante-science-technologie/142776-coronavirus-29-nouveaux-cas-et-aucun-deces-ces-dernieres-24h-en-algerie" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
12,081 new cases
</strong>
and
<strong>
28 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/canada/" style="text-decoration: underline;">
Canada
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.ctvnews.ca/health/coronavirus/tracking-every-case-of-covid-19-in-canada-1.4852102" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
90 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/mozambique/" style="text-decoration: underline;">
Mozambique
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.ins.gov.mz/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
5,979 new cases
</strong>
and
<strong>
5 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/singapore/" style="text-decoration: underline;">
Singapore
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.moh.gov.sg/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
107 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/mauritania/" style="text-decoration: underline;">
Mauritania
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/MSMauritanie" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
48 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/monaco/" style="text-decoration: underline;">
Monaco
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.mc/liens-utiles/chiffres-cles/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/mali/" style="text-decoration: underline;">
Mali
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/msdsmali1/photos/a.1773051416257702/3298426217053540" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,322 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/bahrain/" style="text-decoration: underline;">
Bahrain
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.moh.gov.bh/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
49 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/malawi/" style="text-decoration: underline;">
Malawi
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=353521830293430&set=pcb.353521863626760" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,215 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/albania/" style="text-decoration: underline;">
Albania
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://coronavirus.al/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
71 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/ethiopia/" style="text-decoration: underline;">
Ethiopia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/lia_tadesse" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
12 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/togo/" style="text-decoration: underline;">
Togo
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.gouv.tg/situation-au-togo/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
8 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/swaziland/" style="text-decoration: underline;">
Eswatini
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/EswatiniGovern1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
182,006 new cases
</strong>
and
<strong>
126 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/france/" style="text-decoration: underline;">
France
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.santepubliquefrance.fr/dossiers/coronavirus-covid-19/coronavirus-chiffres-cles-et-evolution-de-la-covid-19-en-france-et-dans-le-monde" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
9 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/myanmar/" style="text-decoration: underline;">
Myanmar
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://doph.maps.arcgis.com/apps/dashboards/f8fb4ccc3d2d42c7ab0590dbb3fc26b8" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
9,820 new cases
</strong>
and
<strong>
32 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/israel/" style="text-decoration: underline;">
Israel
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://datadashboard.health.gov.il/COVID-19/general" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
23 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/sri-lanka/" style="text-decoration: underline;">
Sri Lanka
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.epid.gov.lk/web/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
8,918 new cases
</strong>
and
<strong>
13 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/portugal/" style="text-decoration: underline;">
Portugal
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.min-saude.pt/numero-de-novos-casos-e-obitos-por-dia" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
14,805 new cases
</strong>
and
<strong>
53 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/spain/" style="text-decoration: underline;">
Spain
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.sanidad.gob.es/profesionales/saludPublica/ccayes/alertasActual/nCov/documentos/Actualizacion_615_COVID-19.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
569 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/montenegro/" style="text-decoration: underline;">
Montenegro
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.ijzcg.me/me/novosti/covid-19-presjek-stanja-12-jul-2022-godine" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
587 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/morocco/" style="text-decoration: underline;">
Morocco
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://www.covidmaroc.ma/Pages/AccueilAR.aspx" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
4,573 new cases
</strong>
and
<strong>
18 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/chile/" style="text-decoration: underline;">
Chile
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.gob.cl/pasoapaso/cifrasoficiales/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,050 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/serbia/" style="text-decoration: underline;">
Serbia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.rs/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
144,390 new cases
</strong>
and
<strong>
157 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/italy/" style="text-decoration: underline;">
Italy
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://github.com/pcm-dpc/COVID-19/blob/master/schede-riepilogative/regioni/dpc-covid19-ita-scheda-regioni-latest.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
31 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/cuba/" style="text-decoration: underline;">
Cuba
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/MINSAPCuba" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
7,479 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/switzerland/" style="text-decoration: underline;">
Switzerland
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.covid19.admin.ch/en/epidemiologic/case/d/development?geo=CH&time=total&sum=cumulative&epiRelDev=abs" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://rsalzer.github.io/COVID_19_CH/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
4,044 new cases
</strong>
and
<strong>
9 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/romania/" style="text-decoration: underline;">
Romania
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.ms.ro/wp-content/uploads/2022/07/Buletin-de-presa-12.07.2022.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
124 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/kenya/" style="text-decoration: underline;">
Kenya
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/MOH_Kenya/status/1546846963815038976" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
7,354 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/netherlands/" style="text-decoration: underline;">
the Netherlands
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://allecijfers.nl/nieuws/statistieken-over-het-corona-virus-en-covid19/#Corona_kerncijfers" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,270 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/iraq/" style="text-decoration: underline;">
Iraq
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo?fbid=417019290468447&set=pb.100064811373232.-2207520000.." target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
511 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/macedonia/" style="text-decoration: underline;">
the Republic of North Macedonia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/ZdravstvoMK/status/1546842223085584387" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
5 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/afghanistan/" style="text-decoration: underline;">
Afghanistan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://moph-dw.gov.af/dhis-web-dashboard/#/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
46 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/uganda/" style="text-decoration: underline;">
Uganda
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/MinofHealthUG/status/1546822753671684102/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,769 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/china-hong-kong-sar/" style="text-decoration: underline;">
China, Hong Kong SAR
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://chp-dashboard.geodata.gov.hk/covid-19/zh.html" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
450 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/malta/" style="text-decoration: underline;">
Malta
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://github.com/COVID19-Malta/COVID19-Data/blob/master/COVID-19%20Malta%20-%20Aggregate%20Data%20Set.csv" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3,588 new cases
</strong>
and
<strong>
7 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/iran/" style="text-decoration: underline;">
Iran
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.irna.ir/news/84819159/%DB%B7-%D9%86%D9%81%D8%B1-%D8%A8%D8%B1-%D8%A7%D8%AB%D8%B1-%DA%A9%D8%B1%D9%88%D9%86%D8%A7%D9%86-%D8%AC%D8%A7%D9%86-%D8%A8%D8%A7%D8%AE%D8%AA%D9%86%D8%AF-%D8%B1%D8%B4%D8%AF-%DB%B2-%DB%B5-%D8%A8%D8%B1%D8%A7%D8%A8%D8%B1%DB%8C-%D8%B4%D9%86%D8%A7%D8%B3%D8%A7%DB%8C%DB%8C-%D8%A8%DB%8C%D9%85%D8%A7%D8%B1%D8%A7%D9%86" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
656 new cases
</strong>
and
<strong>
9 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/bangladesh/" style="text-decoration: underline;">
Bangladesh
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.bssnews.net/news-flash/71346" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,012 new cases
</strong>
and
<strong>
6 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/croatia/" style="text-decoration: underline;">
Croatia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.koronavirus.hr/en/newest/151" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,554 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/united-arab-emirates/" style="text-decoration: underline;">
the United Arab Emirates
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.ncema.gov.ae/en" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
407 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/saudi-arabia/" style="text-decoration: underline;">
Saudi Arabia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.moh.gov.sa/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,373 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/denmark/" style="text-decoration: underline;">
Denmark
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://experience.arcgis.com/experience/aa41b29149f24e20a4007a0c4e13db1d" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
165 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/bosnia-and-herzegovina/" style="text-decoration: underline;">
Bosnia and Herzegovina
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://mcp.gov.ba/publication/read/sluzbene-informacije-o-koronavirusu-covid-19?pageId=97" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
875 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/viet-nam/" style="text-decoration: underline;">
Vietnam
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://suckhoedoisong.vn/ngay-12-7-ca-covid-19-moi-tang-vot-len-873-quang-ninh-co-1-f0-tu-vong-169220712171055913.htm" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,451 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/brunei-darussalam/" style="text-decoration: underline;">
Brunei Darussalam
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/wpro/country/bn" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
15 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/senegal/" style="text-decoration: underline;">
Senegal
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/cousenegal/status/1546556636885663745/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,360 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/philippines/" style="text-decoration: underline;">
the Philippines
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://doh.gov.ph/covid19tracker" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
97 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/burundi/" style="text-decoration: underline;">
Burundi
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/afro/country/bi" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
26 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/liechtenstein/" style="text-decoration: underline;">
Liechtenstein
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.llv.li/inhalt/118863/amtsstellen/situationsbericht" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
21 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/china-macao-sar/" style="text-decoration: underline;">
China, Macao SAR
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.ssm.gov.mo/apps1/PreventCOVID-19/en.aspx#clg22916" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
640 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/qatar/" style="text-decoration: underline;">
Qatar
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.moph.gov.qa/EN/Pages/default.aspx" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,365 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/slovenia/" style="text-decoration: underline;">
Slovenia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid-19.sledilnik.org/en/tables" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,166 new cases
</strong>
and
<strong>
9 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/estonia/" style="text-decoration: underline;">
Estonia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.terviseamet.ee/et/koroonaviirus/koroonakaart" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
995 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/latvia/" style="text-decoration: underline;">
Latvia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/SPKCentrs/status/1546777061091672064" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3,361 new cases
</strong>
and
<strong>
8 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/indonesia/" style="text-decoration: underline;">
Indonesia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.go.id/peta-sebaran" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
144 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/nepal/" style="text-decoration: underline;">
Nepal
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.mohp.gov.np/#/https://covid19.mohp.gov.np/#/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
10,189 new cases
</strong>
and
<strong>
16 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/austria/" style="text-decoration: underline;">
Austria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://info.gesundheitsministerium.gv.at/?re=infektionslage" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,295 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/new-caledonia/" style="text-decoration: underline;">
New Caledonia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://gouv.nc/sites/default/files/atoms/files/2022.07.12_ip_point_sanitaire.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,034 new cases
</strong>
and
<strong>
5 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/poland/" style="text-decoration: underline;">
Poland
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.gov.pl/web/koronawirus/wykaz-zarazen-koronawirusem-sars-cov-2" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
16 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/nauru/" style="text-decoration: underline;">
Nauru
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=354855560143621&set=pb.100068575385848.-2207520000.." target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
42 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/vanuatu/" style="text-decoration: underline;">
Vanuatu
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=349565427346815&set=pb.100068800826833.-2207520000.." target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
841 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/slovakia/" style="text-decoration: underline;">
Slovakia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid-19.nczisk.sk/en/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3,002 new cases
</strong>
and
<strong>
48 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/russia/" style="text-decoration: underline;">
Russia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://xn--80aesfpebagmfblc0a.xn--p1ai/information/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
823 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/lithuania/" style="text-decoration: underline;">
Lithuania
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://experience.arcgis.com/experience/cab84dcfe0464c2a8050a78f817924ca/page/Ap%C5%BEvalga/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,030 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/czech-republic/" style="text-decoration: underline;">
Czechia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://onemocneni-aktualne.mzcr.cz/covid-19" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
31,247 new cases
</strong>
and
<strong>
60 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/taiwan/" style="text-decoration: underline;">
Taiwan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.cdc.gov.tw/Bulletin/Detail/adATjnxd-yCQI5AT0z_-vw?typeid=9" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
11 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/laos/" style="text-decoration: underline;">
Laos
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=422139083282359&set=pb.100064588125919.-2207520000.." target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
76 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/uzbekistan/" style="text-decoration: underline;">
Uzbekistan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://t.me/ssvuz/10135" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
12 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/cambodia/" style="text-decoration: underline;">
Cambodia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=410744924415610&set=a.307506831406087" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
41,259 new cases
</strong>
and
<strong>
59 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/australia/" style="text-decoration: underline;">
Australia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/coronavirus-covid-19-current-situation-and-case-numbers" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.health.nsw.gov.au/Infectious/covid-19/Pages/stats-nsw.aspx" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.dhhs.vic.gov.au/coronavirus-covid-19-daily-update" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.health.qld.gov.au/news-events/doh-media-releases" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://covidlive.com.au/australia" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1 new case
</strong>
in
<strong>
<a href="/coronavirus/country/niue/" style="text-decoration: underline;">
Niue
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.gov.nu/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
454 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/kazakhstan/" style="text-decoration: underline;">
Kazakhstan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.coronavirus2020.kz/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
8,000 new cases
</strong>
and
<strong>
19 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/peru/" style="text-decoration: underline;">
Peru
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.dge.gob.pe/portal/docs/tools/coronavirus/coronavirus100722.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
137 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/venezuela/" style="text-decoration: underline;">
Venezuela
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/luchaalmada/status/1546679260101939202/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
255 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/pakistan/" style="text-decoration: underline;">
Pakistan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/NIH_Pakistan/status/1546662349020487684" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
46,033 new cases
</strong>
and
<strong>
19 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/japan/" style="text-decoration: underline;">
Japan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.mhlw.go.jp/stf/covid-19/kokunainohasseijoukyou.html" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
127,611 new cases
</strong>
and
<strong>
104 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/germany/" style="text-decoration: underline;">
Germany
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://experience.arcgis.com/experience/478220a4c454480e823b17327b2bf1d4/page/Bundesl%C3%A4nder/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,679 new cases
</strong>
and
<strong>
23 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/thailand/" style="text-decoration: underline;">
Thailand
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/informationcovid19/photos/a.106455480972785/601530798131915/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3,037 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/bolivia/" style="text-decoration: underline;">
Bolivia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.minsalud.gob.bo/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
5,986 new cases
</strong>
and
<strong>
12 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/mexico/" style="text-decoration: underline;">
Mexico
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.gob.mx/cms/uploads/attachment/file/741626/Informe_Tecnico_Diario_COVID-19_2022.07.11.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
900 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/north-korea/" style="text-decoration: underline;">
North Korea
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://kcna.kp/en/article/q/9224f97ec5f7e876125247071856ea6b.kcmsf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
37,323 new cases
</strong>
and
<strong>
7 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/south-korea/" style="text-decoration: underline;">
South Korea
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://ncov.mohw.go.kr/bdBoardList_Real.do?brdId=1&brdGubun=13&ncvContSeq=&contSeq=&board_id=&gubun=" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
11,852 new cases
</strong>
and
<strong>
17 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/new-zealand/" style="text-decoration: underline;">
New Zealand
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.health.govt.nz/covid-19-novel-coronavirus/covid-19-data-and-statistics/covid-19-current-cases" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
107 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/china/" style="text-decoration: underline;">
China
</a>
</strong>
The number of new asymptomatic cases, which China counts separately, were
<strong>
317
</strong>
<span class="source">
[
<a class="news_source_a" href="http://www.nhc.gov.cn/xcs/yqtb/202207/9669f54b8e514870b418c1740eb91bce.shtml" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
129,858 new cases
</strong>
and
<strong>
378 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/us/" style="text-decoration: underline;">
the United States
</a>
</strong>
</li>
</ul>
</div>
</div>
</div>
<button class="btn btn-light date-btn" data-date="2022-07-11" style="margin-top:30px;">
July 11
<i class="fa fa-chevron-circle-down">
</i>
</button>
<div class="newsdate_div" id="newsdate2022-07-11" style="display: none;">
<span class="news_category_title" id="updates">
Updates
</span>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
28 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/zimbabwe/" style="text-decoration: underline;">
Zimbabwe
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/MoHCCZim/status/1546311905521930240/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
706 new cases
</strong>
and
<strong>
4 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/south-africa/" style="text-decoration: underline;">
South Africa
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/nicd_sa/status/1546559472738377731/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
63 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/samoa/" style="text-decoration: underline;">
Samoa
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=404868321676324&set=a.220705696759255" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
406 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/tanzania/" style="text-decoration: underline;">
Tanzania
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/afro/country/tz" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1 new case
</strong>
in
<strong>
<a href="/coronavirus/country/chad/" style="text-decoration: underline;">
Chad
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=353892286928018&set=a.234250095558905" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
35 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/somalia/" style="text-decoration: underline;">
Somalia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19som-ochasom.hub.arcgis.com/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
24 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/san-marino/" style="text-decoration: underline;">
San Marino
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.iss.sm/on-line/home/articolo49015975.html" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
114 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/french-polynesia/" style="text-decoration: underline;">
French Polynesia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/wpro/country/pf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
6 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/papua-new-guinea/" style="text-decoration: underline;">
Papua New Guinea
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/wpro/country/pg" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
102 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/lesotho/" style="text-decoration: underline;">
Lesotho
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/afro/country/ls" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
85 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/saint-lucia/" style="text-decoration: underline;">
Saint Lucia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.covid19response.lc/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/liberia/" style="text-decoration: underline;">
Liberia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/afro/country/lr" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,937 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/iraq/" style="text-decoration: underline;">
Iraq
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=416385670531809&set=a.290716646432046" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
141 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/haiti/" style="text-decoration: underline;">
Haiti
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.mspp.gouv.ht/wp-content/uploads/Sitrep-COVID-19_04-07-2022.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
84 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/equatorial-guinea/" style="text-decoration: underline;">
Equatorial Guinea
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://guineasalud.org/estadisticas/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/eritrea/" style="text-decoration: underline;">
Eritrea
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://shabait.com/2022/07/11/announcement-from-the-ministry-of-health-507/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
344 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/democratic-republic-of-the-congo/" style="text-decoration: underline;">
the DR Congo
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/afro/country/cd" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
29 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/bahamas/" style="text-decoration: underline;">
Bahamas
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/OurNewsRev/status/1546601707223793664/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
20 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/anguilla/" style="text-decoration: underline;">
Anguilla
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo.php?fbid=356141363367349&set=a.302648672049952&type=3" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
44,043 new cases
</strong>
and
<strong>
155 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/brazil/" style="text-decoration: underline;">
Brazil
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid.saude.gov.br/" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://g1.globo.com/saude/coronavirus/noticia/2022/07/11/brasil-tem-media-movel-de-245-mortes-diarias-por-covid-alta-segue-ha-18-dias.ghtml" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
374 new cases
</strong>
and
<strong>
12 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/norway/" style="text-decoration: underline;">
Norway
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.vg.no/spesial/corona/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
110 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/jamaica/" style="text-decoration: underline;">
Jamaica
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo.php?fbid=420031303483139&set=a.223719679780970&type=3" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/el-salvador/" style="text-decoration: underline;">
El Salvador
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.gob.sv/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
771 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/maldives/" style="text-decoration: underline;">
Maldives
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/HPA_MV/status/1546431416044769280/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
192 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/albania/" style="text-decoration: underline;">
Albania
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://coronavirus.al/statistika/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
68 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/kenya/" style="text-decoration: underline;">
Kenya
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/MOH_Kenya/status/1546550295408349186/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
354 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/armenia/" style="text-decoration: underline;">
Armenia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/euro/country/am" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
440 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/honduras/" style="text-decoration: underline;">
Honduras
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://www.salud.gob.hn/site/index.php/component/edocman/boletin-covid-08-7-2022" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
232 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/ecuador/" style="text-decoration: underline;">
Ecuador
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.salud.gob.ec/wp-content/uploads/2022/07/MSP_cvd19_infografia_diaria_20220710.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
6 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/syria/" style="text-decoration: underline;">
Syria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://t.me/s/mohsyria/5732" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
85 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/trinidad-and-tobago/" style="text-decoration: underline;">
Trinidad and Tobago
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://experience.arcgis.com/experience/59226cacd2b441c7a939dca13f832112/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
31 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/guyana/" style="text-decoration: underline;">
Guyana
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo.php?fbid=366608072273936&set=a.293510942916983&type=3" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
5 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/cote-d-ivoire/" style="text-decoration: underline;">
Côte d'Ivoire
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/mshpcmu/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
37 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/azerbaijan/" style="text-decoration: underline;">
Azerbaijan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/euro/country/az" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,277 new cases
</strong>
and
<strong>
10 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/guatemala/" style="text-decoration: underline;">
Guatemala
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://tablerocovid.mspas.gob.gt/tablerocovid/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,308 new cases
</strong>
and
<strong>
5 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/bulgaria/" style="text-decoration: underline;">
Bulgaria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://coronavirus.bg/bg/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
23 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/rwanda/" style="text-decoration: underline;">
Rwanda
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/RwandaHealth/status/1546603137045348353/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
13,615 new cases
</strong>
and
<strong>
20 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/india/" style="text-decoration: underline;">
India
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.mohfw.gov.in/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,035 new cases
</strong>
and
<strong>
18 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/portugal/" style="text-decoration: underline;">
Portugal
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.min-saude.pt/numero-de-novos-casos-e-obitos-por-dia" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
17 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/algeria/" style="text-decoration: underline;">
Algeria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.aps.dz/sante-science-technologie/142741-coronavirus-17-nouveaux-cas-et-aucun-deces-ces-dernieres-24h-en-algerie" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,201 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/bahrain/" style="text-decoration: underline;">
Bahrain
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.moh.gov.bh/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
15 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/myanmar/" style="text-decoration: underline;">
Myanmar
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://doph.maps.arcgis.com/apps/dashboards/f8fb4ccc3d2d42c7ab0590dbb3fc26b8" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/mozambique/" style="text-decoration: underline;">
Mozambique
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.ins.gov.mz/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
4 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/swaziland/" style="text-decoration: underline;">
Eswatini
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/EswatiniGovern1/status/1546548443560165376/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
46 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/cabo-verde/" style="text-decoration: underline;">
Cabo Verde
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/GovernodeCaboVerde" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
24,343 new cases
</strong>
and
<strong>
108 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/france/" style="text-decoration: underline;">
France
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.data.gouv.fr/fr/datasets/synthese-des-indicateurs-de-suivi-de-lepidemie-covid-19/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
4,495 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/singapore/" style="text-decoration: underline;">
Singapore
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.moh.gov.sg/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
62 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/mauritania/" style="text-decoration: underline;">
Mauritania
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/MSMauritanie" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/mali/" style="text-decoration: underline;">
Mali
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/msdsmali1/photos/a.1773051416257702/3297617740467721" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
9 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/malawi/" style="text-decoration: underline;">
Malawi
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=352836080362005&set=pcb.352836107028669" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
116 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/ethiopia/" style="text-decoration: underline;">
Ethiopia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/lia_tadesse/status/1546558536414646272/photo/2" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
144 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/barbados/" style="text-decoration: underline;">
Barbados
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://gisbarbados.gov.bb/blog/covid-19-update-for-sunday-july-10/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,095 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/dominican-republic/" style="text-decoration: underline;">
the Dominican Republic
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo?fbid=409476541218055&set=pcb.409476591218050" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
519 new cases
</strong>
and
<strong>
4 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/macedonia/" style="text-decoration: underline;">
the Republic of North Macedonia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/ZdravstvoMK/status/1546487334237097985/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
19 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/sri-lanka/" style="text-decoration: underline;">
Sri Lanka
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.epid.gov.lk/web/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,876 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/serbia/" style="text-decoration: underline;">
Serbia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.rs/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
12,648 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/israel/" style="text-decoration: underline;">
Israel
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://datadashboard.health.gov.il/COVID-19/general" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
274 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/morocco/" style="text-decoration: underline;">
Morocco
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://www.covidmaroc.ma/Pages/AccueilAR.aspx" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
6,215 new cases
</strong>
and
<strong>
42 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/chile/" style="text-decoration: underline;">
Chile
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.gob.cl/pasoapaso/cifrasoficiales/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,417 new cases
</strong>
and
<strong>
5 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/malaysia/" style="text-decoration: underline;">
Malaysia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covidnow.moh.gov.my/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,016 new cases
</strong>
and
<strong>
11 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/canada/" style="text-decoration: underline;">
Canada
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.ctvnews.ca/health/coronavirus/tracking-every-case-of-covid-19-in-canada-1.4852102" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
292 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/montenegro/" style="text-decoration: underline;">
Montenegro
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.ijzcg.me/me/novosti/covid-19-presjek-stanja-11-jul-2022-godine" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
37 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/cuba/" style="text-decoration: underline;">
Cuba
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/MINSAPCuba" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
34 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/uganda/" style="text-decoration: underline;">
Uganda
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/MinofHealthUG/status/1546483099374067712/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
16 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/togo/" style="text-decoration: underline;">
Togo
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.gouv.tg/situation-au-togo/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/fiji/" style="text-decoration: underline;">
Fiji
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.health.gov.fj/11-07-2022/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
4,098 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/netherlands/" style="text-decoration: underline;">
the Netherlands
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://allecijfers.nl/nieuws/statistieken-over-het-corona-virus-en-covid19/#Corona_kerncijfers" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
50 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/zambia/" style="text-decoration: underline;">
Zambia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=418096193691237&set=pb.100064725786912.-2207520000.." target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/afghanistan/" style="text-decoration: underline;">
Afghanistan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://moph-dw.gov.af/dhis-web-dashboard/#/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,863 new cases
</strong>
and
<strong>
7 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/china-hong-kong-sar/" style="text-decoration: underline;">
China, Hong Kong SAR
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://chp-dashboard.geodata.gov.hk/covid-19/zh.html" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
14,943 new cases
</strong>
and
<strong>
33 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/romania/" style="text-decoration: underline;">
Romania
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.ms.ro/wp-content/uploads/2022/07/Buletin-de-presa-04.07-10.07.20221.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
64 new cases
</strong>
and
<strong>
11 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/croatia/" style="text-decoration: underline;">
Croatia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.koronavirus.hr/najnovije/35" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
521 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/bangladesh/" style="text-decoration: underline;">
Bangladesh
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.bssnews.net/news/71217" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
375 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/saudi-arabia/" style="text-decoration: underline;">
Saudi Arabia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.moh.gov.sa/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
4,499 new cases
</strong>
and
<strong>
19 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/denmark/" style="text-decoration: underline;">
Denmark
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://experience.arcgis.com/experience/aa41b29149f24e20a4007a0c4e13db1d" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
568 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/viet-nam/" style="text-decoration: underline;">
Vietnam
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://suckhoedoisong.vn/ngay-11-7-ca-mac-covid-19-moi-tang-len-568-so-khoi-benh-gap-11-lan-169220711174141334.htm" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
116 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/bhutan/" style="text-decoration: underline;">
Bhutan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo?fbid=471403518145819&set=pb.100058285231951.-2207520000.." target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
254 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/bosnia-and-herzegovina/" style="text-decoration: underline;">
Bosnia and Herzegovina
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://mcp.gov.ba/publication/read/sluzbene-informacije-o-koronavirusu-covid-19?pageId=97" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,286 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/latvia/" style="text-decoration: underline;">
Latvia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/SPKCentrs/status/1546438299161698305" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
129 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/nepal/" style="text-decoration: underline;">
Nepal
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.mohp.gov.np/#/https://covid19.mohp.gov.np/#/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
21 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/china-macao-sar/" style="text-decoration: underline;">
China, Macao SAR
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.ssm.gov.mo/apps1/PreventCOVID-19/en.aspx#clg22916" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,656 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/philippines/" style="text-decoration: underline;">
the Philippines
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://doh.gov.ph/covid19tracker" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,584 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/united-arab-emirates/" style="text-decoration: underline;">
the United Arab Emirates
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.ncema.gov.ae/en" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
355 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/malta/" style="text-decoration: underline;">
Malta
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://github.com/COVID19-Malta/COVID19-Data/blob/master/COVID-19%20Malta%20-%20Aggregate%20Data%20Set.csv" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,453 new cases
</strong>
and
<strong>
5 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/iran/" style="text-decoration: underline;">
Iran
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://en.irna.ir/news/84818043/5-Iranians-die-due-to-COVID-19-in-past-24-hours" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,681 new cases
</strong>
and
<strong>
7 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/indonesia/" style="text-decoration: underline;">
Indonesia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.go.id/peta-sebaran" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
7,228 new cases
</strong>
and
<strong>
7 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/austria/" style="text-decoration: underline;">
Austria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://info.gesundheitsministerium.gv.at/?re=infektionslage" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
566 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/qatar/" style="text-decoration: underline;">
Qatar
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.moph.gov.qa/EN/Pages/default.aspx" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
477 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/slovenia/" style="text-decoration: underline;">
Slovenia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid-19.sledilnik.org/en/tables" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
226 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/poland/" style="text-decoration: underline;">
Poland
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.gov.pl/web/koronawirus/wykaz-zarazen-koronawirusem-sars-cov-2" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3,097 new cases
</strong>
and
<strong>
38 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/russia/" style="text-decoration: underline;">
Russia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://xn--80aesfpebagmfblc0a.xn--p1ai/information/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
114 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/slovakia/" style="text-decoration: underline;">
Slovakia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid-19.nczisk.sk/en/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
6 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/vanuatu/" style="text-decoration: underline;">
Vanuatu
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=348968244073200&set=pb.100068800826833.-2207520000.." target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
57 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/lithuania/" style="text-decoration: underline;">
Lithuania
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://osp.stat.gov.lt/praejusios-paros-covid-19-statistika" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
246 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/czech-republic/" style="text-decoration: underline;">
Czechia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://onemocneni-aktualne.mzcr.cz/covid-19" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
19,107 new cases
</strong>
and
<strong>
96 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/taiwan/" style="text-decoration: underline;">
Taiwan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.cdc.gov.tw/Bulletin/Detail/coTGSnS1kYnJnUb8SJUFEA?typeid=9" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
9 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/laos/" style="text-decoration: underline;">
Laos
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=421572233339044&set=pb.100064588125919.-2207520000.." target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
83 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/uzbekistan/" style="text-decoration: underline;">
Uzbekistan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://t.me/ssvuz/10131" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,332 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/bolivia/" style="text-decoration: underline;">
Bolivia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/LosTiemposBol/status/1546340356987445249" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
32,129 new cases
</strong>
and
<strong>
12 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/australia/" style="text-decoration: underline;">
Australia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/coronavirus-covid-19-current-situation-and-case-numbers" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.health.nsw.gov.au/Infectious/covid-19/Pages/stats-nsw.aspx" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.dhhs.vic.gov.au/coronavirus-covid-19-daily-update" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.health.qld.gov.au/news-events/doh-media-releases" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://covidlive.com.au/australia" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/cambodia/" style="text-decoration: underline;">
Cambodia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=410023677821068&set=a.307506831406087" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
477 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/kazakhstan/" style="text-decoration: underline;">
Kazakhstan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.coronavirus2020.kz/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
8,061 new cases
</strong>
and
<strong>
10 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/peru/" style="text-decoration: underline;">
Peru
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.dge.gob.pe/portal/docs/tools/coronavirus/coronavirus090722.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
137 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/venezuela/" style="text-decoration: underline;">
Venezuela
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/VTVcanal8/status/1546331322964213761" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
371 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/pakistan/" style="text-decoration: underline;">
Pakistan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/NIH_Pakistan/status/1546312668285378560" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
50,918 new cases
</strong>
and
<strong>
10 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/japan/" style="text-decoration: underline;">
Japan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.mhlw.go.jp/stf/covid-19/kokunainohasseijoukyou.html" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
154,729 new cases
</strong>
and
<strong>
165 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/germany/" style="text-decoration: underline;">
Germany
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://experience.arcgis.com/experience/478220a4c454480e823b17327b2bf1d4/page/Bundesl%C3%A4nder/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,811 new cases
</strong>
and
<strong>
24 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/thailand/" style="text-decoration: underline;">
Thailand
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/informationcovid19/photos/a.106455480972785/600824444869217/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
9,342 new cases
</strong>
and
<strong>
8 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/mexico/" style="text-decoration: underline;">
Mexico
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.gob.mx/cms/uploads/attachment/file/741312/Informe_Tecnico_Diario_COVID-19_2022.07.10.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,240 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/north-korea/" style="text-decoration: underline;">
North Korea
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://kcna.kp/en/article/q/bb32fbb9aefa02a81c751a2cd40b05b9.kcmsf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
12,693 new cases
</strong>
and
<strong>
18 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/south-korea/" style="text-decoration: underline;">
South Korea
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://ncov.mohw.go.kr/bdBoardList_Real.do?brdId=1&brdGubun=13&ncvContSeq=&contSeq=&board_id=&gubun=" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
8,675 new cases
</strong>
and
<strong>
17 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/new-zealand/" style="text-decoration: underline;">
New Zealand
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.health.govt.nz/covid-19-novel-coronavirus/covid-19-data-and-statistics/covid-19-current-cases" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
94 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/china/" style="text-decoration: underline;">
China
</a>
</strong>
The number of new asymptomatic cases, which China counts separately, were
<strong>
335
</strong>
<span class="source">
[
<a class="news_source_a" href="http://www.nhc.gov.cn/xcs/yqtb/202207/c6d1b4762b974220a94ee0f9ed1d095b.shtml" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
100,183 new cases
</strong>
and
<strong>
230 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/us/" style="text-decoration: underline;">
the United States
</a>
</strong>
</li>
</ul>
</div>
</div>
</div>
<button class="btn btn-light date-btn" data-date="2022-07-10" style="margin-top:30px;">
July 10
<i class="fa fa-chevron-circle-down">
</i>
</button>
<div class="newsdate_div" id="newsdate2022-07-10" style="display: none;">
<span class="news_category_title" id="updates">
Updates
</span>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
311 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/madagascar/" style="text-decoration: underline;">
Madagascar
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=348016924175861&set=pcb.348017040842516" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
32 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/guyana/" style="text-decoration: underline;">
Guyana
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=365917509009659&set=pcb.365917665676310" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
29 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/grenada/" style="text-decoration: underline;">
Grenada
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=351699697151783&set=a.181926647462423" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
31 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/cabo-verde/" style="text-decoration: underline;">
Cabo Verde
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/GovernodeCaboVerde" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1 new case
</strong>
in
<strong>
<a href="/coronavirus/country/niue/" style="text-decoration: underline;">
Niue
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.gov.nu/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
21,963 new cases
</strong>
and
<strong>
105 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/brazil/" style="text-decoration: underline;">
Brazil
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid.saude.gov.br/" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://g1.globo.com/saude/coronavirus/noticia/2022/07/10/brasil-registra-45-novas-mortes-por-covid-media-movel-segue-em-alta-ha-17-dias.ghtml" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
37 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/cote-d-ivoire/" style="text-decoration: underline;">
Côte d'Ivoire
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/mshpcmu/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
23 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/senegal/" style="text-decoration: underline;">
Senegal
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/cousenegal/status/1546186274985451520" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
38 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/rwanda/" style="text-decoration: underline;">
Rwanda
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/RwandaHealth/status/1546269888435593216/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
117 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/jamaica/" style="text-decoration: underline;">
Jamaica
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=419363490216587&set=pcb.419363510216585" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
81 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/trinidad-and-tobago/" style="text-decoration: underline;">
Trinidad and Tobago
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://experience.arcgis.com/experience/59226cacd2b441c7a939dca13f832112/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
69 new cases
</strong>
and
<strong>
5 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/uganda/" style="text-decoration: underline;">
Uganda
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/MinofHealthUG/status/1546147788328767489/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
14 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/zimbabwe/" style="text-decoration: underline;">
Zimbabwe
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/MoHCCZim/status/1546014615116681216/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
88 new cases
</strong>
and
<strong>
4 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/kenya/" style="text-decoration: underline;">
Kenya
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/MOH_Kenya/status/1546188616833142785/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
281 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/kuwait/" style="text-decoration: underline;">
Kuwait
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.moh.gov.kw/en/Pages/CasesByDate.aspx" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,479 new cases
</strong>
and
<strong>
9 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/guatemala/" style="text-decoration: underline;">
Guatemala
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://tablerocovid.mspas.gob.gt/tablerocovid/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
96 new cases
</strong>
and
<strong>
13 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/norway/" style="text-decoration: underline;">
Norway
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.vg.no/spesial/corona/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
14,494 new cases
</strong>
and
<strong>
26 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/india/" style="text-decoration: underline;">
India
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.mohfw.gov.in/" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://covid19bharat.org/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
256 new cases
</strong>
and
<strong>
6 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/bulgaria/" style="text-decoration: underline;">
Bulgaria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://coronavirus.bg/bg/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
6,423 new cases
</strong>
and
<strong>
4 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/singapore/" style="text-decoration: underline;">
Singapore
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.moh.gov.sg/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
51 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/mauritania/" style="text-decoration: underline;">
Mauritania
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/MSMauritanie" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
933 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/bahrain/" style="text-decoration: underline;">
Bahrain
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.moh.gov.bh/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1 new case
</strong>
in
<strong>
<a href="/coronavirus/country/mali/" style="text-decoration: underline;">
Mali
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/msdsmali1/photos/a.1773051416257702/3296920280537467/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
129 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/barbados/" style="text-decoration: underline;">
Barbados
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://gisbarbados.gov.bb/blog/covid-19-update-for-july-9/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,092 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/lebanon/" style="text-decoration: underline;">
Lebanon
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://corona.ministryinfo.gov.lb/news/show/12798/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
468 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/qatar/" style="text-decoration: underline;">
Qatar
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.moph.gov.qa/EN/Pages/default.aspx" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
7 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/malawi/" style="text-decoration: underline;">
Malawi
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=352102097102070&set=pcb.352102153768731" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
74 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/ethiopia/" style="text-decoration: underline;">
Ethiopia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/lia_tadesse/status/1546189984306192385/photo/2" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
400 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/montenegro/" style="text-decoration: underline;">
Montenegro
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.ijzcg.me/me/novosti/covid-19-presjek-stanja-10-jul-2022-godine" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
17 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/sri-lanka/" style="text-decoration: underline;">
Sri Lanka
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.epid.gov.lk/web/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
11 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/algeria/" style="text-decoration: underline;">
Algeria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.aps.dz/sante-science-technologie/142723-coronavirus-11-nouveaux-cas-et-aucun-deces" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
948 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/serbia/" style="text-decoration: underline;">
Serbia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.rs/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
38 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/mozambique/" style="text-decoration: underline;">
Mozambique
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.ins.gov.mz/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
9 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/myanmar/" style="text-decoration: underline;">
Myanmar
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://doph.maps.arcgis.com/apps/dashboards/f8fb4ccc3d2d42c7ab0590dbb3fc26b8" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
54 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/togo/" style="text-decoration: underline;">
Togo
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.gouv.tg/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/swaziland/" style="text-decoration: underline;">
Eswatini
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/EswatiniGovern1/status/1546183630136958976/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
757 new cases
</strong>
and
<strong>
4 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/croatia/" style="text-decoration: underline;">
Croatia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.koronavirus.hr/najnovije/35" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,120 new cases
</strong>
and
<strong>
5 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/morocco/" style="text-decoration: underline;">
Morocco
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://www.covidmaroc.ma/Pages/AccueilAR.aspx" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
7,370 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/israel/" style="text-decoration: underline;">
Israel
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://datadashboard.health.gov.il/COVID-19/general" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3,264 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/malaysia/" style="text-decoration: underline;">
Malaysia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covidnow.moh.gov.my/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
8,775 new cases
</strong>
and
<strong>
31 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/chile/" style="text-decoration: underline;">
Chile
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.gob.cl/pasoapaso/cifrasoficiales/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
79,920 new cases
</strong>
and
<strong>
44 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/italy/" style="text-decoration: underline;">
Italy
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://github.com/pcm-dpc/COVID-19/blob/master/schede-riepilogative/regioni/dpc-covid19-ita-scheda-regioni-latest.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
13,306 new cases
</strong>
and
<strong>
28 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/greece/" style="text-decoration: underline;">
Greece
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.gov.gr/covid19-live-analytics/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
57 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/cuba/" style="text-decoration: underline;">
Cuba
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/MINSAPCuba" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,592 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/united-arab-emirates/" style="text-decoration: underline;">
the United Arab Emirates
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.ncema.gov.ae/en" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,383 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/iraq/" style="text-decoration: underline;">
Iraq
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=415678007269242&set=pb.100064811373232.-2207520000.." target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,992 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/china-hong-kong-sar/" style="text-decoration: underline;">
China, Hong Kong SAR
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://chp-dashboard.geodata.gov.hk/covid-19/zh.html" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
76 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/zambia/" style="text-decoration: underline;">
Zambia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=340895811564104&set=pb.100069310625452.-2207520000.." target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,945 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/philippines/" style="text-decoration: underline;">
the Philippines
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://doh.gov.ph/covid19tracker" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
477 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/czech-republic/" style="text-decoration: underline;">
Czechia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://onemocneni-aktualne.mzcr.cz/covid-19" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
814 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/bangladesh/" style="text-decoration: underline;">
Bangladesh
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.bssnews.net/news-flash/71133" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
299 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/saudi-arabia/" style="text-decoration: underline;">
Saudi Arabia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.moh.gov.sa/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
465 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/viet-nam/" style="text-decoration: underline;">
Vietnam
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://suckhoedoisong.vn/ngay-10-7-ca-covid-19-giam-xuong-chi-con-465-thap-nhat-trong-hon-1-nam-qua-169220710174439446.htm" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,576 new cases
</strong>
and
<strong>
6 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/indonesia/" style="text-decoration: underline;">
Indonesia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.go.id/peta-sebaran" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
73 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/lithuania/" style="text-decoration: underline;">
Lithuania
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://experience.arcgis.com/experience/cab84dcfe0464c2a8050a78f817924ca/page/Ap%C5%BEvalga/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,375 new cases
</strong>
and
<strong>
10 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/iran/" style="text-decoration: underline;">
Iran
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://en.irna.ir/news/84817258/10-Iranians-die-to-COVID-19-in-past-24-hours" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
31 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/china-macao-sar/" style="text-decoration: underline;">
China, Macao SAR
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.ssm.gov.mo/apps1/PreventCOVID-19/en.aspx#clg22916" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
517 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/slovenia/" style="text-decoration: underline;">
Slovenia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid-19.sledilnik.org/en/tables" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
405 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/malta/" style="text-decoration: underline;">
Malta
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://github.com/COVID19-Malta/COVID19-Data/blob/master/COVID-19%20Malta%20-%20Aggregate%20Data%20Set.csv" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
104 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/nepal/" style="text-decoration: underline;">
Nepal
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.mohp.gov.np/#/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
30 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/afghanistan/" style="text-decoration: underline;">
Afghanistan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://moph-dw.gov.af/dhis-web-dashboard/#/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
495 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/nauru/" style="text-decoration: underline;">
Nauru
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo?fbid=353532040275973&set=pb.100068575385848.-2207520000.." target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
9,249 new cases
</strong>
and
<strong>
5 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/austria/" style="text-decoration: underline;">
Austria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://info.gesundheitsministerium.gv.at/?re=infektionslage" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
284 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/poland/" style="text-decoration: underline;">
Poland
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.gov.pl/web/koronawirus/wykaz-zarazen-koronawirusem-sars-cov-2" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3,398 new cases
</strong>
and
<strong>
39 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/russia/" style="text-decoration: underline;">
Russia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://xn--80aesfpebagmfblc0a.xn--p1ai/information/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
365 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/slovakia/" style="text-decoration: underline;">
Slovakia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid-19.nczisk.sk/en/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
31,406 new cases
</strong>
and
<strong>
13 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/australia/" style="text-decoration: underline;">
Australia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/coronavirus-covid-19-current-situation-and-case-numbers" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.health.nsw.gov.au/Infectious/covid-19/Pages/stats-nsw.aspx" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.dhhs.vic.gov.au/coronavirus-covid-19-daily-update" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.health.qld.gov.au/news-events/doh-media-releases" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://covidlive.com.au/australia" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
27,841 new cases
</strong>
and
<strong>
71 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/taiwan/" style="text-decoration: underline;">
Taiwan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.cdc.gov.tw/Bulletin/Detail/SOOaMhoLzX1ratMig78r1Q?typeid=9" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
5 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/laos/" style="text-decoration: underline;">
Laos
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=420793560083578&set=pb.100064588125919.-2207520000.." target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
89 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/uzbekistan/" style="text-decoration: underline;">
Uzbekistan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://t.me/ssvuz/10127" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
16 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/cambodia/" style="text-decoration: underline;">
Cambodia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.cdcmoh.gov.kh" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=409347544555348&set=a.307506831406087" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
416 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/kazakhstan/" style="text-decoration: underline;">
Kazakhstan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.coronavirus2020.kz/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,979 new cases
</strong>
and
<strong>
5 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/bolivia/" style="text-decoration: underline;">
Bolivia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/LosTiemposBol/status/1545982653962362881/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
502 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/pakistan/" style="text-decoration: underline;">
Pakistan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/NIH_Pakistan/status/1545947098939625473" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
51,738 new cases
</strong>
and
<strong>
13 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/japan/" style="text-decoration: underline;">
Japan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.mhlw.go.jp/stf/covid-19/kokunainohasseijoukyou.html" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
7,746 new cases
</strong>
and
<strong>
9 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/new-zealand/" style="text-decoration: underline;">
New Zealand
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.health.govt.nz/covid-19-novel-coronavirus/covid-19-data-and-statistics/covid-19-current-cases" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
328 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/venezuela/" style="text-decoration: underline;">
Venezuela
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/delcyrodriguezv/status/1545951520453165059/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,004 new cases
</strong>
and
<strong>
22 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/thailand/" style="text-decoration: underline;">
Thailand
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/informationcovid19/photos/a.106455480972785/600115511606777/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
32,195 new cases
</strong>
and
<strong>
55 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/mexico/" style="text-decoration: underline;">
Mexico
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.gob.mx/cms/uploads/attachment/file/741292/Informe_Tecnico_Diario_COVID-19_2022.07.09.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,470 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/north-korea/" style="text-decoration: underline;">
North Korea
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://kcna.kp/en/article/q/d3d4987dfbfd3ccf136d2a56e8fec9ef.kcmsf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
20,410 new cases
</strong>
and
<strong>
19 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/south-korea/" style="text-decoration: underline;">
South Korea
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://ncov.mohw.go.kr/bdBoardList_Real.do?brdId=1&brdGubun=13&ncvContSeq=&contSeq=&board_id=&gubun=" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
101 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/china/" style="text-decoration: underline;">
China
</a>
</strong>
The number of new asymptomatic cases, which China counts separately, were
<strong>
319
</strong>
<span class="source">
[
<a class="news_source_a" href="http://www.nhc.gov.cn/xcs/yqtb/202207/3dae89268efc44008bc095ea2f569217.shtml" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
103,801 new cases
</strong>
and
<strong>
153 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/us/" style="text-decoration: underline;">
the United States
</a>
</strong>
</li>
</ul>
</div>
</div>
</div>
<button class="btn btn-light date-btn" data-date="2022-07-09" style="margin-top:30px;">
July 9
<i class="fa fa-chevron-circle-down">
</i>
</button>
<div class="newsdate_div" id="newsdate2022-07-09" style="display: none;">
<span class="news_category_title" id="updates">
Updates
</span>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
6,358 new cases
</strong>
and
<strong>
13 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/peru/" style="text-decoration: underline;">
Peru
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.dge.gob.pe/portal/docs/tools/coronavirus/coronavirus080722.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
87 new cases
</strong>
and
<strong>
4 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/mauritius/" style="text-decoration: underline;">
Mauritius
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/GIS.Mauritius/photos/pcb.570013988119580/570013778119601" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
27 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/saint-kitts-and-nevis/" style="text-decoration: underline;">
Saint Kitts and Nevis
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo?fbid=414202307413338&set=a.251201910380046" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
142 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/guyana/" style="text-decoration: underline;">
Guyana
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo?fbid=365205285747548&set=pcb.365205392414204" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
218 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/gabon/" style="text-decoration: underline;">
Gabon
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/Covid19GOUVGA/status/1545363825851072513/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
9 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/eritrea/" style="text-decoration: underline;">
Eritrea
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://shabait.com/2022/07/09/announcement-from-the-ministry-of-health-506/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
75 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/cabo-verde/" style="text-decoration: underline;">
Cabo Verde
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/GovernodeCaboVerde" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
86 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/bahamas/" style="text-decoration: underline;">
Bahamas
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/OurNewsRev/status/1545885869197955073/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
63 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/cote-d-ivoire/" style="text-decoration: underline;">
Côte d'Ivoire
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/mshpcmu/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
64 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/rwanda/" style="text-decoration: underline;">
Rwanda
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/RwandaHealth/status/1545887125261910016/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
40,905 new cases
</strong>
and
<strong>
154 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/brazil/" style="text-decoration: underline;">
Brazil
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid.saude.gov.br/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
120 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/jamaica/" style="text-decoration: underline;">
Jamaica
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo?fbid=418744710278465&set=pcb.418744753611794" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
117 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/trinidad-and-tobago/" style="text-decoration: underline;">
Trinidad and Tobago
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://health.gov.tt/covid-19-daily-update-saturday-july-9th-2022" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
880 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/nigeria/" style="text-decoration: underline;">
Nigeria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo?fbid=405972218234418&set=pcb.405972294901077" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
15 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/zimbabwe/" style="text-decoration: underline;">
Zimbabwe
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/MoHCCZim/status/1545649097830449152/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
204 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/kenya/" style="text-decoration: underline;">
Kenya
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/MOH_Kenya/status/1545805353497108481/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
5,693 new cases
</strong>
and
<strong>
28 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/guatemala/" style="text-decoration: underline;">
Guatemala
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://tablerocovid.mspas.gob.gt/tablerocovid/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
143 new cases
</strong>
and
<strong>
13 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/norway/" style="text-decoration: underline;">
Norway
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.vg.no/spesial/corona/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
894 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/iran/" style="text-decoration: underline;">
Iran
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://en.irna.ir/news/84816459/COVID-19-kills-2-more-Iranians-over-past-24-hours" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1 new case
</strong>
in
<strong>
<a href="/coronavirus/country/saint-vincent-and-the-grenadines/" style="text-decoration: underline;">
Saint Vincent and the Grenadines
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=510647350858011&set=a.391690926086988" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
349 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/san-marino/" style="text-decoration: underline;">
San Marino
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.iss.sm/on-line/home.html" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/mali/" style="text-decoration: underline;">
Mali
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/msdsmali1/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3,539 new cases
</strong>
and
<strong>
45 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/russia/" style="text-decoration: underline;">
Russia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://xn--80aesfpebagmfblc0a.xn--p1ai/information/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
361 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/bulgaria/" style="text-decoration: underline;">
Bulgaria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://coronavirus.bg/bg/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
202 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/barbados/" style="text-decoration: underline;">
Barbados
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://gisbarbados.gov.bb/blog/covid-19-update-for-friday-july-8/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
980 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/bahrain/" style="text-decoration: underline;">
Bahrain
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://www.moh.gov.bh" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
20,441 new cases
</strong>
and
<strong>
42 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/india/" style="text-decoration: underline;">
India
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.mohfw.gov.in/" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://covid19bharat.org/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
18,214 new cases
</strong>
and
<strong>
26 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/greece/" style="text-decoration: underline;">
Greece
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.gov.gr/covid19-live-analytics/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,799 new cases
</strong>
and
<strong>
8 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/malaysia/" style="text-decoration: underline;">
Malaysia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covidnow.moh.gov.my/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
6,286 new cases
</strong>
and
<strong>
11 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/israel/" style="text-decoration: underline;">
Israel
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://datadashboard.health.gov.il/COVID-19/general" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,001 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/albania/" style="text-decoration: underline;">
Albania
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://coronavirus.al/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
66 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/monaco/" style="text-decoration: underline;">
Monaco
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.mc/liens-utiles/chiffres-cles/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
8,659 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/singapore/" style="text-decoration: underline;">
Singapore
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.moh.gov.sg/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/sierra-leone/" style="text-decoration: underline;">
Sierra Leone
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/SierraLeonesNewsAgency" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1 new case
</strong>
in
<strong>
<a href="/coronavirus/country/montserrat/" style="text-decoration: underline;">
Montserrat
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo?fbid=357690383176455&set=a.308378171441010" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
18 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/algeria/" style="text-decoration: underline;">
Algeria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.aps.dz/sante-science-technologie/142705-coronavirus-18-nouveaux-cas-aucun-deces" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
114 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/ethiopia/" style="text-decoration: underline;">
Ethiopia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/lia_tadesse/status/1545843822080495616/photo/2" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
8 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/swaziland/" style="text-decoration: underline;">
Eswatini
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/EswatiniGovern1/status/1545821811644006400/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
77 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/mozambique/" style="text-decoration: underline;">
Mozambique
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.ins.gov.mz/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
16 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/myanmar/" style="text-decoration: underline;">
Myanmar
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://doph.maps.arcgis.com/apps/dashboards/f8fb4ccc3d2d42c7ab0590dbb3fc26b8" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
371 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/montenegro/" style="text-decoration: underline;">
Montenegro
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.ijzcg.me/me/novosti/covid-19-presjek-stanja-09-jul-2022-godine" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
21 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/sri-lanka/" style="text-decoration: underline;">
Sri Lanka
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.epid.gov.lk/web/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,476 new cases
</strong>
and
<strong>
4 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/morocco/" style="text-decoration: underline;">
Morocco
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://www.covidmaroc.ma/Pages/AccueilAR.aspx" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,281 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/serbia/" style="text-decoration: underline;">
Serbia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.rs/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
99,923 new cases
</strong>
and
<strong>
93 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/italy/" style="text-decoration: underline;">
Italy
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://github.com/pcm-dpc/COVID-19/blob/master/schede-riepilogative/regioni/dpc-covid19-ita-scheda-regioni-latest.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
9,655 new cases
</strong>
and
<strong>
30 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/chile/" style="text-decoration: underline;">
Chile
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.gob.cl/pasoapaso/cifrasoficiales/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
38 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/cuba/" style="text-decoration: underline;">
Cuba
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/MINSAPCuba" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,995 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/china-hong-kong-sar/" style="text-decoration: underline;">
China, Hong Kong SAR
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://chp-dashboard.geodata.gov.hk/covid-19/zh.html" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,253 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/brunei-darussalam/" style="text-decoration: underline;">
Brunei Darussalam
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.who.int/region/wpro/country/bn" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
26 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/senegal/" style="text-decoration: underline;">
Senegal
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/cousenegal/status/1545751795238068225/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
939 new cases
</strong>
and
<strong>
3 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/bangladesh/" style="text-decoration: underline;">
Bangladesh
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://dghs-dashboard.com/pages/covid19.php" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
4,017 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/iraq/" style="text-decoration: underline;">
Iraq
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo?fbid=414958210674555&set=pb.100064811373232.-2207520000.." target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
353 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/saudi-arabia/" style="text-decoration: underline;">
Saudi Arabia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.moh.gov.sa/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/marshall-islands/" style="text-decoration: underline;">
the Marshall Islands
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=407937571363853&set=a.250964870394458" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
64 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/uganda/" style="text-decoration: underline;">
Uganda
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/MinofHealthUG/status/1545662926362648576/photo/1" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
536 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/qatar/" style="text-decoration: underline;">
Qatar
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.moph.gov.qa/EN/Pages/default.aspx" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,752 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/philippines/" style="text-decoration: underline;">
the Philippines
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://doh.gov.ph/covid19tracker" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
3 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/afghanistan/" style="text-decoration: underline;">
Afghanistan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://moph-dw.gov.af/dhis-web-dashboard/#/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
24 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/china-macao-sar/" style="text-decoration: underline;">
China, Macao SAR
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.ssm.gov.mo/apps1/PreventCOVID-19/en.aspx#clg22916" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
9,654 new cases
</strong>
and
<strong>
37 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/austria/" style="text-decoration: underline;">
Austria
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://info.gesundheitsministerium.gv.at/?re=infektionslage" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
72 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/nepal/" style="text-decoration: underline;">
Nepal
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.mohp.gov.np/#/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,450 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/slovenia/" style="text-decoration: underline;">
Slovenia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid-19.sledilnik.org/en/tables" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,488 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/croatia/" style="text-decoration: underline;">
Croatia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.koronavirus.hr/najnovije/35" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
471 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/malta/" style="text-decoration: underline;">
Malta
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://github.com/COVID19-Malta/COVID19-Data/blob/master/COVID-19%20Malta%20-%20Aggregate%20Data%20Set.csv" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,609 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/united-arab-emirates/" style="text-decoration: underline;">
the United Arab Emirates
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.ncema.gov.ae/en" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,705 new cases
</strong>
and
<strong>
4 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/indonesia/" style="text-decoration: underline;">
Indonesia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid19.go.id/peta-sebaran" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
45 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/nauru/" style="text-decoration: underline;">
Nauru
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo?fbid=352808480348329&set=pb.100068575385848.-2207520000.." target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,264 new cases
</strong>
and
<strong>
4 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/poland/" style="text-decoration: underline;">
Poland
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.gov.pl/web/koronawirus/wykaz-zarazen-koronawirusem-sars-cov-2" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
910 new cases
</strong>
and
<strong>
2 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/slovakia/" style="text-decoration: underline;">
Slovakia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://covid-19.nczisk.sk/en/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
531 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/lithuania/" style="text-decoration: underline;">
Lithuania
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://experience.arcgis.com/experience/cab84dcfe0464c2a8050a78f817924ca/page/Ap%C5%BEvalga/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,837 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/czech-republic/" style="text-decoration: underline;">
Czechia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://onemocneni-aktualne.mzcr.cz/covid-19" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
28,130 new cases
</strong>
and
<strong>
94 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/taiwan/" style="text-decoration: underline;">
Taiwan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.cdc.gov.tw/Bulletin/Detail/4xM6-gHEFFotTrBfF5fCkg?typeid=9" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
98 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/uzbekistan/" style="text-decoration: underline;">
Uzbekistan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://t.me/ssvuz/10124" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
17 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/cambodia/" style="text-decoration: underline;">
Cambodia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.cdcmoh.gov.kh" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/photo/?fbid=408650731291696&set=a.307506831406087" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
37,158 new cases
</strong>
and
<strong>
76 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/australia/" style="text-decoration: underline;">
Australia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/coronavirus-covid-19-current-situation-and-case-numbers" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.health.nsw.gov.au/Infectious/covid-19/Pages/stats-nsw.aspx" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.dhhs.vic.gov.au/coronavirus-covid-19-daily-update" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://www.health.qld.gov.au/news-events/doh-media-releases" target="_blank">
source
</a>
]
</span>
<span class="source">
[
<a class="news_source_a" href="https://covidlive.com.au/australia" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
732 new cases
</strong>
and
<strong>
7 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/pakistan/" style="text-decoration: underline;">
Pakistan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/NIH_Pakistan/status/1545588306473324546" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,695 new cases
</strong>
and
<strong>
1 new death
</strong>
in
<strong>
<a href="/coronavirus/country/bolivia/" style="text-decoration: underline;">
Bolivia
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://twitter.com/LosTiemposBol/status/1545601223327420416" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
49,557 new cases
</strong>
and
<strong>
26 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/japan/" style="text-decoration: underline;">
Japan
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.mhlw.go.jp/stf/covid-19/kokunainohasseijoukyou.html" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
2,084 new cases
</strong>
and
<strong>
15 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/thailand/" style="text-decoration: underline;">
Thailand
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.facebook.com/informationcovid19/photos/a.106455480972785/599394195012242/" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
32,569 new cases
</strong>
and
<strong>
46 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/mexico/" style="text-decoration: underline;">
Mexico
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.gob.mx/cms/uploads/attachment/file/741245/Informe_Tecnico_Diario_COVID-19_2022.07.08.pdf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
1,590 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/north-korea/" style="text-decoration: underline;">
North Korea
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://kcna.kp/en/article/q/a0a7c8e06de56affc1f3179f507a3244.kcmsf" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
20,263 new cases
</strong>
and
<strong>
19 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/south-korea/" style="text-decoration: underline;">
South Korea
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="http://ncov.mohw.go.kr/bdBoardList_Real.do?brdId=1&brdGubun=13&ncvContSeq=&contSeq=&board_id=&gubun=" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
9,536 new cases
</strong>
and
<strong>
21 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/new-zealand/" style="text-decoration: underline;">
New Zealand
</a>
</strong>
<span class="source">
[
<a class="news_source_a" href="https://www.health.govt.nz/covid-19-novel-coronavirus/covid-19-data-and-statistics/covid-19-current-cases" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
112 new cases
</strong>
in
<strong>
<a href="/coronavirus/country/china/" style="text-decoration: underline;">
China
</a>
</strong>
The number of new asymptomatic cases, which China counts separately, were
<strong>
343
</strong>
<span class="source">
[
<a class="news_source_a" href="http://www.nhc.gov.cn/xcs/yqtb/202207/0f21c58509ae478f84aaa7a58357b09e.shtml" target="_blank">
source
</a>
]
</span>
</li>
</ul>
</div>
</div>
<div class="news_post">
<div class="news_body">
<ul class="news_ul">
<li class="news_li">
<strong>
130,899 new cases
</strong>
and
<strong>
227 new deaths
</strong>
in
<strong>
<a href="/coronavirus/country/us/" style="text-decoration: underline;">
the United States
</a>
</strong>
</li>
</ul>
</div>
</div>
</div>
<div style="width:100%; text-align:center;margin: 0 auto;">
<a class="load-more__btn" data-days_count="7" href="javascript:void(0)" id="lm_2022-07-09" style="">
<button class="btn">
View More News
<img alt="view more" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAADAFBMVEX///90dHRsbGttbWxtbWtzc3Jqamlqamhra2lra2ppaWhnZ2ZpaWdmZmVwcHBoaGZvb25sbGptbW12dnZubm51dXV2dnVwcG9zc3Nzc3R3d3doaGdycnJnZ2VxcXF1dXZ0dHVvb28AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF9IACodnd2d3UAAAAAAAABAAAAAAAtRCHzwHcAABkAAAAAADAAAAAAAAAAAAAtRHgAAHcAAAAAAAAAAAAAAABMAAB2d3YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvFCwVLHc0ca8AGfQQAID0YMA4ABkAGfQAAAAAgAAAAAAAAAAAAAUAYAAAAAAAAAAwT6ReqHcABvgAxQAAAAD0NAA4ABkAGfQAAAAAAAAAAAAAAAAAAGQAAAAYAAAAzj8AABgAAAAMAAAAGAD4VvheqAYIBvgAzj/FAAAvKAD8p1MAGfMsUPaeyXcAdy0AAAAAAAAAAAAAAAAAAAAAAAC7KAAspgh2auQZ9KDkTQC3dmoAAAAAAAAAAABrwAB2auQAAGAAAAAFAAAAAAAAAIAAgAAAwBAAAAAACIgAAAADAAAAAABCAEBeqAAABvgAAAD4XqgAAAYAAAAAAAAAArEAAAAYAAAAAAAAAAD0QABAABkAAAAAAAD0kAAAABkAAAAAAAAAAAAAAAAAAABmABBmZmYMOSAAAAAAAAIBAQA4ABkydFcZ9NDhHgAAdmoAAAAAAAL0uAAAABkAAAAAABgAgAAAAAAAAAAAAAAAAADEi2NXAAAAAXRSTlMAQObYZgAAAAFiS0dEi/JvR+AAAAAJcEhZcwAALiMAAC4jAXilP3YAAACPSURBVHja5ZJBDoAgDATdg1dCVESNQfj/J4USlSrgXXujM5Ql0DR/KoF7R7JO16PlfFAY07UGJs7nhe/gxpOHFJfh5y+5nIeR46u4jMi1SbnZoL1hgxG5U8qlxgQ4mrE6yicVv9VpWABZToamGQV+GnR+jgfDUi5Z4McMz1F6U28MNU6GrXEyUP85b/yrtQMhJwlGqKwmOAAAAABJRU5ErkJggg==" style="width:16px;"/>
</button>
</a>
</div>
<div style="width:100%;text-align:center; ">
<div class="loading lds-ellipsis" style="display: none;">
<div>
</div>
<div>
</div>
<div>
</div>
<div>
</div>
</div>
</div>
</div>
</div>
<style>
.lds-ellipsis {
margin: 0 auto;
display: none;
position: relative;
width: 74px;
height: 30px;
}
.lds-ellipsis div {
position: absolute;
top: 10px;
width: 13px;
height: 13px;
border-radius: 50%;
background: #777;
animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
left: 8px;
animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
left: 8px;
animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
left: 32px;
animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
left: 56px;
animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
0% {
transform: scale(0);
}
100% {
transform: scale(1);
}
}
@keyframes lds-ellipsis3 {
0% {
transform: scale(1);
}
100% {
transform: scale(0);
}
}
@keyframes lds-ellipsis2 {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(24px, 0);
}
}
</style>
<script type="text/javascript">
$(document).ready(function() {
if ($('.news_post').length <= 0) {
$('#news').hide();
}
$(document).on('click', '.load-more__btn', function() {
var ID = $(this).attr('id');
var country = $(this).attr('data-country');
var region = $(this).attr('data-region');
var days_count = $(this).attr('data-days_count');
$('.load-more__btn').hide();
$('.loading').css('display', 'inline-block');
$.ajax({
type: 'POST',
url: '/coronavirus/news-block/news_main_updates.php',
data: 'fd=' + ID + (country ? '&country=' + country : '') + (region ? '®ion=' + region : '') + (days_count ? '&days_count=' + days_count : ''),
success: function(html) {
$(ID).remove();
$('.loading').remove();
$('#news_block').append(html);
dateButtonsEvents();
}
,
error: function(objAJAXRequest, strError) {
$('.loading').remove();
$('.load-more__btn').show();
}
});
});
});
function dateButtonsEvents() {
$('.date-btn').prop("onclick", null).off("click");
$('.date-btn').on('click', function() {
var n = $('#newsdate' + $(this).data('date'));
if (n.is(':visible')) {
n.slideUp('fast');
$(this).find('i').removeClass('fa-chevron-circle-up');
$(this).find('i').addClass('fa-chevron-circle-down');
} else {
n.slideDown('fast');
$(this).find('i').removeClass('fa-chevron-circle-down');
$(this).find('i').addClass('fa-chevron-circle-up');
}
});
}
$(document).ready(function() {
dateButtonsEvents();
});
</script>
<div align="center" style="margin-top:40px; margin-bottom:40px; font-size:20px; padding:20px; background-color: #efefef">
<em>
Archived
</em>
:
<br/>
<br/>
<a href="jan-2020-news-updates-covid19/">
January 2020
</a>
-
<a href="feb-2020-news-updates-covid19/">
February 2020
</a>
</div>
<div style="margin-top:40px; margin-bottom:40px; text-align:center">
<div align="center" id="worldometers_300x250_Mobile_2">
<script data-cfasync="false" type="text/javascript">
freestar.config.enabled_slots.push({
placementName: "worldometers_300x250_Mobile_2",
slotId: "worldometers_300x250_Mobile_2"
});
</script>
</div>
</div>
<script defer="" src="/js/countries.js?v=1_2">
</script>
<script>
var reports_types = {"cases":"Cases","deaths":"Deaths","cured":"Recoveries","serious":"Critical","tests":"Tests"};
</script>
<link href="/css/selectize.bootstrap3.css" rel="stylesheet"/>
<style>
.antispam {
display: none;
}
.case_number {
display: inline-block;
width: 8rem;
/*-moz-appearance: textfield;
-webkit-appearance: none;
margin: 0;*/
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
/* display: none; <- Crashes Chrome on hover */
-webkit-appearance: none;
margin: 0;
/* <-- Apparently some margin are still there even though it's hidden */
}
input[type=number] {
-moz-appearance: textfield;
/* Firefox */
}
.modal {
max-height: calc(100vh);
max-width: calc(100vw);
overflow-y: auto;
}
body.modal-open {
overflow: hidden;
position: fixed;
width: 100%;
}
</style>
<script>
$(document).ready(function() {
if (window.location.href.indexOf('#contactModalForm') != -1) {
$('#contactModalForm').modal('show');
}
$('#countries_select').selectize({
persist: false,
labelField: 'entity_medium_article',
valueField: 'cca3',
searchField: [
'cca3', 'entity_name', 'entity_medium_article', 'synonyms'
],
options: countries_options,
onChange: function(value, isOnInitialize) {
if (!isOnInitialize) {
if (value == 'USA') {
location.href = 'country/us/#contactModalForm';
}
}
}
});
$("a[href='/contact/']").after('| <a href="/report_us/">report coronavirus cases</a>');
$("a[href='/report_us/']").on('click', function() {
$('#contactModalForm').modal('show');
var $modal = $('.modal-dialog'),
$backdrop = $('.modal-backdrop'),
el_height = $modal.innerHeight();
$backdrop.css({
height: el_height + 20,
minHeight: '100%',
margin: 'auto'
});
return false;
});
});
</script>
<div id="cf_main">
<div class="modal" id="contactModalForm" role="dialog" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button class="close" data-dismiss="modal" type="button">
<span aria-hidden="true">
×
</span>
<span class="sr-only">
Close
</span>
</button>
<h4 class="modal-title">
Report Changes in Numbers
</h4>
</div>
<div class="modal-body">
<form action="contact_submit.php" id="contactForm" role="form">
<input name="contact_form" type="hidden" value="1"/>
<div class="form-group">
<label class="form_labels" for="countries_select" style="display: block;">
Country:
</label>
<select class="form-control" id="countries_select" name="countries_select" placeholder="Select country">
</select>
</div>
<div class="form-group">
<label class="form_labels" for="countries_select" style="display: block;">
Fill in any value you want to report (all fields are optional):
</label>
</div>
<div class="form-group row">
<div class="col-md-3">
<label class="form_labels" for="new_cases" style="line-height:34px;">
New Cases:
</label>
</div>
<div class="col-md-9" style="padding-left:0px;margin-left:0px;">
+
<input class="form-control case_number" id="new_cases" name="new_cases" onkeypress="return event.charCode >= 48 && event.charCode <= 57" type="number"/>
=
<input class="form-control case_number" id="total_cases" name="total_cases" onkeypress="return event.charCode >= 48 && event.charCode <= 57" type="number"/>
total cases
</div>
</div>
<div class="form-group row">
<div class="col-md-3">
<label class="form_labels" for="new_deaths" style="line-height:34px;">
New Deaths:
</label>
</div>
<div class="col-md-9" style="padding-left:0px;margin-left:0px;">
+
<input class="form-control case_number" id="new_deaths" name="new_deaths" onkeypress="return event.charCode >= 48 && event.charCode <= 57" type="number"/>
=
<input class="form-control case_number" id="total_deaths" name="total_deaths" onkeypress="return event.charCode >= 48 && event.charCode <= 57" type="number"/>
total deaths
</div>
</div>
<div class="form-group row">
<div class="col-md-3">
<label class="form_labels" for="new_cured" style="line-height:34px;">
New Recoveries:
</label>
</div>
<div class="col-md-9" style="padding-left:0px;margin-left:0px;">
+
<input class="form-control case_number" id="new_cured" name="new_cured" onkeypress="return event.charCode >= 48 && event.charCode <= 57" type="number"/>
=
<input class="form-control case_number" id="total_cured" name="total_cured" onkeypress="return event.charCode >= 48 && event.charCode <= 57" type="number"/>
total cured
</div>
</div>
<div class="form-group row">
<div class="col-md-3">
<label class="form_labels" for="new_serious" style="line-height:34px;">
New Critical:
</label>
</div>
<div class="col-md-9" style="padding-left:0px;margin-left:0px;">
+
<input class="form-control case_number" id="new_serious" name="new_serious" onkeypress="return event.charCode >= 48 && event.charCode <= 57" type="number"/>
=
<input class="form-control case_number" id="total_serious" name="total_serious" onkeypress="return event.charCode >= 48 && event.charCode <= 57" type="number"/>
total serious
</div>
</div>
<div class="form-group row">
<div class="col-md-3">
<label class="form_labels" for="total_tests" style="line-height:34px;">
Total Tests:
</label>
</div>
<div class="col-md-9" style="padding-left:0px;margin-left:0px;">
<span style="color:#fff;">
+
</span>
<input class="form-control case_number" id="total_tests" name="total_tests" onkeypress="return event.charCode >= 48 && event.charCode <= 57" type="number"/>
</div>
</div>
<div class="form-group">
<label class="form_labels" for="url">
Source URL (where to verify values):
</label>
<input class="form-control" id="url" name="url" placeholder="Source URL" type="text"/>
<p class="antispam">
<input name="url2"/>
</p>
</div>
<div class="form-group">
<label class="form_labels" for="url_tests">
URL to verify test performed:
</label>
<input class="form-control" id="url_tests" name="url_tests" placeholder="Test verify URL" type="text"/>
</div>
<div class="form-group">
<label class="form_labels" for="message">
Other info:
</label>
<textarea class="form-control" id="message" name="message" placeholder="Comment" rows="5"></textarea>
</div>
<div class="form-group">
<label class="form_labels" for="email">
Your email (optional):
</label>
<input class="form-control" id="email" name="email" placeholder="Email" type="text"/>
</div>
</form>
</div>
<div class="modal-footer">
<p class="statusMsg">
</p>
<button class="btn btn-primary submitBtn" onclick="showConfirmForm(event)" type="button">
Send
</button>
</div>
</div>
</div>
</div>
<div class="modal" id="contactModalFormConfirm" role="dialog" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button class="close" data-dismiss="modal" type="button">
<span aria-hidden="true">
×
</span>
<span class="sr-only">
Close
</span>
</button>
<h4 class="modal-title">
Check before sending:
</h4>
</div>
<div class="modal-body">
<div id="confirmation_page">
<div id="confirm_email">
</div>
<div id="confirm_country">
</div>
<div id="confirm_new_cases">
</div>
<div id="confirm_total_cases">
</div>
<div id="confirm_new_deaths">
</div>
<div id="confirm_total_deaths">
</div>
<div id="confirm_new_cured">
</div>
<div id="confirm_total_cured">
</div>
<div id="confirm_new_serious">
</div>
<div id="confirm_total_serious">
</div>
<div id="confirm_total_tests">
</div>
<div id="confirm_url">
</div>
<div id="confirm_url_tests">
</div>
<div id="confirm_message">
</div>
</div>
</div>
<div class="modal-footer">
<button class="btn btn-default" onclick="backToContactForm(event)" type="button">
No, back to form
</button>
<button class="btn btn-primary submitBtn" onclick="submitContactForm(event)" type="button">
Yes, SEND
</button>
</div>
</div>
</div>
</div>
</div>
<script defer="" src="/js/selectize.min.js">
</script>
<script>
function validateEmail(email) {
var re = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
return re.test(email);
}
function scrollIntoViewIfNeeded(target) {
var rect = target.getBoundingClientRect();
if (rect.bottom > window.innerHeight) {
target.scrollIntoView(false);
}
if (rect.top < 0) {
target.scrollIntoView();
}
}
function showErrorMessage(msg) {
scrollIntoViewIfNeeded($(".statusMsg")[0]);
$('.statusMsg').html('<span style="color:red;">' + msg + '</span>').fadeOut(200).fadeIn(200);
}
function showConfirmForm(e) {
var form = $('#contactForm');
var all_empty = true;
if (form.find('#countries_select option:selected').text() != '') {
all_empty = false;
$('#confirm_country').html('<strong>Country: </strong>' + form.find('#countries_select option:selected').text());
} else {
showErrorMessage('"Country" field is required');
return false;
$('#confirm_country').html('');
}
Object.keys(reports_types).forEach(function(report_type) {
var report_type_label = reports_types[report_type];
if (form.find('#new_' + report_type).length > 0) {
if (form.find('#new_' + report_type).val() != '') {
all_empty = false;
$('#confirm_new_' + report_type).html('<strong>New ' + report_type_label +
': </strong>' + form.find('#new_' + report_type).val());
} else {
$('#confirm_new_' + report_type).html('');
}
}
if (form.find('#total_' + report_type).length > 0) {
if (form.find('#total_' + report_type).val() != '') {
all_empty = false;
$('#confirm_total_' + report_type).html('<strong>Total ' + report_type_label +
': </strong>' + form.find('#total_' + report_type).val());
} else {
$('#confirm_total_' + report_type).html('');
}
}
});
if (form.find('#email').val() != '') {
form.find('#email').val(form.find('#email').val().trim());
if (!validateEmail(form.find('#email').val())) {
showErrorMessage('Bad email address format, please fix');
return false;
}
all_empty = false;
$('#confirm_email').html('<strong>Email: </strong>' + form.find('#email').val());
} else {
$('#confirm_email').html('');
}
if (form.find('#url').val() != '') {
all_empty = false;
$('#confirm_url').html('<strong>URL: </strong>' + form.find('#url').val());
} else {
showErrorMessage('"Source URL" field is required');
return false;
$('#confirm_url').html('');
}
if (form.find('#url_tests').val() != '') {
all_empty = false;
$('#confirm_url_tests').html('<strong>URL to verify tests: </strong>' + form.find('#url_tests').val());
} else {
$('#confirm_url_tests').html('');
}
if (form.find('#message').val() != '') {
all_empty = false;
$('#confirm_message').html('<strong>Comment: </strong>' + form.find('#message').val());
} else {
$('#confirm_message').html('');
}
e.preventDefault();
$('#contactModalForm').modal('hide');
$('.statusMsg').html('');
$('#contactModalFormConfirm').modal('show');
}
// back to contact form from confirm form
function backToContactForm(e) {
e.preventDefault();
$('#contactModalFormConfirm').modal('hide');
$('#contactModalForm').modal('show');
}
// clear contact form values
function resetContactForm() {
/*$('#contactForm')[0].reset();*/
$(':input', '#contactForm')
.not(':button', ':submit', ':reset', ':hidden', '#email')
.val('')
.prop('checked', false)
.prop('selected', false);
if ($("#countries_select")[0]) {
$("#countries_select")[0].selectize.clear();
}
$(".statusMsg").html('');
}
function submitContactForm(e) {
var re = /^[0-9]*$/i;
/* var new_cases = $('#new_cases').val();
var total_cases = $('#total_cases').val();
if (!re.test(new_cases)) {
alert('New cases should have numbers only.');
new_cases.focus();
return false;
} else if (!re.test(total_cases)) {
alert('Total cases should have numbers only.');
total_cases.focus();
return false;
}*/
e.preventDefault();
var form = $('#contactForm');
var url = form.attr('action');
$.ajax({
type: "POST",
url: url,
data: form.serialize(),
success: function(data) {
$('#contactModalFormConfirm').modal('hide');
resetContactForm();
alert('Thank you');
window.location.reload(false);
}
});
}
</script>
</div>
</div>
<div class="col-md-4 adright">
<div style="padding-left:25px">
<script async="" src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js">
</script>
<ins class="adsbygoogle" data-ad-client="ca-pub-3701697624350410" data-ad-slot="2348228155" style="display:inline-block;width:300px;height:600px">
</ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div style="margin-top:40px; margin-bottom:40px; padding-left:25px">
<script async="" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js">
</script>
<ins class="adsbygoogle" data-ad-client="ca-pub-3701697624350410" data-ad-format="auto" data-ad-slot="4941262260" data-full-width-responsive="true" style="display:block">
</ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div style="margin-top:40px; margin-bottom:40px; padding-left:25px">
<script async="" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js">
</script>
<ins class="adsbygoogle" data-ad-client="ca-pub-3701697624350410" data-ad-format="auto" data-ad-slot="4941262260" data-full-width-responsive="true" style="display:block">
</ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div style="margin-top:40px; margin-bottom:40px; padding-left:25px">
<script async="" src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js">
</script>
<ins class="adsbygoogle" data-ad-client="ca-pub-3701697624350410" data-ad-slot="9468680730" style="display:inline-block;width:160px;height:600px">
</ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div style="margin-top:80px; padding-left:40px; margin-bottom:40px">
<script async="" src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js">
</script>
<ins class="adsbygoogle" data-ad-client="ca-pub-3701697624350410" data-ad-slot="2348228155" style="display:inline-block;width:300px;height:600px">
</ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div style="margin-top:80px; padding-left:40px; margin-bottom:40px">
<script async="" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js">
</script>
<ins class="adsbygoogle" data-ad-client="ca-pub-3701697624350410" data-ad-format="auto" data-ad-slot="4941262260" data-full-width-responsive="true" style="display:block">
</ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
</div>
</div>
<script async="" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js">
</script>
<ins class="adsbygoogle" data-ad-client="ca-pub-3701697624350410" data-ad-format="auto" data-ad-slot="6995709761" data-full-width-responsive="true" style="display:block">
</ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<div style="margin-top:40px">
</div>
<script async="" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js">
</script>
<ins class="adsbygoogle" data-ad-client="ca-pub-3701697624350410" data-ad-format="auto" data-ad-slot="1743383089" data-full-width-responsive="true" style="display:block">
</ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<footer>
<div class="footerlinks">
<div style="margin-bottom:20px">
<a href="/">
<img border="0" class="img-footer" src="/img/worldometers-logo-footer.png"/>
</a>
</div>
<a href="/about/">
about
</a>
|
<a href="/faq/">
faq
</a>
|
<a href="/languages/">
languages
</a>
|
<a href="/contact/">
contact
</a>
</div>
<ul class="list-inline text-center socialbuttons">
<li>
<a data-placement="bottom" data-toggle="tooltip" href="/newsletter-subscribe/" title="Newsletter">
<i class="fa fa-bullhorn fa-round">
</i>
</a>
</li>
<li>
<a href="https://twitter.com/Worldometers">
<i class="fa fa-twitter fa-round">
</i>
</a>
</li>
<li>
<a href="https://www.facebook.com/Worldometers.info">
<i class="fa fa-facebook fa-round">
</i>
</a>
</li>
</ul>
<div class="copy">
© Copyright Worldometers.info - All rights reserved -
<a href="/disclaimer/">
Disclaimer & Privacy Policy
</a>
</div>
</footer>
<script async="async" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-54615fa823b2af68" type="text/javascript">
</script>
<script type="text/javascript">
(function() {
function async_load(script_url){
var protocol = ('https:' == document.location.protocol ? 'https://' : 'http://');
var s = document.createElement('script'); s.src = protocol + script_url;
var x = document.getElementsByTagName('script')[0]; x.parentNode.insertBefore(s, x);
}
bm_website_code = '7849CD9451D34931';
jQuery(document).ready(function(){async_load('asset.pagefair.com/measure.min.js')});
jQuery(document).ready(function(){async_load('asset.pagefair.net/ads.min.js')});
})();
</script>
<script type="text/javascript">
var _qevents = _qevents || [];
(function() {
var elem = document.createElement('script');
elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") + ".quantserve.com/quant.js";
elem.async = true;
elem.type = "text/javascript";
var scpt = document.getElementsByTagName('script')[0];
scpt.parentNode.insertBefore(elem, scpt);
})();
_qevents.push({
qacct:"p-Pd9JxUkvV0m7q"
});
</script>
<noscript>
<div style="display:none;">
<img alt="Quantcast" border="0" height="1" src="//pixel.quantserve.com/pixel/p-Pd9JxUkvV0m7q.gif" width="1">
</img>
</div>
</noscript>
</link>
</body>
</html>
tabela = soup.find('table', id = 'main_table_countries_today')
print(tabela)
<table class="table table-bordered table-hover main_table_countries" id="main_table_countries_today" style="width:100%;margin-top: 0px !important;display:none;">
<thead>
<tr>
<th width="1%">#</th>
<th width="100">Country,<br>Other</br></th>
<th width="20">Total<br>Cases</br></th>
<th width="30">New<br>Cases</br></th>
<th width="30">Total<br>Deaths</br></th>
<th width="30">New<br>Deaths</br></th>
<th width="30">Total<br>Recovered</br></th>
<th width="30">New<br>Recovered</br></th>
<th width="30">Active<br/>Cases</th>
<th width="30">Serious,<br/>Critical</th>
<th width="30">Tot Cases/<br/>1M pop</th>
<th width="30">Deaths/<br/>1M pop</th>
<th width="30">Total<br/>Tests</th>
<th width="30">Tests/<br/>
<nobr>1M pop</nobr>
</th>
<th width="30">Population</th>
<th style="display:none" width="30">Continent</th>
<th width="30">1 Case<br/>every X ppl</th><th width="30">1 Death<br/>every X ppl</th><th width="30">1 Test<br/>every X ppl</th>
<th width="30">New Cases/1M pop</th>
<th width="30">New Deaths/1M pop</th>
<th width="30">Active Cases/1M pop</th>
</tr>
</thead>
<tbody>
<tr class="total_row_world row_continent" data-continent="North America" style="display: none">
<td></td>
<td style="text-align:left;">
<nobr>North America</nobr>
</td>
<td>107,794,852</td>
<td>+34,885</td>
<td>1,494,690</td>
<td>+74</td>
<td>100,746,314</td>
<td>+19,748</td>
<td>5,553,848</td>
<td>9,502</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="North America" style="display:none;">North America</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="total_row_world row_continent" data-continent="Asia" style="display: none">
<td></td>
<td style="text-align:left;">
<nobr>Asia</nobr>
</td>
<td>163,765,129</td>
<td>+41,272</td>
<td>1,442,533</td>
<td>+39</td>
<td>157,775,292</td>
<td>+6,032</td>
<td>4,547,304</td>
<td>11,043</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Asia" style="display:none;">Asia</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="total_row_world row_continent" data-continent="South America" style="display: none">
<td></td>
<td style="text-align:left;">
<nobr>South America</nobr>
</td>
<td>60,877,685</td>
<td></td>
<td>1,309,819</td>
<td></td>
<td>57,886,539</td>
<td>+10,093</td>
<td>1,681,327</td>
<td>10,454</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="South America" style="display:none;">South America</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="total_row_world row_continent" data-continent="Europe" style="display: none">
<td></td>
<td style="text-align:left;">
<nobr>Europe</nobr>
</td>
<td>209,911,879</td>
<td></td>
<td>1,863,623</td>
<td></td>
<td>198,908,016</td>
<td>+25,445</td>
<td>9,140,240</td>
<td>6,729</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Europe" style="display:none;">Europe</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="total_row_world row_continent" data-continent="Australia/Oceania" style="display: none">
<td></td>
<td style="text-align:left;">
<nobr>Oceania</nobr>
</td>
<td>10,492,349</td>
<td>+30,830</td>
<td>14,997</td>
<td>+55</td>
<td>9,945,183</td>
<td></td>
<td>532,169</td>
<td>176</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Australia/Oceania" style="display:none;">Australia/Oceania</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="total_row_world row_continent" data-continent="Africa" style="display: none">
<td></td>
<td style="text-align:left;">
<nobr>Africa</nobr>
</td>
<td>12,431,054</td>
<td></td>
<td>256,378</td>
<td></td>
<td>11,578,374</td>
<td></td>
<td>596,302</td>
<td>1,005</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Africa" style="display:none;">Africa</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="total_row_world row_continent" data-continent="" style="display: none">
<td></td>
<td style="text-align:left;">
<nobr></nobr>
</td>
<td>721</td>
<td></td>
<td>15</td>
<td></td>
<td>706</td>
<td></td>
<td>0</td>
<td>0</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="" style="display:none;"></td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="total_row_world">
<td></td>
<td style="text-align:left;">World</td>
<td>565,273,669</td>
<td>+106,987</td>
<td>6,382,055</td>
<td>+168</td>
<td>536,840,424</td>
<td>+61,318</td>
<td>22,051,190</td>
<td>38,909</td>
<td>72,519</td>
<td>818.8</td>
<td></td>
<td></td>
<td></td>
<td data-continent="all" style="display:none">All</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">1</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/us/">USA</a></td>
<td style="font-weight: bold; text-align:right">91,060,225</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,048,232 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">86,371,941</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3,640,052</td>
<td style="font-weight: bold; text-align:right">4,180</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,059,620,672</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"> </td>
<td data-continent="North America" style="display:none">North America</td>
<td></td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">2</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/india/">India</a></td>
<td style="font-weight: bold; text-align:right">43,704,925</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">525,557 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">43,028,356</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">151,012</td>
<td style="font-weight: bold; text-align:right">698</td>
<td style="font-weight: bold; text-align:right">31,051</td>
<td style="font-weight: bold; text-align:right">373</td>
<td style="font-weight: bold; text-align:right">867,769,574</td>
<td style="font-weight: bold; text-align:right">616,518</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/india-population/">1,407,532,492</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>32</td><td>2,678</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">107</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">3</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/brazil/">Brazil</a></td>
<td style="font-weight: bold; text-align:right">33,142,158</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">674,846 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">31,451,590</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,015,722</td>
<td style="font-weight: bold; text-align:right">8,318</td>
<td style="font-weight: bold; text-align:right">153,703</td>
<td style="font-weight: bold; text-align:right">3,130</td>
<td style="font-weight: bold; text-align:right">63,776,166</td>
<td style="font-weight: bold; text-align:right">295,774</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/brazil-population/">215,624,945</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>7</td><td>320</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,711</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">4</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/france/">France</a></td>
<td style="font-weight: bold; text-align:right">32,795,874</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">150,468 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">30,363,245</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,282,161</td>
<td style="font-weight: bold; text-align:right">869</td>
<td style="font-weight: bold; text-align:right">500,192</td>
<td style="font-weight: bold; text-align:right">2,295</td>
<td style="font-weight: bold; text-align:right">271,490,188</td>
<td style="font-weight: bold; text-align:right">4,140,684</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/france-population/">65,566,505</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>436</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">34,807</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">5</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/germany/">Germany</a></td>
<td style="font-weight: bold; text-align:right">29,460,249</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">142,284 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">27,548,900</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,769,065</td>
<td style="font-weight: bold; text-align:right">1,238</td>
<td style="font-weight: bold; text-align:right">349,356</td>
<td style="font-weight: bold; text-align:right">1,687</td>
<td style="font-weight: bold; text-align:right">122,332,384</td>
<td style="font-weight: bold; text-align:right">1,450,683</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/germany-population/">84,327,414</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>593</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">20,979</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">6</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/uk/">UK</a></td>
<td style="font-weight: bold; text-align:right">23,075,360</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">181,580 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">22,325,335</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">568,445</td>
<td style="font-weight: bold; text-align:right">146</td>
<td style="font-weight: bold; text-align:right">336,329</td>
<td style="font-weight: bold; text-align:right">2,647</td>
<td style="font-weight: bold; text-align:right">522,526,476</td>
<td style="font-weight: bold; text-align:right">7,615,952</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/uk-population/">68,609,479</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>378</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">8,285</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">7</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/italy/">Italy</a></td>
<td style="font-weight: bold; text-align:right">19,887,543</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">169,601 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">18,294,517</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,423,425</td>
<td style="font-weight: bold; text-align:right">388</td>
<td style="font-weight: bold; text-align:right">329,911</td>
<td style="font-weight: bold; text-align:right">2,813</td>
<td style="font-weight: bold; text-align:right">231,776,628</td>
<td style="font-weight: bold; text-align:right">3,844,904</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/italy-population/">60,281,506</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>355</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">23,613</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">8</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/south-korea/">S. Korea</a></td>
<td style="font-weight: bold; text-align:right">18,680,142</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">+38,864</td>
<td style="font-weight: bold; text-align:right;">24,712 </td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">+16</td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">18,304,752</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+3,413</td>
<td style="text-align:right;font-weight:bold;">350,678</td>
<td style="font-weight: bold; text-align:right">65</td>
<td style="font-weight: bold; text-align:right">363,719</td>
<td style="font-weight: bold; text-align:right">481</td>
<td style="font-weight: bold; text-align:right">15,804,065</td>
<td style="font-weight: bold; text-align:right">307,719</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/south-korea-population/">51,358,685</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>3</td><td>2,078</td><td>3</td>
<td style="font-weight: bold; text-align:right">757</td>
<td style="font-weight: bold; text-align:right">0.3</td>
<td style="font-weight: bold; text-align:right">6,828</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">9</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/russia/">Russia</a></td>
<td style="font-weight: bold; text-align:right">18,476,477</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">381,754 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">17,900,518</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">194,205</td>
<td style="font-weight: bold; text-align:right">2,300</td>
<td style="font-weight: bold; text-align:right">126,498</td>
<td style="font-weight: bold; text-align:right">2,614</td>
<td style="font-weight: bold; text-align:right">273,400,000</td>
<td style="font-weight: bold; text-align:right">1,871,816</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/russia-population/">146,061,390</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>8</td><td>383</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,330</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">10</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/turkey/">Turkey</a></td>
<td style="font-weight: bold; text-align:right">15,297,539</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">99,088 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">15,096,774</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">101,677</td>
<td style="font-weight: bold; text-align:right">975</td>
<td style="font-weight: bold; text-align:right">177,506</td>
<td style="font-weight: bold; text-align:right">1,150</td>
<td style="font-weight: bold; text-align:right">162,743,369</td>
<td style="font-weight: bold; text-align:right">1,888,403</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/turkey-population/">86,180,421</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>6</td><td>870</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,180</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">11</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/spain/">Spain</a></td>
<td style="font-weight: bold; text-align:right">13,032,841</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">108,948 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">12,370,046</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">553,847</td>
<td style="font-weight: bold; text-align:right">339</td>
<td style="font-weight: bold; text-align:right">278,530</td>
<td style="font-weight: bold; text-align:right">2,328</td>
<td style="font-weight: bold; text-align:right">471,036,328</td>
<td style="font-weight: bold; text-align:right">10,066,705</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/spain-population/">46,791,511</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>4</td><td>429</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">11,836</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">12</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/viet-nam/">Vietnam</a></td>
<td style="font-weight: bold; text-align:right">10,758,189</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">43,090 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">9,793,800</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">921,299</td>
<td style="font-weight: bold; text-align:right">36</td>
<td style="font-weight: bold; text-align:right">108,542</td>
<td style="font-weight: bold; text-align:right">435</td>
<td style="font-weight: bold; text-align:right">85,826,548</td>
<td style="font-weight: bold; text-align:right">865,924</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/viet-nam-population/">99,115,541</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>9</td><td>2,300</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9,295</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">13</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/japan/">Japan</a></td>
<td style="font-weight: bold; text-align:right">9,903,381</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">31,494 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">9,389,831</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">482,056</td>
<td style="font-weight: bold; text-align:right">100</td>
<td style="font-weight: bold; text-align:right">78,791</td>
<td style="font-weight: bold; text-align:right">251</td>
<td style="font-weight: bold; text-align:right">58,169,163</td>
<td style="font-weight: bold; text-align:right">462,794</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/japan-population/">125,691,242</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>13</td><td>3,991</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,835</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">14</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/argentina/">Argentina</a></td>
<td style="font-weight: bold; text-align:right">9,426,171</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">129,145 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">9,223,351</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+3,668</td>
<td style="text-align:right;font-weight:bold;">73,675</td>
<td style="font-weight: bold; text-align:right">393</td>
<td style="font-weight: bold; text-align:right">204,751</td>
<td style="font-weight: bold; text-align:right">2,805</td>
<td style="font-weight: bold; text-align:right">35,716,069</td>
<td style="font-weight: bold; text-align:right">775,808</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/argentina-population/">46,037,228</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>5</td><td>356</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,600</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">15</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/australia/">Australia</a></td>
<td style="font-weight: bold; text-align:right">8,683,848</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">+30,830</td>
<td style="font-weight: bold; text-align:right;">10,570 </td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">+55</td>
<td style="font-weight: bold; text-align:right">8,278,603</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">394,675</td>
<td style="font-weight: bold; text-align:right">144</td>
<td style="font-weight: bold; text-align:right">332,712</td>
<td style="font-weight: bold; text-align:right">405</td>
<td style="font-weight: bold; text-align:right">75,046,362</td>
<td style="font-weight: bold; text-align:right">2,875,318</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/australia-population/">26,100,194</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>3</td><td>2,469</td><td>0</td>
<td style="font-weight: bold; text-align:right">1,181</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">15,122</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">16</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/netherlands/">Netherlands</a></td>
<td style="font-weight: bold; text-align:right">8,267,718</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">22,417 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">8,088,398</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">156,903</td>
<td style="font-weight: bold; text-align:right">60</td>
<td style="font-weight: bold; text-align:right">480,352</td>
<td style="font-weight: bold; text-align:right">1,302</td>
<td style="font-weight: bold; text-align:right">21,107,399</td>
<td style="font-weight: bold; text-align:right">1,226,334</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/netherlands-population/">17,211,781</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>768</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9,116</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">17</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/iran/">Iran</a></td>
<td style="font-weight: bold; text-align:right">7,265,251</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">141,464 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">7,066,475</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">57,312</td>
<td style="font-weight: bold; text-align:right">413</td>
<td style="font-weight: bold; text-align:right">84,309</td>
<td style="font-weight: bold; text-align:right">1,642</td>
<td style="font-weight: bold; text-align:right">52,690,831</td>
<td style="font-weight: bold; text-align:right">611,445</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/iran-population/">86,174,268</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>12</td><td>609</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">665</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">18</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/mexico/">Mexico</a></td>
<td style="font-weight: bold; text-align:right">6,373,876</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">+34,885</td>
<td style="font-weight: bold; text-align:right;">326,335 </td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">+74</td>
<td style="font-weight: bold; text-align:right">5,435,342</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+19,748</td>
<td style="text-align:right;font-weight:bold;">612,199</td>
<td style="font-weight: bold; text-align:right">4,798</td>
<td style="font-weight: bold; text-align:right">48,404</td>
<td style="font-weight: bold; text-align:right">2,478</td>
<td style="font-weight: bold; text-align:right">17,084,916</td>
<td style="font-weight: bold; text-align:right">129,744</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/mexico-population/">131,681,236</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>21</td><td>404</td><td>8</td>
<td style="font-weight: bold; text-align:right">265</td>
<td style="font-weight: bold; text-align:right">0.6</td>
<td style="font-weight: bold; text-align:right">4,649</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">19</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/colombia/">Colombia</a></td>
<td style="font-weight: bold; text-align:right">6,198,848</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">140,202 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">6,008,044</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">50,602</td>
<td style="font-weight: bold; text-align:right">342</td>
<td style="font-weight: bold; text-align:right">119,247</td>
<td style="font-weight: bold; text-align:right">2,697</td>
<td style="font-weight: bold; text-align:right">35,662,857</td>
<td style="font-weight: bold; text-align:right">686,045</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/colombia-population/">51,983,287</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>8</td><td>371</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">973</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">20</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/indonesia/">Indonesia</a></td>
<td style="font-weight: bold; text-align:right">6,123,753</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">156,827 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">5,942,436</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">24,490</td>
<td style="font-weight: bold; text-align:right">2,771</td>
<td style="font-weight: bold; text-align:right">21,918</td>
<td style="font-weight: bold; text-align:right">561</td>
<td style="font-weight: bold; text-align:right">101,907,052</td>
<td style="font-weight: bold; text-align:right">364,746</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/indonesia-population/">279,392,080</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>46</td><td>1,782</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">88</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">21</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/poland/">Poland</a></td>
<td style="font-weight: bold; text-align:right">6,027,974</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">116,468 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">5,335,742</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">575,764</td>
<td style="font-weight: bold; text-align:right">408</td>
<td style="font-weight: bold; text-align:right">159,628</td>
<td style="font-weight: bold; text-align:right">3,084</td>
<td style="font-weight: bold; text-align:right">36,537,808</td>
<td style="font-weight: bold; text-align:right">967,568</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/poland-population/">37,762,538</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>6</td><td>324</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">15,247</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">22</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/portugal/">Portugal</a></td>
<td style="font-weight: bold; text-align:right">5,273,845</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">24,369 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">4,997,384</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+17,840</td>
<td style="text-align:right;font-weight:bold;">252,092</td>
<td style="font-weight: bold; text-align:right">61</td>
<td style="font-weight: bold; text-align:right">520,287</td>
<td style="font-weight: bold; text-align:right">2,404</td>
<td style="font-weight: bold; text-align:right">43,527,258</td>
<td style="font-weight: bold; text-align:right">4,294,148</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/portugal-population/">10,136,412</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>416</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">24,870</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">23</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/ukraine/">Ukraine</a></td>
<td style="font-weight: bold; text-align:right">5,019,125</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">108,671 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">4,907,770</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+149</td>
<td style="text-align:right;font-weight:bold;">2,684</td>
<td style="font-weight: bold; text-align:right">177</td>
<td style="font-weight: bold; text-align:right">116,181</td>
<td style="font-weight: bold; text-align:right">2,515</td>
<td style="font-weight: bold; text-align:right">19,521,252</td>
<td style="font-weight: bold; text-align:right">451,870</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/ukraine-population/">43,200,993</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>9</td><td>398</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">62</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">24</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/north-korea/">DPRK</a></td>
<td style="font-weight: bold; text-align:right">4,770,400</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">+500</td>
<td style="font-weight: bold; text-align:right;">74 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">4,769,210</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+700</td>
<td style="text-align:right;font-weight:bold;">1,116</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">183,420</td>
<td style="font-weight: bold; text-align:right">3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/north-korea-population/">26,008,008</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>5</td><td>351,460</td><td></td>
<td style="font-weight: bold; text-align:right">19</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">43</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">25</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/malaysia/">Malaysia</a></td>
<td style="font-weight: bold; text-align:right">4,608,768</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">35,836 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">4,534,019</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">38,913</td>
<td style="font-weight: bold; text-align:right">53</td>
<td style="font-weight: bold; text-align:right">138,787</td>
<td style="font-weight: bold; text-align:right">1,079</td>
<td style="font-weight: bold; text-align:right">61,607,295</td>
<td style="font-weight: bold; text-align:right">1,855,228</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/malaysia-population/">33,207,396</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>7</td><td>927</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,172</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">26</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/austria/">Austria</a></td>
<td style="font-weight: bold; text-align:right">4,574,722</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">18,916 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">4,436,588</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">119,218</td>
<td style="font-weight: bold; text-align:right">71</td>
<td style="font-weight: bold; text-align:right">502,129</td>
<td style="font-weight: bold; text-align:right">2,076</td>
<td style="font-weight: bold; text-align:right">191,905,533</td>
<td style="font-weight: bold; text-align:right">21,063,859</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/austria-population/">9,110,654</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>482</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">13,086</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">27</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/thailand/">Thailand</a></td>
<td style="font-weight: bold; text-align:right">4,554,976</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">+1,795</td>
<td style="font-weight: bold; text-align:right;">30,961 </td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">+23</td>
<td style="font-weight: bold; text-align:right">4,499,975</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+1,920</td>
<td style="text-align:right;font-weight:bold;">24,040</td>
<td style="font-weight: bold; text-align:right">1,496</td>
<td style="font-weight: bold; text-align:right">64,927</td>
<td style="font-weight: bold; text-align:right">441</td>
<td style="font-weight: bold; text-align:right">17,270,775</td>
<td style="font-weight: bold; text-align:right">246,179</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/thailand-population/">70,155,276</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>15</td><td>2,266</td><td>4</td>
<td style="font-weight: bold; text-align:right">26</td>
<td style="font-weight: bold; text-align:right">0.3</td>
<td style="font-weight: bold; text-align:right">343</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">28</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/israel/">Israel</a></td>
<td style="font-weight: bold; text-align:right">4,489,396</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">11,101 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">4,399,889</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">78,406</td>
<td style="font-weight: bold; text-align:right">310</td>
<td style="font-weight: bold; text-align:right">481,385</td>
<td style="font-weight: bold; text-align:right">1,190</td>
<td style="font-weight: bold; text-align:right">41,373,364</td>
<td style="font-weight: bold; text-align:right">4,436,346</td>
<td style="font-weight: bold; text-align:right">9,326,000 </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>2</td><td>840</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">8,407</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">29</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/belgium/">Belgium</a></td>
<td style="font-weight: bold; text-align:right">4,320,107</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">32,015 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">4,148,925</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+3,500</td>
<td style="text-align:right;font-weight:bold;">139,167</td>
<td style="font-weight: bold; text-align:right">74</td>
<td style="font-weight: bold; text-align:right">369,494</td>
<td style="font-weight: bold; text-align:right">2,738</td>
<td style="font-weight: bold; text-align:right">34,708,412</td>
<td style="font-weight: bold; text-align:right">2,968,574</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/belgium-population/">11,691,948</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>365</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">11,903</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">30</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/taiwan/">Taiwan</a></td>
<td style="font-weight: bold; text-align:right">4,189,929</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">7,917 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">3,525,388</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">656,624</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">175,280</td>
<td style="font-weight: bold; text-align:right">331</td>
<td style="font-weight: bold; text-align:right">21,858,576</td>
<td style="font-weight: bold; text-align:right">914,423</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/taiwan-population/">23,904,219</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>6</td><td>3,019</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">27,469</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">31</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/chile/">Chile</a></td>
<td style="font-weight: bold; text-align:right">4,113,288</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">58,955 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">3,775,065</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">279,268</td>
<td style="font-weight: bold; text-align:right">190</td>
<td style="font-weight: bold; text-align:right">211,490</td>
<td style="font-weight: bold; text-align:right">3,031</td>
<td style="font-weight: bold; text-align:right">41,226,395</td>
<td style="font-weight: bold; text-align:right">2,119,704</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/chile-population/">19,449,130</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>5</td><td>330</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">14,359</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">32</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/south-africa/">South Africa</a></td>
<td style="font-weight: bold; text-align:right">3,999,345</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">101,915 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">3,889,998</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">7,432</td>
<td style="font-weight: bold; text-align:right">192</td>
<td style="font-weight: bold; text-align:right">65,751</td>
<td style="font-weight: bold; text-align:right">1,676</td>
<td style="font-weight: bold; text-align:right">25,858,208</td>
<td style="font-weight: bold; text-align:right">425,118</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/south-africa-population/">60,825,910</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>15</td><td>597</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">122</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">33</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/canada/">Canada</a></td>
<td style="font-weight: bold; text-align:right">3,992,960</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">42,278 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">3,570,058</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">380,624</td>
<td style="font-weight: bold; text-align:right">195</td>
<td style="font-weight: bold; text-align:right">103,947</td>
<td style="font-weight: bold; text-align:right">1,101</td>
<td style="font-weight: bold; text-align:right">62,586,673</td>
<td style="font-weight: bold; text-align:right">1,629,286</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/canada-population/">38,413,557</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>10</td><td>909</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9,909</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">34</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/czech-republic/">Czechia</a></td>
<td style="font-weight: bold; text-align:right">3,947,772</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">40,343 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">3,896,636</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,793</td>
<td style="font-weight: bold; text-align:right">11</td>
<td style="font-weight: bold; text-align:right">367,259</td>
<td style="font-weight: bold; text-align:right">3,753</td>
<td style="font-weight: bold; text-align:right">55,608,407</td>
<td style="font-weight: bold; text-align:right">5,173,221</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/czech-republic-population/">10,749,282</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>266</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,004</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">35</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/switzerland/">Switzerland</a></td>
<td style="font-weight: bold; text-align:right">3,843,522</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">14,008 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">3,671,804</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+4,101</td>
<td style="text-align:right;font-weight:bold;">157,710</td>
<td style="font-weight: bold; text-align:right">60</td>
<td style="font-weight: bold; text-align:right">437,608</td>
<td style="font-weight: bold; text-align:right">1,595</td>
<td style="font-weight: bold; text-align:right">21,598,881</td>
<td style="font-weight: bold; text-align:right">2,459,160</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/switzerland-population/">8,783,033</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>627</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">17,956</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">36</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/greece/">Greece</a></td>
<td style="font-weight: bold; text-align:right">3,843,142</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">30,476 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">3,614,441</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">198,225</td>
<td style="font-weight: bold; text-align:right">103</td>
<td style="font-weight: bold; text-align:right">372,404</td>
<td style="font-weight: bold; text-align:right">2,953</td>
<td style="font-weight: bold; text-align:right">86,634,526</td>
<td style="font-weight: bold; text-align:right">8,394,971</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/greece-population/">10,319,812</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>339</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">19,208</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">37</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/philippines/">Philippines</a></td>
<td style="font-weight: bold; text-align:right">3,725,382</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">60,641 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">3,648,497</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">16,244</td>
<td style="font-weight: bold; text-align:right">534</td>
<td style="font-weight: bold; text-align:right">33,103</td>
<td style="font-weight: bold; text-align:right">539</td>
<td style="font-weight: bold; text-align:right">31,081,194</td>
<td style="font-weight: bold; text-align:right">276,178</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/philippines-population/">112,540,376</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>30</td><td>1,856</td><td>4</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">144</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">38</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/peru/">Peru</a></td>
<td style="font-weight: bold; text-align:right">3,703,751</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">213,731 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">3,416,065</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+4,688</td>
<td style="text-align:right;font-weight:bold;">73,955</td>
<td style="font-weight: bold; text-align:right">171</td>
<td style="font-weight: bold; text-align:right">109,243</td>
<td style="font-weight: bold; text-align:right">6,304</td>
<td style="font-weight: bold; text-align:right">31,998,554</td>
<td style="font-weight: bold; text-align:right">943,805</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/peru-population/">33,903,781</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>9</td><td>159</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,181</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">39</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/denmark/">Denmark</a></td>
<td style="font-weight: bold; text-align:right">3,038,292</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">6,543 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">3,008,051</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">23,698</td>
<td style="font-weight: bold; text-align:right">14</td>
<td style="font-weight: bold; text-align:right">520,828</td>
<td style="font-weight: bold; text-align:right">1,122</td>
<td style="font-weight: bold; text-align:right">127,815,844</td>
<td style="font-weight: bold; text-align:right">21,910,357</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/denmark-population/">5,833,581</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>892</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,062</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">40</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/romania/">Romania</a></td>
<td style="font-weight: bold; text-align:right">2,953,944</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">65,802 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">2,853,659</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">34,483</td>
<td style="font-weight: bold; text-align:right">99</td>
<td style="font-weight: bold; text-align:right">155,655</td>
<td style="font-weight: bold; text-align:right">3,467</td>
<td style="font-weight: bold; text-align:right">23,694,574</td>
<td style="font-weight: bold; text-align:right">1,248,563</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/romania-population/">18,977,479</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>6</td><td>288</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,817</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">41</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/sweden/">Sweden</a></td>
<td style="font-weight: bold; text-align:right">2,528,166</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">19,170 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">2,492,906</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">16,090</td>
<td style="font-weight: bold; text-align:right">16</td>
<td style="font-weight: bold; text-align:right">247,204</td>
<td style="font-weight: bold; text-align:right">1,874</td>
<td style="font-weight: bold; text-align:right">18,709,369</td>
<td style="font-weight: bold; text-align:right">1,829,405</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/sweden-population/">10,227,026</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>4</td><td>533</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,573</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">42</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/iraq/">Iraq</a></td>
<td style="font-weight: bold; text-align:right">2,396,707</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">25,261 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2,335,448</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">35,998</td>
<td style="font-weight: bold; text-align:right">30</td>
<td style="font-weight: bold; text-align:right">56,991</td>
<td style="font-weight: bold; text-align:right">601</td>
<td style="font-weight: bold; text-align:right">18,912,241</td>
<td style="font-weight: bold; text-align:right">449,716</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/iraq-population/">42,053,775</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>18</td><td>1,665</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">856</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">43</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/serbia/">Serbia</a></td>
<td style="font-weight: bold; text-align:right">2,049,388</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">16,162 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2,009,887</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">23,339</td>
<td style="font-weight: bold; text-align:right">9</td>
<td style="font-weight: bold; text-align:right">236,486</td>
<td style="font-weight: bold; text-align:right">1,865</td>
<td style="font-weight: bold; text-align:right">10,016,279</td>
<td style="font-weight: bold; text-align:right">1,155,813</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/serbia-population/">8,666,000</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>4</td><td>536</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,693</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">44</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bangladesh/">Bangladesh</a></td>
<td style="font-weight: bold; text-align:right">1,993,382</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">29,223 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,919,166</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">44,993</td>
<td style="font-weight: bold; text-align:right">1,228</td>
<td style="font-weight: bold; text-align:right">11,864</td>
<td style="font-weight: bold; text-align:right">174</td>
<td style="font-weight: bold; text-align:right">14,475,361</td>
<td style="font-weight: bold; text-align:right">86,153</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bangladesh-population/">168,018,411</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>84</td><td>5,750</td><td>12</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">268</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">45</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/hungary/">Hungary</a></td>
<td style="font-weight: bold; text-align:right">1,940,824</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">46,696 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,878,221</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">15,907</td>
<td style="font-weight: bold; text-align:right">16</td>
<td style="font-weight: bold; text-align:right">201,946</td>
<td style="font-weight: bold; text-align:right">4,859</td>
<td style="font-weight: bold; text-align:right">11,394,556</td>
<td style="font-weight: bold; text-align:right">1,185,624</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/hungary-population/">9,610,602</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>5</td><td>206</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,655</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">46</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/slovakia/">Slovakia</a></td>
<td style="font-weight: bold; text-align:right">1,803,688</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">20,168 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">1,775,849</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">7,671</td>
<td style="font-weight: bold; text-align:right">16</td>
<td style="font-weight: bold; text-align:right">330,043</td>
<td style="font-weight: bold; text-align:right">3,690</td>
<td style="font-weight: bold; text-align:right">7,195,329</td>
<td style="font-weight: bold; text-align:right">1,316,619</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/slovakia-population/">5,465,006</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>271</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,404</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">47</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/jordan/">Jordan</a></td>
<td style="font-weight: bold; text-align:right">1,700,526</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">14,068 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,685,354</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,104</td>
<td style="font-weight: bold; text-align:right">124</td>
<td style="font-weight: bold; text-align:right">163,376</td>
<td style="font-weight: bold; text-align:right">1,352</td>
<td style="font-weight: bold; text-align:right">16,894,012</td>
<td style="font-weight: bold; text-align:right">1,623,075</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/jordan-population/">10,408,648</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>6</td><td>740</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">106</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">48</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/georgia/">Georgia</a></td>
<td style="font-weight: bold; text-align:right">1,662,299</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">16,844 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,637,293</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">8,162</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">418,332</td>
<td style="font-weight: bold; text-align:right">4,239</td>
<td style="font-weight: bold; text-align:right">16,920,079</td>
<td style="font-weight: bold; text-align:right">4,258,084</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/georgia-population/">3,973,637</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>2</td><td>236</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,054</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">49</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/ireland/">Ireland</a></td>
<td style="font-weight: bold; text-align:right">1,628,745</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">7,537 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">1,566,323</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">54,885</td>
<td style="font-weight: bold; text-align:right">43</td>
<td style="font-weight: bold; text-align:right">322,543</td>
<td style="font-weight: bold; text-align:right">1,493</td>
<td style="font-weight: bold; text-align:right">12,473,972</td>
<td style="font-weight: bold; text-align:right">2,470,241</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/ireland-population/">5,049,698</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>670</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">10,869</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">50</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/singapore/">Singapore</a></td>
<td style="font-weight: bold; text-align:right">1,569,420</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,444 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,453,373</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">114,603</td>
<td style="font-weight: bold; text-align:right">20</td>
<td style="font-weight: bold; text-align:right">264,048</td>
<td style="font-weight: bold; text-align:right">243</td>
<td style="font-weight: bold; text-align:right">24,107,231</td>
<td style="font-weight: bold; text-align:right">4,055,935</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/singapore-population/">5,943,693</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>4</td><td>4,116</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">19,281</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">51</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/pakistan/">Pakistan</a></td>
<td style="font-weight: bold; text-align:right">1,544,131</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">30,426 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,503,023</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,682</td>
<td style="font-weight: bold; text-align:right">175</td>
<td style="font-weight: bold; text-align:right">6,725</td>
<td style="font-weight: bold; text-align:right">133</td>
<td style="font-weight: bold; text-align:right">29,219,351</td>
<td style="font-weight: bold; text-align:right">127,265</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/pakistan-population/">229,594,826</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>149</td><td>7,546</td><td>8</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">47</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">52</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/new-zealand/">New Zealand</a></td>
<td style="font-weight: bold; text-align:right">1,473,955</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,697 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,401,411</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">70,847</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">294,667</td>
<td style="font-weight: bold; text-align:right">339</td>
<td style="font-weight: bold; text-align:right">7,327,116</td>
<td style="font-weight: bold; text-align:right">1,464,808</td>
<td style="font-weight: bold; text-align:right">5,002,100 </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>3</td><td>2,948</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">14,163</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">53</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/norway/">Norway</a></td>
<td style="font-weight: bold; text-align:right">1,452,176</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">3,504 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">1,442,320</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">6,352</td>
<td style="font-weight: bold; text-align:right">20</td>
<td style="font-weight: bold; text-align:right">263,685</td>
<td style="font-weight: bold; text-align:right">636</td>
<td style="font-weight: bold; text-align:right">11,002,430</td>
<td style="font-weight: bold; text-align:right">1,997,809</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/norway-population/">5,507,247</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>4</td><td>1,572</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,153</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">54</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/kazakhstan/">Kazakhstan</a></td>
<td style="font-weight: bold; text-align:right">1,312,294</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">13,663 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,293,793</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">4,838</td>
<td style="font-weight: bold; text-align:right">24</td>
<td style="font-weight: bold; text-align:right">68,233</td>
<td style="font-weight: bold; text-align:right">710</td>
<td style="font-weight: bold; text-align:right">11,575,012</td>
<td style="font-weight: bold; text-align:right">601,849</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/kazakhstan-population/">19,232,410</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>15</td><td>1,408</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">252</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">55</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/china-hong-kong-sar/">Hong Kong</a></td>
<td style="font-weight: bold; text-align:right">1,283,514</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">9,427 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">1,206,801</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">67,286</td>
<td style="font-weight: bold; text-align:right">8</td>
<td style="font-weight: bold; text-align:right">168,432</td>
<td style="font-weight: bold; text-align:right">1,237</td>
<td style="font-weight: bold; text-align:right">50,415,048</td>
<td style="font-weight: bold; text-align:right">6,615,815</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/china-hong-kong-sar-population/">7,620,384</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>6</td><td>808</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">8,830</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">56</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/morocco/">Morocco</a></td>
<td style="font-weight: bold; text-align:right">1,246,835</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">16,167 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,213,862</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">16,806</td>
<td style="font-weight: bold; text-align:right">293</td>
<td style="font-weight: bold; text-align:right">32,987</td>
<td style="font-weight: bold; text-align:right">428</td>
<td style="font-weight: bold; text-align:right">12,080,887</td>
<td style="font-weight: bold; text-align:right">319,615</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/morocco-population/">37,798,233</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>30</td><td>2,338</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">445</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">57</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bulgaria/">Bulgaria</a></td>
<td style="font-weight: bold; text-align:right">1,182,764</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">37,283 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,134,552</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,929</td>
<td style="font-weight: bold; text-align:right">38</td>
<td style="font-weight: bold; text-align:right">172,858</td>
<td style="font-weight: bold; text-align:right">5,449</td>
<td style="font-weight: bold; text-align:right">10,167,636</td>
<td style="font-weight: bold; text-align:right">1,485,977</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bulgaria-population/">6,842,392</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>6</td><td>184</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,597</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">58</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/finland/">Finland</a></td>
<td style="font-weight: bold; text-align:right">1,171,034</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">5,012 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">1,120,330</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">45,692</td>
<td style="font-weight: bold; text-align:right">21</td>
<td style="font-weight: bold; text-align:right">210,687</td>
<td style="font-weight: bold; text-align:right">902</td>
<td style="font-weight: bold; text-align:right">11,129,795</td>
<td style="font-weight: bold; text-align:right">2,002,417</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/finland-population/">5,558,180</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>5</td><td>1,109</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">8,221</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">59</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/croatia/">Croatia</a></td>
<td style="font-weight: bold; text-align:right">1,163,824</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">16,135 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,138,102</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">9,587</td>
<td style="font-weight: bold; text-align:right">17</td>
<td style="font-weight: bold; text-align:right">287,085</td>
<td style="font-weight: bold; text-align:right">3,980</td>
<td style="font-weight: bold; text-align:right">4,986,129</td>
<td style="font-weight: bold; text-align:right">1,229,949</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/croatia-population/">4,053,933</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>251</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,365</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">60</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/lebanon/">Lebanon</a></td>
<td style="font-weight: bold; text-align:right">1,125,720</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">10,477 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,087,587</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">27,656</td>
<td style="font-weight: bold; text-align:right">186</td>
<td style="font-weight: bold; text-align:right">166,441</td>
<td style="font-weight: bold; text-align:right">1,549</td>
<td style="font-weight: bold; text-align:right">4,795,578</td>
<td style="font-weight: bold; text-align:right">709,042</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/lebanon-population/">6,763,462</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>6</td><td>646</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,089</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">61</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cuba/">Cuba</a></td>
<td style="font-weight: bold; text-align:right">1,106,602</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">8,529 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,097,788</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">285</td>
<td style="font-weight: bold; text-align:right">23</td>
<td style="font-weight: bold; text-align:right">97,820</td>
<td style="font-weight: bold; text-align:right">754</td>
<td style="font-weight: bold; text-align:right">13,852,049</td>
<td style="font-weight: bold; text-align:right">1,224,480</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cuba-population/">11,312,593</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>10</td><td>1,326</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">25</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">62</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/tunisia/">Tunisia</a></td>
<td style="font-weight: bold; text-align:right">1,087,030</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">28,823 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right">29</td>
<td style="font-weight: bold; text-align:right">90,064</td>
<td style="font-weight: bold; text-align:right">2,388</td>
<td style="font-weight: bold; text-align:right">4,743,992</td>
<td style="font-weight: bold; text-align:right">393,055</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/tunisia-population/">12,069,534</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>11</td><td>419</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,606</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">63</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/lithuania/">Lithuania</a></td>
<td style="font-weight: bold; text-align:right">1,073,128</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">9,188 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,038,300</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">25,640</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">405,673</td>
<td style="font-weight: bold; text-align:right">3,473</td>
<td style="font-weight: bold; text-align:right">10,024,830</td>
<td style="font-weight: bold; text-align:right">3,789,667</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/lithuania-population/">2,645,306</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>288</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9,693</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">64</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/slovenia/">Slovenia</a></td>
<td style="font-weight: bold; text-align:right">1,056,179</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">6,665 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,032,092</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">17,422</td>
<td style="font-weight: bold; text-align:right">12</td>
<td style="font-weight: bold; text-align:right">507,896</td>
<td style="font-weight: bold; text-align:right">3,205</td>
<td style="font-weight: bold; text-align:right">2,691,730</td>
<td style="font-weight: bold; text-align:right">1,294,401</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/slovenia-population/">2,079,518</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>312</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">8,378</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">65</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/belarus/">Belarus</a></td>
<td style="font-weight: bold; text-align:right">994,037</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">7,118 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">985,592</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,327</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">105,267</td>
<td style="font-weight: bold; text-align:right">754</td>
<td style="font-weight: bold; text-align:right">13,646,641</td>
<td style="font-weight: bold; text-align:right">1,445,157</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/belarus-population/">9,443,019</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>9</td><td>1,327</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">141</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">66</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/nepal/">Nepal</a></td>
<td style="font-weight: bold; text-align:right">980,981</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">11,952 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">967,858</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,171</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">32,483</td>
<td style="font-weight: bold; text-align:right">396</td>
<td style="font-weight: bold; text-align:right">5,780,700</td>
<td style="font-weight: bold; text-align:right">191,413</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/nepal-population/">30,200,104</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>31</td><td>2,527</td><td>5</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">39</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">67</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/guatemala/">Guatemala</a></td>
<td style="font-weight: bold; text-align:right">970,621</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">18,768 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">881,742</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">70,111</td>
<td style="font-weight: bold; text-align:right">5</td>
<td style="font-weight: bold; text-align:right">52,218</td>
<td style="font-weight: bold; text-align:right">1,010</td>
<td style="font-weight: bold; text-align:right">5,106,651</td>
<td style="font-weight: bold; text-align:right">274,729</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/guatemala-population/">18,587,983</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>19</td><td>990</td><td>4</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,772</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">68</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/united-arab-emirates/">UAE</a></td>
<td style="font-weight: bold; text-align:right">969,097</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,325 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">949,218</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">17,554</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">95,639</td>
<td style="font-weight: bold; text-align:right">229</td>
<td style="font-weight: bold; text-align:right">173,273,059</td>
<td style="font-weight: bold; text-align:right">17,100,110</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/united-arab-emirates-population/">10,132,862</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>10</td><td>4,358</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,732</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">69</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/uruguay/">Uruguay</a></td>
<td style="font-weight: bold; text-align:right">965,370</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">7,373 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">955,371</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,626</td>
<td style="font-weight: bold; text-align:right">18</td>
<td style="font-weight: bold; text-align:right">275,966</td>
<td style="font-weight: bold; text-align:right">2,108</td>
<td style="font-weight: bold; text-align:right">6,114,822</td>
<td style="font-weight: bold; text-align:right">1,748,015</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/uruguay-population/">3,498,152</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>4</td><td>474</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">751</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">70</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bolivia/">Bolivia</a></td>
<td style="font-weight: bold; text-align:right">956,629</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">21,977 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">897,166</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">37,486</td>
<td style="font-weight: bold; text-align:right">220</td>
<td style="font-weight: bold; text-align:right">79,745</td>
<td style="font-weight: bold; text-align:right">1,832</td>
<td style="font-weight: bold; text-align:right">2,705,422</td>
<td style="font-weight: bold; text-align:right">225,525</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bolivia-population/">11,996,097</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>13</td><td>546</td><td>4</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,125</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">71</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/panama/">Panama</a></td>
<td style="font-weight: bold; text-align:right">932,710</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">8,384 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">910,900</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">13,426</td>
<td style="font-weight: bold; text-align:right">16</td>
<td style="font-weight: bold; text-align:right">209,476</td>
<td style="font-weight: bold; text-align:right">1,883</td>
<td style="font-weight: bold; text-align:right">6,637,861</td>
<td style="font-weight: bold; text-align:right">1,490,789</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/panama-population/">4,452,581</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>5</td><td>531</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,015</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">72</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/mongolia/">Mongolia</a></td>
<td style="font-weight: bold; text-align:right">930,418</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,179 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right">192</td>
<td style="font-weight: bold; text-align:right">274,832</td>
<td style="font-weight: bold; text-align:right">644</td>
<td style="font-weight: bold; text-align:right">4,030,048</td>
<td style="font-weight: bold; text-align:right">1,190,418</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/mongolia-population/">3,385,407</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>4</td><td>1,554</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">181,657</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">73</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/ecuador/">Ecuador</a></td>
<td style="font-weight: bold; text-align:right">927,700</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">35,769 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">872,779</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+1,808</td>
<td style="text-align:right;font-weight:bold;">19,152</td>
<td style="font-weight: bold; text-align:right">759</td>
<td style="font-weight: bold; text-align:right">51,010</td>
<td style="font-weight: bold; text-align:right">1,967</td>
<td style="font-weight: bold; text-align:right">2,470,170</td>
<td style="font-weight: bold; text-align:right">135,823</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/ecuador-population/">18,186,639</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>20</td><td>508</td><td>7</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,053</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">74</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/costa-rica/">Costa Rica</a></td>
<td style="font-weight: bold; text-align:right">904,934</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">8,525 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">860,711</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">35,698</td>
<td style="font-weight: bold; text-align:right">52</td>
<td style="font-weight: bold; text-align:right">174,412</td>
<td style="font-weight: bold; text-align:right">1,643</td>
<td style="font-weight: bold; text-align:right">4,659,757</td>
<td style="font-weight: bold; text-align:right">898,094</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/costa-rica-population/">5,188,498</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>6</td><td>609</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,880</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">75</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/latvia/">Latvia</a></td>
<td style="font-weight: bold; text-align:right">844,142</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">5,873 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">829,937</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">8,332</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">457,796</td>
<td style="font-weight: bold; text-align:right">3,185</td>
<td style="font-weight: bold; text-align:right">7,358,973</td>
<td style="font-weight: bold; text-align:right">3,990,926</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/latvia-population/">1,843,926</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>314</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,519</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">76</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saudi-arabia/">Saudi Arabia</a></td>
<td style="font-weight: bold; text-align:right">801,935</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">9,228 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">786,711</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">5,996</td>
<td style="font-weight: bold; text-align:right">169</td>
<td style="font-weight: bold; text-align:right">22,329</td>
<td style="font-weight: bold; text-align:right">257</td>
<td style="font-weight: bold; text-align:right">43,628,872</td>
<td style="font-weight: bold; text-align:right">1,214,817</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saudi-arabia-population/">35,913,946</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>45</td><td>3,892</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">167</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">77</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/azerbaijan/">Azerbaijan</a></td>
<td style="font-weight: bold; text-align:right">793,918</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">9,719 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">783,453</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">746</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">76,896</td>
<td style="font-weight: bold; text-align:right">941</td>
<td style="font-weight: bold; text-align:right">6,972,527</td>
<td style="font-weight: bold; text-align:right">675,332</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/azerbaijan-population/">10,324,599</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>13</td><td>1,062</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">72</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">78</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/paraguay/">Paraguay</a></td>
<td style="font-weight: bold; text-align:right">673,829</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">19,036 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">639,340</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">15,453</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">92,175</td>
<td style="font-weight: bold; text-align:right">2,604</td>
<td style="font-weight: bold; text-align:right">2,646,163</td>
<td style="font-weight: bold; text-align:right">361,977</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/paraguay-population/">7,310,305</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>11</td><td>384</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,114</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">79</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/sri-lanka/">Sri Lanka</a></td>
<td style="font-weight: bold; text-align:right">664,364</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">16,526 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">647,445</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">393</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">30,764</td>
<td style="font-weight: bold; text-align:right">765</td>
<td style="font-weight: bold; text-align:right">6,486,117</td>
<td style="font-weight: bold; text-align:right">300,347</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/sri-lanka-population/">21,595,391</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>33</td><td>1,307</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">18</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">80</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/kuwait/">Kuwait</a></td>
<td style="font-weight: bold; text-align:right">648,216</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,556 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">641,752</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3,908</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">147,365</td>
<td style="font-weight: bold; text-align:right">581</td>
<td style="font-weight: bold; text-align:right">8,242,720</td>
<td style="font-weight: bold; text-align:right">1,873,891</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/kuwait-population/">4,398,718</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>7</td><td>1,721</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">888</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">81</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bahrain/">Bahrain</a></td>
<td style="font-weight: bold; text-align:right">645,399</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,503 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">633,093</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,803</td>
<td style="font-weight: bold; text-align:right">18</td>
<td style="font-weight: bold; text-align:right">354,309</td>
<td style="font-weight: bold; text-align:right">825</td>
<td style="font-weight: bold; text-align:right">10,099,771</td>
<td style="font-weight: bold; text-align:right">5,544,533</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bahrain-population/">1,821,573</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>3</td><td>1,212</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">5,931</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">82</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/dominican-republic/">Dominican Republic</a></td>
<td style="font-weight: bold; text-align:right">621,047</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">4,383 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">611,734</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">4,930</td>
<td style="font-weight: bold; text-align:right">27</td>
<td style="font-weight: bold; text-align:right">56,109</td>
<td style="font-weight: bold; text-align:right">396</td>
<td style="font-weight: bold; text-align:right">3,552,150</td>
<td style="font-weight: bold; text-align:right">320,921</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/dominican-republic-population/">11,068,627</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>18</td><td>2,525</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">445</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">83</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/myanmar/">Myanmar</a></td>
<td style="font-weight: bold; text-align:right">613,784</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">19,434 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">592,700</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,650</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">11,129</td>
<td style="font-weight: bold; text-align:right">352</td>
<td style="font-weight: bold; text-align:right">8,442,405</td>
<td style="font-weight: bold; text-align:right">153,081</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/myanmar-population/">55,149,826</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>90</td><td>2,838</td><td>7</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">30</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">84</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/state-of-palestine/">Palestine</a></td>
<td style="font-weight: bold; text-align:right">586,058</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">5,358 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">578,920</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,780</td>
<td style="font-weight: bold; text-align:right">17</td>
<td style="font-weight: bold; text-align:right">109,707</td>
<td style="font-weight: bold; text-align:right">1,003</td>
<td style="font-weight: bold; text-align:right">3,078,533</td>
<td style="font-weight: bold; text-align:right">576,286</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/state-of-palestine-population/">5,342,019</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>9</td><td>997</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">333</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">85</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/estonia/">Estonia</a></td>
<td style="font-weight: bold; text-align:right">585,143</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,608 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">523,576</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">58,959</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">440,505</td>
<td style="font-weight: bold; text-align:right">1,963</td>
<td style="font-weight: bold; text-align:right">3,424,969</td>
<td style="font-weight: bold; text-align:right">2,578,373</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/estonia-population/">1,328,345</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>509</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">44,385</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">86</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cyprus/">Cyprus</a></td>
<td style="font-weight: bold; text-align:right">530,510</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,079 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">124,370</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">405,061</td>
<td style="font-weight: bold; text-align:right">60</td>
<td style="font-weight: bold; text-align:right">433,002</td>
<td style="font-weight: bold; text-align:right">881</td>
<td style="font-weight: bold; text-align:right">9,477,138</td>
<td style="font-weight: bold; text-align:right">7,735,233</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cyprus-population/">1,225,191</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>2</td><td>1,135</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">330,610</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">87</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/venezuela/">Venezuela</a></td>
<td style="font-weight: bold; text-align:right">528,785</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">5,742 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">520,353</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,690</td>
<td style="font-weight: bold; text-align:right">36</td>
<td style="font-weight: bold; text-align:right">18,703</td>
<td style="font-weight: bold; text-align:right">203</td>
<td style="font-weight: bold; text-align:right">3,359,014</td>
<td style="font-weight: bold; text-align:right">118,808</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/venezuela-population/">28,272,539</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>53</td><td>4,924</td><td>8</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">95</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">88</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/moldova/">Moldova</a></td>
<td style="font-weight: bold; text-align:right">520,321</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">11,567 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">504,142</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">4,612</td>
<td style="font-weight: bold; text-align:right">49</td>
<td style="font-weight: bold; text-align:right">129,596</td>
<td style="font-weight: bold; text-align:right">2,881</td>
<td style="font-weight: bold; text-align:right">3,216,305</td>
<td style="font-weight: bold; text-align:right">801,083</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/moldova-population/">4,014,948</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>8</td><td>347</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,149</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">89</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/egypt/">Egypt</a></td>
<td style="font-weight: bold; text-align:right">515,645</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">24,613 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">442,182</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">48,850</td>
<td style="font-weight: bold; text-align:right">122</td>
<td style="font-weight: bold; text-align:right">4,853</td>
<td style="font-weight: bold; text-align:right">232</td>
<td style="font-weight: bold; text-align:right">3,693,367</td>
<td style="font-weight: bold; text-align:right">34,761</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/egypt-population/">106,250,559</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>206</td><td>4,317</td><td>29</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">460</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">90</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/libya/">Libya</a></td>
<td style="font-weight: bold; text-align:right">502,289</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">6,430 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">490,973</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">4,886</td>
<td style="font-weight: bold; text-align:right">101</td>
<td style="font-weight: bold; text-align:right">71,137</td>
<td style="font-weight: bold; text-align:right">911</td>
<td style="font-weight: bold; text-align:right">2,477,219</td>
<td style="font-weight: bold; text-align:right">350,837</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/libya-population/">7,060,876</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>14</td><td>1,098</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">692</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">91</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/ethiopia/">Ethiopia</a></td>
<td style="font-weight: bold; text-align:right">490,816</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">7,559 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">467,952</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">15,305</td>
<td style="font-weight: bold; text-align:right">41</td>
<td style="font-weight: bold; text-align:right">4,065</td>
<td style="font-weight: bold; text-align:right">63</td>
<td style="font-weight: bold; text-align:right">5,096,984</td>
<td style="font-weight: bold; text-align:right">42,214</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/ethiopia-population/">120,741,154</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>246</td><td>15,973</td><td>24</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">127</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">92</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/honduras/">Honduras</a></td>
<td style="font-weight: bold; text-align:right">430,672</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">10,912 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">132,498</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">287,262</td>
<td style="font-weight: bold; text-align:right">105</td>
<td style="font-weight: bold; text-align:right">42,123</td>
<td style="font-weight: bold; text-align:right">1,067</td>
<td style="font-weight: bold; text-align:right">1,415,120</td>
<td style="font-weight: bold; text-align:right">138,408</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/honduras-population/">10,224,234</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>24</td><td>937</td><td>7</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">28,096</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">93</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/reunion/">Réunion</a></td>
<td style="font-weight: bold; text-align:right">425,638</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">819 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">418,572</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">6,247</td>
<td style="font-weight: bold; text-align:right">10</td>
<td style="font-weight: bold; text-align:right">468,622</td>
<td style="font-weight: bold; text-align:right">902</td>
<td style="font-weight: bold; text-align:right">1,603,660</td>
<td style="font-weight: bold; text-align:right">1,765,611</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/reunion-population/">908,275</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>2</td><td>1,109</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,878</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">94</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/armenia/">Armenia</a></td>
<td style="font-weight: bold; text-align:right">423,771</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">8,629 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">412,661</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,481</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">142,469</td>
<td style="font-weight: bold; text-align:right">2,901</td>
<td style="font-weight: bold; text-align:right">3,109,931</td>
<td style="font-weight: bold; text-align:right">1,045,538</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/armenia-population/">2,974,478</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>7</td><td>345</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">834</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">95</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/qatar/">Qatar</a></td>
<td style="font-weight: bold; text-align:right">391,945</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">680 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">385,818</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">5,447</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">139,591</td>
<td style="font-weight: bold; text-align:right">242</td>
<td style="font-weight: bold; text-align:right">3,693,147</td>
<td style="font-weight: bold; text-align:right">1,315,315</td>
<td style="font-weight: bold; text-align:right">2,807,805 </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>7</td><td>4,129</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,940</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">96</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/oman/">Oman</a></td>
<td style="font-weight: bold; text-align:right">391,641</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">4,260 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">384,669</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,712</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">72,930</td>
<td style="font-weight: bold; text-align:right">793</td>
<td style="font-weight: bold; text-align:right">25,000,000</td>
<td style="font-weight: bold; text-align:right">4,655,385</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/oman-population/">5,370,125</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>14</td><td>1,261</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">505</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">97</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bosnia-and-herzegovina/">Bosnia and Herzegovina</a></td>
<td style="font-weight: bold; text-align:right">380,498</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">15,814 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">117,458</td>
<td style="font-weight: bold; text-align:right">4,882</td>
<td style="font-weight: bold; text-align:right">1,800,193</td>
<td style="font-weight: bold; text-align:right">555,711</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bosnia-and-herzegovina-population/">3,239,440</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>9</td><td>205</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">53,239</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">98</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/kenya/">Kenya</a></td>
<td style="font-weight: bold; text-align:right">336,445</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">5,668 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">329,122</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,655</td>
<td style="font-weight: bold; text-align:right">3</td>
<td style="font-weight: bold; text-align:right">5,989</td>
<td style="font-weight: bold; text-align:right">101</td>
<td style="font-weight: bold; text-align:right">3,790,310</td>
<td style="font-weight: bold; text-align:right">67,474</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/kenya-population/">56,174,415</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>167</td><td>9,911</td><td>15</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">29</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">99</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/zambia/">Zambia</a></td>
<td style="font-weight: bold; text-align:right">327,102</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">4,008 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">322,093</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,001</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">16,836</td>
<td style="font-weight: bold; text-align:right">206</td>
<td style="font-weight: bold; text-align:right">3,576,701</td>
<td style="font-weight: bold; text-align:right">184,095</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/zambia-population/">19,428,522</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>59</td><td>4,847</td><td>5</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">52</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">100</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/botswana/">Botswana</a></td>
<td style="font-weight: bold; text-align:right">324,841</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,760 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">321,024</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,057</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">132,698</td>
<td style="font-weight: bold; text-align:right">1,127</td>
<td style="font-weight: bold; text-align:right">2,026,898</td>
<td style="font-weight: bold; text-align:right">827,993</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/botswana-population/">2,447,965</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>8</td><td>887</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">432</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">101</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/macedonia/">North Macedonia</a></td>
<td style="font-weight: bold; text-align:right">317,634</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">9,337 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">305,988</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,309</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">152,474</td>
<td style="font-weight: bold; text-align:right">4,482</td>
<td style="font-weight: bold; text-align:right">2,081,293</td>
<td style="font-weight: bold; text-align:right">999,084</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/macedonia-population/">2,083,201</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>7</td><td>223</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,108</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">102</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/albania/">Albania</a></td>
<td style="font-weight: bold; text-align:right">290,954</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">3,517 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">280,374</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">7,063</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">101,327</td>
<td style="font-weight: bold; text-align:right">1,225</td>
<td style="font-weight: bold; text-align:right">1,866,752</td>
<td style="font-weight: bold; text-align:right">650,114</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/albania-population/">2,871,424</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>10</td><td>816</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,460</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">103</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/algeria/">Algeria</a></td>
<td style="font-weight: bold; text-align:right">266,356</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">6,875 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">178,747</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">80,734</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">5,859</td>
<td style="font-weight: bold; text-align:right">151</td>
<td style="font-weight: bold; text-align:right">230,861</td>
<td style="font-weight: bold; text-align:right">5,079</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/algeria-population/">45,457,663</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>171</td><td>6,612</td><td>197</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,776</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">104</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/luxembourg/">Luxembourg</a></td>
<td style="font-weight: bold; text-align:right">263,167</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,094 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">251,249</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,824</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">406,975</td>
<td style="font-weight: bold; text-align:right">1,692</td>
<td style="font-weight: bold; text-align:right">4,307,055</td>
<td style="font-weight: bold; text-align:right">6,660,659</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/luxembourg-population/">646,641</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>591</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">16,739</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">105</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/nigeria/">Nigeria</a></td>
<td style="font-weight: bold; text-align:right">258,934</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">3,144 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">250,472</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">5,318</td>
<td style="font-weight: bold; text-align:right">11</td>
<td style="font-weight: bold; text-align:right">1,196</td>
<td style="font-weight: bold; text-align:right">15</td>
<td style="font-weight: bold; text-align:right">5,349,305</td>
<td style="font-weight: bold; text-align:right">24,707</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/nigeria-population/">216,505,530</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>836</td><td>68,863</td><td>40</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">25</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">106</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/zimbabwe/">Zimbabwe</a></td>
<td style="font-weight: bold; text-align:right">256,047</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">5,566 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">249,834</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">647</td>
<td style="font-weight: bold; text-align:right">12</td>
<td style="font-weight: bold; text-align:right">16,733</td>
<td style="font-weight: bold; text-align:right">364</td>
<td style="font-weight: bold; text-align:right">2,421,838</td>
<td style="font-weight: bold; text-align:right">158,270</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/zimbabwe-population/">15,301,924</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>60</td><td>2,749</td><td>6</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">42</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">107</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/montenegro/">Montenegro</a></td>
<td style="font-weight: bold; text-align:right">245,369</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,730 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">239,369</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3,270</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">390,574</td>
<td style="font-weight: bold; text-align:right">4,346</td>
<td style="font-weight: bold; text-align:right">2,513,663</td>
<td style="font-weight: bold; text-align:right">4,001,202</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/montenegro-population/">628,227</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>230</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">5,205</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">108</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/uzbekistan/">Uzbekistan</a></td>
<td style="font-weight: bold; text-align:right">241,953</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,637 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">238,891</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,425</td>
<td style="font-weight: bold; text-align:right">23</td>
<td style="font-weight: bold; text-align:right">7,023</td>
<td style="font-weight: bold; text-align:right">48</td>
<td style="font-weight: bold; text-align:right">1,377,915</td>
<td style="font-weight: bold; text-align:right">39,994</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/uzbekistan-population/">34,453,391</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>142</td><td>21,047</td><td>25</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">41</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">109</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/mozambique/">Mozambique</a></td>
<td style="font-weight: bold; text-align:right">228,887</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,215 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">226,271</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">401</td>
<td style="font-weight: bold; text-align:right">11</td>
<td style="font-weight: bold; text-align:right">6,929</td>
<td style="font-weight: bold; text-align:right">67</td>
<td style="font-weight: bold; text-align:right">1,358,293</td>
<td style="font-weight: bold; text-align:right">41,120</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/mozambique-population/">33,032,036</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>144</td><td>14,913</td><td>24</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">12</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">110</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/laos/">Laos</a></td>
<td style="font-weight: bold; text-align:right">210,433</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">757 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">28,096</td>
<td style="font-weight: bold; text-align:right">101</td>
<td style="font-weight: bold; text-align:right">1,233,207</td>
<td style="font-weight: bold; text-align:right">164,652</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/laos-population/">7,489,772</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>36</td><td>9,894</td><td>6</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">26,972</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">111</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/martinique/">Martinique</a></td>
<td style="font-weight: bold; text-align:right">207,969</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">987 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">104</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">206,878</td>
<td style="font-weight: bold; text-align:right">8</td>
<td style="font-weight: bold; text-align:right">555,065</td>
<td style="font-weight: bold; text-align:right">2,634</td>
<td style="font-weight: bold; text-align:right">828,928</td>
<td style="font-weight: bold; text-align:right">2,212,392</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/martinique-population/">374,675</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>2</td><td>380</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">552,153</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">112</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/kyrgyzstan/">Kyrgyzstan</a></td>
<td style="font-weight: bold; text-align:right">201,329</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,991 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">196,406</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,932</td>
<td style="font-weight: bold; text-align:right">131</td>
<td style="font-weight: bold; text-align:right">29,859</td>
<td style="font-weight: bold; text-align:right">444</td>
<td style="font-weight: bold; text-align:right">1,907,195</td>
<td style="font-weight: bold; text-align:right">282,858</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/kyrgyzstan-population/">6,742,594</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>33</td><td>2,254</td><td>4</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">287</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">113</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/iceland/">Iceland</a></td>
<td style="font-weight: bold; text-align:right">198,721</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">179 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">574,777</td>
<td style="font-weight: bold; text-align:right">518</td>
<td style="font-weight: bold; text-align:right">1,977,641</td>
<td style="font-weight: bold; text-align:right">5,720,090</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/iceland-population/">345,736</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>1,931</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">355,349</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">114</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/maldives/">Maldives</a></td>
<td style="font-weight: bold; text-align:right">183,491</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">307 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">163,687</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">19,497</td>
<td style="font-weight: bold; text-align:right">25</td>
<td style="font-weight: bold; text-align:right">327,744</td>
<td style="font-weight: bold; text-align:right">548</td>
<td style="font-weight: bold; text-align:right">2,213,831</td>
<td style="font-weight: bold; text-align:right">3,954,251</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/maldives-population/">559,861</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>3</td><td>1,824</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">34,825</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">115</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/afghanistan/">Afghanistan</a></td>
<td style="font-weight: bold; text-align:right">183,358</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">7,728 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">165,318</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,312</td>
<td style="font-weight: bold; text-align:right">1,124</td>
<td style="font-weight: bold; text-align:right">4,504</td>
<td style="font-weight: bold; text-align:right">190</td>
<td style="font-weight: bold; text-align:right">1,012,596</td>
<td style="font-weight: bold; text-align:right">24,875</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/afghanistan-population/">40,707,111</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>222</td><td>5,267</td><td>40</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">253</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">116</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/el-salvador/">El Salvador</a></td>
<td style="font-weight: bold; text-align:right">180,970</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">4,167 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">165,895</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,908</td>
<td style="font-weight: bold; text-align:right">8</td>
<td style="font-weight: bold; text-align:right">27,618</td>
<td style="font-weight: bold; text-align:right">636</td>
<td style="font-weight: bold; text-align:right">2,284,873</td>
<td style="font-weight: bold; text-align:right">348,697</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/el-salvador-population/">6,552,601</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>36</td><td>1,572</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,665</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">117</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/brunei-darussalam/">Brunei </a></td>
<td style="font-weight: bold; text-align:right">179,759</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">225 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">164,116</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">15,418</td>
<td style="font-weight: bold; text-align:right">3</td>
<td style="font-weight: bold; text-align:right">403,067</td>
<td style="font-weight: bold; text-align:right">505</td>
<td style="font-weight: bold; text-align:right">717,784</td>
<td style="font-weight: bold; text-align:right">1,609,461</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/brunei-darussalam-population/">445,978</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>2</td><td>1,982</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">34,571</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">118</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/guadeloupe/">Guadeloupe</a></td>
<td style="font-weight: bold; text-align:right">175,348</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">958 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2,250</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">172,140</td>
<td style="font-weight: bold; text-align:right">19</td>
<td style="font-weight: bold; text-align:right">438,082</td>
<td style="font-weight: bold; text-align:right">2,393</td>
<td style="font-weight: bold; text-align:right">938,039</td>
<td style="font-weight: bold; text-align:right">2,343,557</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/guadeloupe-population/">400,263</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>2</td><td>418</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">430,067</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">119</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/namibia/">Namibia</a></td>
<td style="font-weight: bold; text-align:right">169,253</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">4,065 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">164,813</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">375</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">64,250</td>
<td style="font-weight: bold; text-align:right">1,543</td>
<td style="font-weight: bold; text-align:right">1,062,663</td>
<td style="font-weight: bold; text-align:right">403,400</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/namibia-population/">2,634,269</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>16</td><td>648</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">142</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">120</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/trinidad-and-tobago/">Trinidad and Tobago</a></td>
<td style="font-weight: bold; text-align:right">168,808</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">4,034 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">158,668</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">6,106</td>
<td style="font-weight: bold; text-align:right">18</td>
<td style="font-weight: bold; text-align:right">119,834</td>
<td style="font-weight: bold; text-align:right">2,864</td>
<td style="font-weight: bold; text-align:right">781,653</td>
<td style="font-weight: bold; text-align:right">554,883</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/trinidad-and-tobago-population/">1,408,681</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>8</td><td>349</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,335</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">121</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/uganda/">Uganda</a></td>
<td style="font-weight: bold; text-align:right">168,569</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">3,627 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">100,420</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">64,522</td>
<td style="font-weight: bold; text-align:right">10</td>
<td style="font-weight: bold; text-align:right">3,463</td>
<td style="font-weight: bold; text-align:right">75</td>
<td style="font-weight: bold; text-align:right">2,975,238</td>
<td style="font-weight: bold; text-align:right">61,129</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/uganda-population/">48,671,743</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>289</td><td>13,419</td><td>16</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,326</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">122</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/ghana/">Ghana</a></td>
<td style="font-weight: bold; text-align:right">167,215</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,456 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">165,153</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">606</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">5,163</td>
<td style="font-weight: bold; text-align:right">45</td>
<td style="font-weight: bold; text-align:right">2,479,277</td>
<td style="font-weight: bold; text-align:right">76,547</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/ghana-population/">32,388,938</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>194</td><td>22,245</td><td>13</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">19</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">123</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/jamaica/">Jamaica</a></td>
<td style="font-weight: bold; text-align:right">144,349</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">3,164 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">92,028</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">49,157</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">48,319</td>
<td style="font-weight: bold; text-align:right">1,059</td>
<td style="font-weight: bold; text-align:right">1,138,135</td>
<td style="font-weight: bold; text-align:right">380,980</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/jamaica-population/">2,987,387</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>21</td><td>944</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">16,455</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">124</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cambodia/">Cambodia</a></td>
<td style="font-weight: bold; text-align:right">136,407</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">3,056 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">133,267</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">84</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">7,936</td>
<td style="font-weight: bold; text-align:right">178</td>
<td style="font-weight: bold; text-align:right">3,002,402</td>
<td style="font-weight: bold; text-align:right">174,676</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cambodia-population/">17,188,440</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>126</td><td>5,624</td><td>6</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">5</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">125</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/rwanda/">Rwanda</a></td>
<td style="font-weight: bold; text-align:right">131,808</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,462 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">45,522</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">84,824</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9,689</td>
<td style="font-weight: bold; text-align:right">107</td>
<td style="font-weight: bold; text-align:right">5,608,157</td>
<td style="font-weight: bold; text-align:right">412,254</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/rwanda-population/">13,603,629</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>103</td><td>9,305</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,235</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">126</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cameroon/">Cameroon</a></td>
<td style="font-weight: bold; text-align:right">120,068</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,931 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">117,791</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">346</td>
<td style="font-weight: bold; text-align:right">13</td>
<td style="font-weight: bold; text-align:right">4,306</td>
<td style="font-weight: bold; text-align:right">69</td>
<td style="font-weight: bold; text-align:right">1,751,774</td>
<td style="font-weight: bold; text-align:right">62,818</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cameroon-population/">27,886,520</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>232</td><td>14,441</td><td>16</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">12</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">127</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/malta/">Malta</a></td>
<td style="font-weight: bold; text-align:right">110,191</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">768 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">101,772</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">7,651</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">248,218</td>
<td style="font-weight: bold; text-align:right">1,730</td>
<td style="font-weight: bold; text-align:right">1,994,827</td>
<td style="font-weight: bold; text-align:right">4,493,582</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/malta-population/">443,928</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>4</td><td>578</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">17,235</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">128</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/angola/">Angola</a></td>
<td style="font-weight: bold; text-align:right">101,600</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,900 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">97,149</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,551</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,908</td>
<td style="font-weight: bold; text-align:right">54</td>
<td style="font-weight: bold; text-align:right">1,499,795</td>
<td style="font-weight: bold; text-align:right">42,924</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/angola-population/">34,940,471</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>344</td><td>18,390</td><td>23</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">73</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">129</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/democratic-republic-of-the-congo/">DRC</a></td>
<td style="font-weight: bold; text-align:right">91,737</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,376 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">50,930</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">39,431</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">965</td>
<td style="font-weight: bold; text-align:right">14</td>
<td style="font-weight: bold; text-align:right">846,704</td>
<td style="font-weight: bold; text-align:right">8,905</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/democratic-republic-of-the-congo-population/">95,085,590</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>1,037</td><td>69,103</td><td>112</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">415</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">130</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/french-guiana/">French Guiana</a></td>
<td style="font-weight: bold; text-align:right">89,779</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">402 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">11,254</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">78,123</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">285,567</td>
<td style="font-weight: bold; text-align:right">1,279</td>
<td style="font-weight: bold; text-align:right">644,972</td>
<td style="font-weight: bold; text-align:right">2,051,509</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/french-guiana-population/">314,389</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>4</td><td>782</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">248,492</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">131</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/barbados/">Barbados</a></td>
<td style="font-weight: bold; text-align:right">87,002</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">479 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">84,706</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,817</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">301,997</td>
<td style="font-weight: bold; text-align:right">1,663</td>
<td style="font-weight: bold; text-align:right">714,126</td>
<td style="font-weight: bold; text-align:right">2,478,838</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/barbados-population/">288,089</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>3</td><td>601</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,307</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">132</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/malawi/">Malawi</a></td>
<td style="font-weight: bold; text-align:right">86,823</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,651 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">83,506</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">666</td>
<td style="font-weight: bold; text-align:right">67</td>
<td style="font-weight: bold; text-align:right">4,312</td>
<td style="font-weight: bold; text-align:right">132</td>
<td style="font-weight: bold; text-align:right">596,340</td>
<td style="font-weight: bold; text-align:right">29,620</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/malawi-population/">20,132,870</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>232</td><td>7,594</td><td>34</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">33</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">133</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/senegal/">Senegal</a></td>
<td style="font-weight: bold; text-align:right">86,631</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,968 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">84,535</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">128</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,911</td>
<td style="font-weight: bold; text-align:right">112</td>
<td style="font-weight: bold; text-align:right">1,123,868</td>
<td style="font-weight: bold; text-align:right">63,714</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/senegal-population/">17,639,141</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>204</td><td>8,963</td><td>16</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">7</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">134</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/channel-islands/">Channel Islands</a></td>
<td style="font-weight: bold; text-align:right">85,848</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">181 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">82,813</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,854</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">484,705</td>
<td style="font-weight: bold; text-align:right">1,022</td>
<td style="font-weight: bold; text-align:right">1,252,808</td>
<td style="font-weight: bold; text-align:right">7,073,456</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/channel-islands-population/">177,114</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>979</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">16,114</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">135</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cote-d-ivoire/">Ivory Coast</a></td>
<td style="font-weight: bold; text-align:right">84,347</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">806 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">83,259</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">282</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,045</td>
<td style="font-weight: bold; text-align:right">29</td>
<td style="font-weight: bold; text-align:right">1,563,566</td>
<td style="font-weight: bold; text-align:right">56,439</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cote-d-ivoire-population/">27,703,542</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>328</td><td>34,372</td><td>18</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">10</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">136</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/suriname/">Suriname</a></td>
<td style="font-weight: bold; text-align:right">80,919</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,377 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">49,590</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">29,952</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">135,476</td>
<td style="font-weight: bold; text-align:right">2,305</td>
<td style="font-weight: bold; text-align:right">238,251</td>
<td style="font-weight: bold; text-align:right">398,883</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/suriname-population/">597,296</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>7</td><td>434</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">50,146</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">137</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/french-polynesia/">French Polynesia</a></td>
<td style="font-weight: bold; text-align:right">73,858</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">649 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right">7</td>
<td style="font-weight: bold; text-align:right">259,879</td>
<td style="font-weight: bold; text-align:right">2,284</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/french-polynesia-population/">284,202</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>4</td><td>438</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">139,721</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">138</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/swaziland/">Eswatini</a></td>
<td style="font-weight: bold; text-align:right">73,230</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,417 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">71,731</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">82</td>
<td style="font-weight: bold; text-align:right">11</td>
<td style="font-weight: bold; text-align:right">61,822</td>
<td style="font-weight: bold; text-align:right">1,196</td>
<td style="font-weight: bold; text-align:right">1,038,765</td>
<td style="font-weight: bold; text-align:right">876,938</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/swaziland-population/">1,184,537</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>16</td><td>836</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">69</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">139</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/guyana/">Guyana</a></td>
<td style="font-weight: bold; text-align:right">68,627</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,264 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">66,447</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">916</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">86,405</td>
<td style="font-weight: bold; text-align:right">1,591</td>
<td style="font-weight: bold; text-align:right">668,394</td>
<td style="font-weight: bold; text-align:right">841,539</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/guyana-population/">794,252</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>12</td><td>628</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,153</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">140</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/fiji/">Fiji</a></td>
<td style="font-weight: bold; text-align:right">66,713</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">869 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">64,320</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,524</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">73,341</td>
<td style="font-weight: bold; text-align:right">955</td>
<td style="font-weight: bold; text-align:right">587,132</td>
<td style="font-weight: bold; text-align:right">645,467</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/fiji-population/">909,624</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>14</td><td>1,047</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,675</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">141</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/new-caledonia/">New Caledonia</a></td>
<td style="font-weight: bold; text-align:right">66,596</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">314 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">64,483</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,799</td>
<td style="font-weight: bold; text-align:right">9</td>
<td style="font-weight: bold; text-align:right">228,800</td>
<td style="font-weight: bold; text-align:right">1,079</td>
<td style="font-weight: bold; text-align:right">98,964</td>
<td style="font-weight: bold; text-align:right">340,004</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/new-caledonia-population/">291,067</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>4</td><td>927</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,181</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">142</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/madagascar/">Madagascar</a></td>
<td style="font-weight: bold; text-align:right">66,098</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,403 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">63,895</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">800</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">2,269</td>
<td style="font-weight: bold; text-align:right">48</td>
<td style="font-weight: bold; text-align:right">478,036</td>
<td style="font-weight: bold; text-align:right">16,407</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/madagascar-population/">29,135,325</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>441</td><td>20,766</td><td>61</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">27</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">143</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/belize/">Belize</a></td>
<td style="font-weight: bold; text-align:right">65,840</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">680 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">64,409</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">751</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">159,700</td>
<td style="font-weight: bold; text-align:right">1,649</td>
<td style="font-weight: bold; text-align:right">576,016</td>
<td style="font-weight: bold; text-align:right">1,397,168</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/belize-population/">412,274</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>6</td><td>606</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,822</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">144</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/sudan/">Sudan</a></td>
<td style="font-weight: bold; text-align:right">62,795</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">4,955 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,367</td>
<td style="font-weight: bold; text-align:right">108</td>
<td style="font-weight: bold; text-align:right">562,941</td>
<td style="font-weight: bold; text-align:right">12,257</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/sudan-population/">45,926,466</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>731</td><td>9,269</td><td>82</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">381</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">145</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cabo-verde/">Cabo Verde</a></td>
<td style="font-weight: bold; text-align:right">61,776</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">409 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">60,941</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">426</td>
<td style="font-weight: bold; text-align:right">23</td>
<td style="font-weight: bold; text-align:right">108,715</td>
<td style="font-weight: bold; text-align:right">720</td>
<td style="font-weight: bold; text-align:right">401,416</td>
<td style="font-weight: bold; text-align:right">706,421</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cabo-verde-population/">568,239</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>9</td><td>1,389</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">750</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">146</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/mauritania/">Mauritania</a></td>
<td style="font-weight: bold; text-align:right">61,640</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">986 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">58,986</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,668</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">12,586</td>
<td style="font-weight: bold; text-align:right">201</td>
<td style="font-weight: bold; text-align:right">887,638</td>
<td style="font-weight: bold; text-align:right">181,239</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/mauritania-population/">4,897,620</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>79</td><td>4,967</td><td>6</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">341</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">147</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bhutan/">Bhutan</a></td>
<td style="font-weight: bold; text-align:right">59,940</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">21 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">59,845</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">74</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">75,984</td>
<td style="font-weight: bold; text-align:right">27</td>
<td style="font-weight: bold; text-align:right">2,303,734</td>
<td style="font-weight: bold; text-align:right">2,920,381</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bhutan-population/">788,847</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>13</td><td>37,564</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">94</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">148</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/syria/">Syria</a></td>
<td style="font-weight: bold; text-align:right">55,966</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">3,150 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">52,778</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">38</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,048</td>
<td style="font-weight: bold; text-align:right">172</td>
<td style="font-weight: bold; text-align:right">146,269</td>
<td style="font-weight: bold; text-align:right">7,965</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/syria-population/">18,363,203</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>328</td><td>5,830</td><td>126</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">149</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/gabon/">Gabon</a></td>
<td style="font-weight: bold; text-align:right">48,157</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">305 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">47,391</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">461</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">20,648</td>
<td style="font-weight: bold; text-align:right">131</td>
<td style="font-weight: bold; text-align:right">1,604,748</td>
<td style="font-weight: bold; text-align:right">688,057</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/gabon-population/">2,332,288</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>48</td><td>7,647</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">198</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">150</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/seychelles/">Seychelles</a></td>
<td style="font-weight: bold; text-align:right">45,185</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">167 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">44,755</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">263</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">453,747</td>
<td style="font-weight: bold; text-align:right">1,677</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/seychelles-population/">99,582</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>2</td><td>596</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,641</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">151</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/curacao/">Curaçao</a></td>
<td style="font-weight: bold; text-align:right">44,782</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">280 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">44,339</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">163</td>
<td style="font-weight: bold; text-align:right">3</td>
<td style="font-weight: bold; text-align:right">270,661</td>
<td style="font-weight: bold; text-align:right">1,692</td>
<td style="font-weight: bold; text-align:right">496,693</td>
<td style="font-weight: bold; text-align:right">3,002,001</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/curacao-population/">165,454</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>4</td><td>591</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">985</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">152</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/papua-new-guinea/">Papua New Guinea</a></td>
<td style="font-weight: bold; text-align:right">44,758</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">662 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">43,982</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">114</td>
<td style="font-weight: bold; text-align:right">7</td>
<td style="font-weight: bold; text-align:right">4,817</td>
<td style="font-weight: bold; text-align:right">71</td>
<td style="font-weight: bold; text-align:right">249,149</td>
<td style="font-weight: bold; text-align:right">26,816</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/papua-new-guinea-population/">9,290,895</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>208</td><td>14,035</td><td>37</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">12</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">153</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/andorra/">Andorra</a></td>
<td style="font-weight: bold; text-align:right">44,671</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">153 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">43,802</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">716</td>
<td style="font-weight: bold; text-align:right">14</td>
<td style="font-weight: bold; text-align:right">576,281</td>
<td style="font-weight: bold; text-align:right">1,974</td>
<td style="font-weight: bold; text-align:right">249,838</td>
<td style="font-weight: bold; text-align:right">3,223,051</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/andorra-population/">77,516</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>507</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9,237</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">154</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/burundi/">Burundi</a></td>
<td style="font-weight: bold; text-align:right">43,060</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">38 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,415</td>
<td style="font-weight: bold; text-align:right">3</td>
<td style="font-weight: bold; text-align:right">345,742</td>
<td style="font-weight: bold; text-align:right">27,420</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/burundi-population/">12,609,279</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>293</td><td>331,823</td><td>36</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,351</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">155</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/aruba/">Aruba</a></td>
<td style="font-weight: bold; text-align:right">41,448</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">224 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">40,882</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">342</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">384,897</td>
<td style="font-weight: bold; text-align:right">2,080</td>
<td style="font-weight: bold; text-align:right">177,885</td>
<td style="font-weight: bold; text-align:right">1,651,886</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/aruba-population/">107,686</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>3</td><td>481</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,176</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">156</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/mauritius/">Mauritius</a></td>
<td style="font-weight: bold; text-align:right">38,737</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,008 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">36,856</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">873</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">30,357</td>
<td style="font-weight: bold; text-align:right">790</td>
<td style="font-weight: bold; text-align:right">358,675</td>
<td style="font-weight: bold; text-align:right">281,082</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/mauritius-population/">1,276,049</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>33</td><td>1,266</td><td>4</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">684</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">157</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/mayotte/">Mayotte</a></td>
<td style="font-weight: bold; text-align:right">37,958</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">187 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2,964</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">34,807</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">132,641</td>
<td style="font-weight: bold; text-align:right">653</td>
<td style="font-weight: bold; text-align:right">176,919</td>
<td style="font-weight: bold; text-align:right">618,230</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/mayotte-population/">286,170</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>8</td><td>1,530</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">121,630</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">158</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/togo/">Togo</a></td>
<td style="font-weight: bold; text-align:right">37,718</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">275 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">37,164</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">279</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,349</td>
<td style="font-weight: bold; text-align:right">32</td>
<td style="font-weight: bold; text-align:right">760,061</td>
<td style="font-weight: bold; text-align:right">87,641</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/togo-population/">8,672,391</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>230</td><td>31,536</td><td>11</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">32</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">159</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/tanzania/">Tanzania</a></td>
<td style="font-weight: bold; text-align:right">37,510</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">841 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right">7</td>
<td style="font-weight: bold; text-align:right">594</td>
<td style="font-weight: bold; text-align:right">13</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/tanzania-population/">63,186,161</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>1,685</td><td>75,132</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">577</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">160</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/guinea/">Guinea</a></td>
<td style="font-weight: bold; text-align:right">37,358</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">443 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">36,419</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">496</td>
<td style="font-weight: bold; text-align:right">8</td>
<td style="font-weight: bold; text-align:right">2,696</td>
<td style="font-weight: bold; text-align:right">32</td>
<td style="font-weight: bold; text-align:right">660,107</td>
<td style="font-weight: bold; text-align:right">47,642</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/guinea-population/">13,855,517</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>371</td><td>31,277</td><td>21</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">36</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">161</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/isle-of-man/">Isle of Man</a></td>
<td style="font-weight: bold; text-align:right">37,239</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">110 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">26,794</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,335</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">433,284</td>
<td style="font-weight: bold; text-align:right">1,280</td>
<td style="font-weight: bold; text-align:right">150,753</td>
<td style="font-weight: bold; text-align:right">1,754,043</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/isle-of-man-population/">85,946</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>781</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">120,250</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">162</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bahamas/">Bahamas</a></td>
<td style="font-weight: bold; text-align:right">36,354</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">822 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">34,842</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">690</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">90,688</td>
<td style="font-weight: bold; text-align:right">2,051</td>
<td style="font-weight: bold; text-align:right">241,422</td>
<td style="font-weight: bold; text-align:right">602,248</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bahamas-population/">400,868</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>11</td><td>488</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,721</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">163</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/faeroe-islands/">Faeroe Islands</a></td>
<td style="font-weight: bold; text-align:right">34,658</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">28 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right">5</td>
<td style="font-weight: bold; text-align:right">703,859</td>
<td style="font-weight: bold; text-align:right">569</td>
<td style="font-weight: bold; text-align:right">778,000</td>
<td style="font-weight: bold; text-align:right">15,800,162</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/faeroe-islands-population/">49,240</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>1</td><td>1,759</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">547,055</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">164</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/lesotho/">Lesotho</a></td>
<td style="font-weight: bold; text-align:right">34,040</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">702 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">24,155</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">9,183</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">15,638</td>
<td style="font-weight: bold; text-align:right">323</td>
<td style="font-weight: bold; text-align:right">431,221</td>
<td style="font-weight: bold; text-align:right">198,107</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/lesotho-population/">2,176,704</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>64</td><td>3,101</td><td>5</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,219</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">165</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/haiti/">Haiti</a></td>
<td style="font-weight: bold; text-align:right">32,070</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">837 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">29,884</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,349</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,745</td>
<td style="font-weight: bold; text-align:right">72</td>
<td style="font-weight: bold; text-align:right">132,422</td>
<td style="font-weight: bold; text-align:right">11,333</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/haiti-population/">11,684,564</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>364</td><td>13,960</td><td>88</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">115</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">166</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/mali/">Mali</a></td>
<td style="font-weight: bold; text-align:right">31,196</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">737 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">30,367</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">92</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,455</td>
<td style="font-weight: bold; text-align:right">34</td>
<td style="font-weight: bold; text-align:right">707,472</td>
<td style="font-weight: bold; text-align:right">33,007</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/mali-population/">21,434,224</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>687</td><td>29,083</td><td>30</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">167</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cayman-islands/">Cayman Islands</a></td>
<td style="font-weight: bold; text-align:right">27,966</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">29 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">8,553</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">19,384</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">415,616</td>
<td style="font-weight: bold; text-align:right">431</td>
<td style="font-weight: bold; text-align:right">222,773</td>
<td style="font-weight: bold; text-align:right">3,310,739</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cayman-islands-population/">67,288</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>2</td><td>2,320</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">288,075</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">168</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saint-lucia/">Saint Lucia</a></td>
<td style="font-weight: bold; text-align:right">27,408</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">385 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">26,840</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">183</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">147,888</td>
<td style="font-weight: bold; text-align:right">2,077</td>
<td style="font-weight: bold; text-align:right">209,716</td>
<td style="font-weight: bold; text-align:right">1,131,582</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saint-lucia-population/">185,330</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>7</td><td>481</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">987</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">169</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/benin/">Benin</a></td>
<td style="font-weight: bold; text-align:right">27,216</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">163 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">25,506</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,547</td>
<td style="font-weight: bold; text-align:right">5</td>
<td style="font-weight: bold; text-align:right">2,132</td>
<td style="font-weight: bold; text-align:right">13</td>
<td style="font-weight: bold; text-align:right">604,310</td>
<td style="font-weight: bold; text-align:right">47,332</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/benin-population/">12,767,443</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>469</td><td>78,328</td><td>21</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">121</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">170</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/somalia/">Somalia</a></td>
<td style="font-weight: bold; text-align:right">26,900</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,350 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">13,182</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">12,368</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,602</td>
<td style="font-weight: bold; text-align:right">80</td>
<td style="font-weight: bold; text-align:right">400,466</td>
<td style="font-weight: bold; text-align:right">23,847</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/somalia-population/">16,792,828</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>624</td><td>12,439</td><td>42</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">737</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">171</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/congo/">Congo</a></td>
<td style="font-weight: bold; text-align:right">24,421</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">386 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">20,178</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3,857</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,215</td>
<td style="font-weight: bold; text-align:right">67</td>
<td style="font-weight: bold; text-align:right">347,815</td>
<td style="font-weight: bold; text-align:right">60,034</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/congo-population/">5,793,654</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>237</td><td>15,009</td><td>17</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">666</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">172</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/timor-leste/">Timor-Leste</a></td>
<td style="font-weight: bold; text-align:right">22,975</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">133 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">22,829</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">13</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">16,777</td>
<td style="font-weight: bold; text-align:right">97</td>
<td style="font-weight: bold; text-align:right">271,206</td>
<td style="font-weight: bold; text-align:right">198,048</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/timor-leste-population/">1,369,395</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>60</td><td>10,296</td><td>5</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">173</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/solomon-islands/">Solomon Islands</a></td>
<td style="font-weight: bold; text-align:right">21,544</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">153 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">16,357</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">5,034</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">29,878</td>
<td style="font-weight: bold; text-align:right">212</td>
<td style="font-weight: bold; text-align:right">5,117</td>
<td style="font-weight: bold; text-align:right">7,097</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/solomon-islands-population/">721,059</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>33</td><td>4,713</td><td>141</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,981</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">174</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/burkina-faso/">Burkina Faso</a></td>
<td style="font-weight: bold; text-align:right">20,853</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">382 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">20,439</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">32</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">945</td>
<td style="font-weight: bold; text-align:right">17</td>
<td style="font-weight: bold; text-align:right">248,995</td>
<td style="font-weight: bold; text-align:right">11,284</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/burkina-faso-population/">22,066,182</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>1,058</td><td>57,765</td><td>89</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">175</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/gibraltar/">Gibraltar</a></td>
<td style="font-weight: bold; text-align:right">19,862</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">105 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">16,579</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3,178</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">589,884</td>
<td style="font-weight: bold; text-align:right">3,118</td>
<td style="font-weight: bold; text-align:right">534,283</td>
<td style="font-weight: bold; text-align:right">15,867,750</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/gibraltar-population/">33,671</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>321</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">94,384</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">176</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/san-marino/">San Marino</a></td>
<td style="font-weight: bold; text-align:right">18,977</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">116 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">18,267</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">594</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">556,902</td>
<td style="font-weight: bold; text-align:right">3,404</td>
<td style="font-weight: bold; text-align:right">152,231</td>
<td style="font-weight: bold; text-align:right">4,467,396</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/san-marino-population/">34,076</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>294</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">17,432</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">177</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/grenada/">Grenada</a></td>
<td style="font-weight: bold; text-align:right">18,592</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">233 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">18,178</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">181</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">163,689</td>
<td style="font-weight: bold; text-align:right">2,051</td>
<td style="font-weight: bold; text-align:right">172,268</td>
<td style="font-weight: bold; text-align:right">1,516,697</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/grenada-population/">113,581</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>6</td><td>487</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,594</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">178</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/nicaragua/">Nicaragua</a></td>
<td style="font-weight: bold; text-align:right">18,491</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">225 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">4,225</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">14,041</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,725</td>
<td style="font-weight: bold; text-align:right">33</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/nicaragua-population/">6,784,471</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>367</td><td>30,153</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,070</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">179</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/liechtenstein/">Liechtenstein</a></td>
<td style="font-weight: bold; text-align:right">18,299</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">85 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">17,958</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">256</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">477,158</td>
<td style="font-weight: bold; text-align:right">2,216</td>
<td style="font-weight: bold; text-align:right">102,174</td>
<td style="font-weight: bold; text-align:right">2,664,250</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/liechtenstein-population/">38,350</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>451</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,675</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">180</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/tajikistan/">Tajikistan</a></td>
<td style="font-weight: bold; text-align:right">17,786</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">125 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">17,264</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">397</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,784</td>
<td style="font-weight: bold; text-align:right">13</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/tajikistan-population/">9,972,283</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>561</td><td>79,778</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">40</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">181</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/south-sudan/">South Sudan</a></td>
<td style="font-weight: bold; text-align:right">17,733</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">138 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">15,630</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,965</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">1,547</td>
<td style="font-weight: bold; text-align:right">12</td>
<td style="font-weight: bold; text-align:right">410,280</td>
<td style="font-weight: bold; text-align:right">35,801</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/south-sudan-population/">11,460,002</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>646</td><td>83,043</td><td>28</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">171</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">182</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bermuda/">Bermuda</a></td>
<td style="font-weight: bold; text-align:right">16,722</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">141 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">16,201</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">380</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">270,534</td>
<td style="font-weight: bold; text-align:right">2,281</td>
<td style="font-weight: bold; text-align:right">958,749</td>
<td style="font-weight: bold; text-align:right">15,510,977</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bermuda-population/">61,811</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>4</td><td>438</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,148</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">183</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/equatorial-guinea/">Equatorial Guinea</a></td>
<td style="font-weight: bold; text-align:right">16,504</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">183 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">15,862</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">459</td>
<td style="font-weight: bold; text-align:right">5</td>
<td style="font-weight: bold; text-align:right">11,028</td>
<td style="font-weight: bold; text-align:right">122</td>
<td style="font-weight: bold; text-align:right">346,685</td>
<td style="font-weight: bold; text-align:right">231,664</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/equatorial-guinea-population/">1,496,500</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>91</td><td>8,178</td><td>4</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">307</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">184</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/djibouti/">Djibouti</a></td>
<td style="font-weight: bold; text-align:right">15,690</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">189 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">15,427</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">74</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">15,425</td>
<td style="font-weight: bold; text-align:right">186</td>
<td style="font-weight: bold; text-align:right">305,941</td>
<td style="font-weight: bold; text-align:right">300,782</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/djibouti-population/">1,017,152</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>65</td><td>5,382</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">73</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">185</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/samoa/">Samoa</a></td>
<td style="font-weight: bold; text-align:right">15,134</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">29 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,605</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">13,500</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">75,260</td>
<td style="font-weight: bold; text-align:right">144</td>
<td style="font-weight: bold; text-align:right">168,260</td>
<td style="font-weight: bold; text-align:right">836,744</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/samoa-population/">201,089</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>13</td><td>6,934</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">67,134</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">186</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/dominica/">Dominica</a></td>
<td style="font-weight: bold; text-align:right">14,852</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">68 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">14,554</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">230</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">205,283</td>
<td style="font-weight: bold; text-align:right">940</td>
<td style="font-weight: bold; text-align:right">210,195</td>
<td style="font-weight: bold; text-align:right">2,905,292</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/dominica-population/">72,349</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>5</td><td>1,064</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,179</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">187</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/central-african-republic/">CAR</a></td>
<td style="font-weight: bold; text-align:right">14,712</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">113 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">6,859</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">7,740</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">2,942</td>
<td style="font-weight: bold; text-align:right">23</td>
<td style="font-weight: bold; text-align:right">81,294</td>
<td style="font-weight: bold; text-align:right">16,258</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/central-african-republic-population/">5,000,148</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>340</td><td>44,249</td><td>62</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,548</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">188</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/monaco/">Monaco</a></td>
<td style="font-weight: bold; text-align:right">13,696</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">57 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">13,338</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">301</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">344,069</td>
<td style="font-weight: bold; text-align:right">1,432</td>
<td style="font-weight: bold; text-align:right">77,770</td>
<td style="font-weight: bold; text-align:right">1,953,726</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/monaco-population/">39,806</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>698</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">7,562</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">189</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/tonga/">Tonga</a></td>
<td style="font-weight: bold; text-align:right">12,382</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">12 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">12,223</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">147</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">114,515</td>
<td style="font-weight: bold; text-align:right">111</td>
<td style="font-weight: bold; text-align:right">535,009</td>
<td style="font-weight: bold; text-align:right">4,948,014</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/tonga-population/">108,126</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>9</td><td>9,011</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,360</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">190</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/gambia/">Gambia</a></td>
<td style="font-weight: bold; text-align:right">12,009</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">365 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">11,591</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">53</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,701</td>
<td style="font-weight: bold; text-align:right">143</td>
<td style="font-weight: bold; text-align:right">155,686</td>
<td style="font-weight: bold; text-align:right">60,948</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/gambia-population/">2,554,413</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>213</td><td>6,998</td><td>16</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">21</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">191</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/greenland/">Greenland</a></td>
<td style="font-weight: bold; text-align:right">11,971</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">21 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2,761</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">9,189</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">210,128</td>
<td style="font-weight: bold; text-align:right">369</td>
<td style="font-weight: bold; text-align:right">164,926</td>
<td style="font-weight: bold; text-align:right">2,894,962</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/greenland-population/">56,970</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>5</td><td>2,713</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">161,295</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">192</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/yemen/">Yemen</a></td>
<td style="font-weight: bold; text-align:right">11,832</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,149 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">9,108</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">575</td>
<td style="font-weight: bold; text-align:right">23</td>
<td style="font-weight: bold; text-align:right">380</td>
<td style="font-weight: bold; text-align:right">69</td>
<td style="font-weight: bold; text-align:right">265,253</td>
<td style="font-weight: bold; text-align:right">8,513</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/yemen-population/">31,158,750</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>2,633</td><td>14,499</td><td>117</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">18</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">193</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/vanuatu/">Vanuatu</a></td>
<td style="font-weight: bold; text-align:right">11,690</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">14 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">11,502</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">174</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">36,337</td>
<td style="font-weight: bold; text-align:right">44</td>
<td style="font-weight: bold; text-align:right">24,976</td>
<td style="font-weight: bold; text-align:right">77,636</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/vanuatu-population/">321,707</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>28</td><td>22,979</td><td>13</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">541</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">194</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saint-martin/">Saint Martin</a></td>
<td style="font-weight: bold; text-align:right">11,224</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">63 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,399</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">9,762</td>
<td style="font-weight: bold; text-align:right">7</td>
<td style="font-weight: bold; text-align:right">280,572</td>
<td style="font-weight: bold; text-align:right">1,575</td>
<td style="font-weight: bold; text-align:right">112,382</td>
<td style="font-weight: bold; text-align:right">2,809,269</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saint-martin-population/">40,004</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>4</td><td>635</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">244,026</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">195</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/sint-maarten/">Sint Maarten</a></td>
<td style="font-weight: bold; text-align:right">10,656</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">87 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">10,524</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">45</td>
<td style="font-weight: bold; text-align:right">10</td>
<td style="font-weight: bold; text-align:right">242,933</td>
<td style="font-weight: bold; text-align:right">1,983</td>
<td style="font-weight: bold; text-align:right">62,056</td>
<td style="font-weight: bold; text-align:right">1,414,736</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/sint-maarten-population/">43,864</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>4</td><td>504</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,026</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">196</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/caribbean-netherlands/">Caribbean Netherlands</a></td>
<td style="font-weight: bold; text-align:right">10,567</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">35 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">10,424</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">108</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">395,501</td>
<td style="font-weight: bold; text-align:right">1,310</td>
<td style="font-weight: bold; text-align:right">30,126</td>
<td style="font-weight: bold; text-align:right">1,127,554</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/caribbean-netherlands-population/">26,718</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>3</td><td>763</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,042</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">197</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/eritrea/">Eritrea</a></td>
<td style="font-weight: bold; text-align:right">9,852</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">103 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">9,702</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">47</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,702</td>
<td style="font-weight: bold; text-align:right">28</td>
<td style="font-weight: bold; text-align:right">23,693</td>
<td style="font-weight: bold; text-align:right">6,498</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/eritrea-population/">3,646,011</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>370</td><td>35,398</td><td>154</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">13</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">198</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/niger/">Niger</a></td>
<td style="font-weight: bold; text-align:right">9,096</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">311 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">8,628</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">157</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">350</td>
<td style="font-weight: bold; text-align:right">12</td>
<td style="font-weight: bold; text-align:right">254,538</td>
<td style="font-weight: bold; text-align:right">9,796</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/niger-population/">25,984,404</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>2,857</td><td>83,551</td><td>102</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">199</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/antigua-and-barbuda/">Antigua and Barbuda</a></td>
<td style="font-weight: bold; text-align:right">8,704</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">143 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">8,528</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">33</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">87,412</td>
<td style="font-weight: bold; text-align:right">1,436</td>
<td style="font-weight: bold; text-align:right">18,901</td>
<td style="font-weight: bold; text-align:right">189,819</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/antigua-and-barbuda-population/">99,574</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>11</td><td>696</td><td>5</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">331</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">200</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/guinea-bissau/">Guinea-Bissau</a></td>
<td style="font-weight: bold; text-align:right">8,400</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">171 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">8,151</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">78</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">4,073</td>
<td style="font-weight: bold; text-align:right">83</td>
<td style="font-weight: bold; text-align:right">145,231</td>
<td style="font-weight: bold; text-align:right">70,419</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/guinea-bissau-population/">2,062,372</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>246</td><td>12,061</td><td>14</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">38</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">201</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/comoros/">Comoros</a></td>
<td style="font-weight: bold; text-align:right">8,209</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">160 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">7,933</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">116</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9,049</td>
<td style="font-weight: bold; text-align:right">176</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/comoros-population/">907,185</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>111</td><td>5,670</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">128</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">202</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/sierra-leone/">Sierra Leone</a></td>
<td style="font-weight: bold; text-align:right">7,718</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">125 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">929</td>
<td style="font-weight: bold; text-align:right">15</td>
<td style="font-weight: bold; text-align:right">259,958</td>
<td style="font-weight: bold; text-align:right">31,297</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/sierra-leone-population/">8,306,116</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>1,076</td><td>66,449</td><td>32</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">334</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">203</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/liberia/">Liberia</a></td>
<td style="font-weight: bold; text-align:right">7,504</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">294 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">5,747</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,463</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">1,416</td>
<td style="font-weight: bold; text-align:right">55</td>
<td style="font-weight: bold; text-align:right">139,824</td>
<td style="font-weight: bold; text-align:right">26,388</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/liberia-population/">5,298,865</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>706</td><td>18,023</td><td>38</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">276</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">204</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/chad/">Chad</a></td>
<td style="font-weight: bold; text-align:right">7,427</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">193 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">4,874</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,360</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">427</td>
<td style="font-weight: bold; text-align:right">11</td>
<td style="font-weight: bold; text-align:right">191,341</td>
<td style="font-weight: bold; text-align:right">11,008</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/chad-population/">17,382,135</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>2,340</td><td>90,063</td><td>91</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">136</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">205</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/british-virgin-islands/">British Virgin Islands</a></td>
<td style="font-weight: bold; text-align:right">7,131</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">63 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">232,743</td>
<td style="font-weight: bold; text-align:right">2,056</td>
<td style="font-weight: bold; text-align:right">105,790</td>
<td style="font-weight: bold; text-align:right">3,452,789</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/british-virgin-islands-population/">30,639</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>4</td><td>486</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">783</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">206</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saint-vincent-and-the-grenadines/">St. Vincent Grenadines</a></td>
<td style="font-weight: bold; text-align:right">7,035</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">114 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">6,641</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">280</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">63,007</td>
<td style="font-weight: bold; text-align:right">1,021</td>
<td style="font-weight: bold; text-align:right">100,334</td>
<td style="font-weight: bold; text-align:right">898,607</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saint-vincent-and-the-grenadines-population/">111,655</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>16</td><td>979</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,508</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">207</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/nauru/">Nauru</a></td>
<td style="font-weight: bold; text-align:right">6,930</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">3,171</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3,758</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">632,184</td>
<td style="font-weight: bold; text-align:right">91</td>
<td style="font-weight: bold; text-align:right">14,517</td>
<td style="font-weight: bold; text-align:right">1,324,302</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/nauru-population/">10,962</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>2</td><td>10,962</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">342,821</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">208</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saint-kitts-and-nevis/">Saint Kitts and Nevis</a></td>
<td style="font-weight: bold; text-align:right">6,355</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">45 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">6,189</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">121</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">117,768</td>
<td style="font-weight: bold; text-align:right">834</td>
<td style="font-weight: bold; text-align:right">108,021</td>
<td style="font-weight: bold; text-align:right">2,001,798</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saint-kitts-and-nevis-population/">53,962</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>8</td><td>1,199</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,242</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">209</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/turks-and-caicos-islands/">Turks and Caicos</a></td>
<td style="font-weight: bold; text-align:right">6,255</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">36 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">6,144</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">75</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">157,240</td>
<td style="font-weight: bold; text-align:right">905</td>
<td style="font-weight: bold; text-align:right">548,537</td>
<td style="font-weight: bold; text-align:right">13,789,266</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/turks-and-caicos-islands-population/">39,780</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>6</td><td>1,105</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,885</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">210</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/sao-tome-and-principe/">Sao Tome and Principe</a></td>
<td style="font-weight: bold; text-align:right">6,079</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">74 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">5,990</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">15</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">26,731</td>
<td style="font-weight: bold; text-align:right">325</td>
<td style="font-weight: bold; text-align:right">29,036</td>
<td style="font-weight: bold; text-align:right">127,678</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/sao-tome-and-principe-population/">227,416</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>37</td><td>3,073</td><td>8</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">66</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">211</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cook-islands/">Cook Islands</a></td>
<td style="font-weight: bold; text-align:right">5,827</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">5,802</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">24</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">331,136</td>
<td style="font-weight: bold; text-align:right">57</td>
<td style="font-weight: bold; text-align:right">19,690</td>
<td style="font-weight: bold; text-align:right">1,118,941</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cook-islands-population/">17,597</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>3</td><td>17,597</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,364</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">212</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/palau/">Palau</a></td>
<td style="font-weight: bold; text-align:right">5,308</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">6 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">5,047</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">255</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">290,547</td>
<td style="font-weight: bold; text-align:right">328</td>
<td style="font-weight: bold; text-align:right">62,460</td>
<td style="font-weight: bold; text-align:right">3,418,906</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/palau-population/">18,269</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>3</td><td>3,045</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">13,958</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">213</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saint-barthelemy/">St. Barth</a></td>
<td style="font-weight: bold; text-align:right">4,845</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">6 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">487,523</td>
<td style="font-weight: bold; text-align:right">604</td>
<td style="font-weight: bold; text-align:right">78,646</td>
<td style="font-weight: bold; text-align:right">7,913,665</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saint-barthelemy-population/">9,938</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>2</td><td>1,656</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">440,431</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">214</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/anguilla/">Anguilla</a></td>
<td style="font-weight: bold; text-align:right">3,496</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">9 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">3,464</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">23</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">228,871</td>
<td style="font-weight: bold; text-align:right">589</td>
<td style="font-weight: bold; text-align:right">51,382</td>
<td style="font-weight: bold; text-align:right">3,363,797</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/anguilla-population/">15,275</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>4</td><td>1,697</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,506</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">215</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/kiribati/">Kiribati</a></td>
<td style="font-weight: bold; text-align:right">3,236</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">13 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2,665</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">558</td>
<td style="font-weight: bold; text-align:right">3</td>
<td style="font-weight: bold; text-align:right">26,273</td>
<td style="font-weight: bold; text-align:right">106</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/kiribati-population/">123,167</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>38</td><td>9,474</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,530</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">216</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saint-pierre-and-miquelon/">Saint Pierre Miquelon</a></td>
<td style="font-weight: bold; text-align:right">2,970</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2,449</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">520</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">517,692</td>
<td style="font-weight: bold; text-align:right">174</td>
<td style="font-weight: bold; text-align:right">24,521</td>
<td style="font-weight: bold; text-align:right">4,274,185</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saint-pierre-and-miquelon-population/">5,737</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>2</td><td>5,737</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">90,640</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">217</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/falkland-islands-malvinas/">Falkland Islands</a></td>
<td style="font-weight: bold; text-align:right">1,831</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;"> </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">496,744</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">8,632</td>
<td style="font-weight: bold; text-align:right">2,341,834</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/falkland-islands-malvinas-population/">3,686</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>2</td><td></td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">463,104</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">218</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/montserrat/">Montserrat</a></td>
<td style="font-weight: bold; text-align:right">1,025</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">8 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,013</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">4</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">205,082</td>
<td style="font-weight: bold; text-align:right">1,601</td>
<td style="font-weight: bold; text-align:right">14,243</td>
<td style="font-weight: bold; text-align:right">2,849,740</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/montserrat-population/">4,998</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>5</td><td>625</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">800</td>
</tr>
<tr style="background-color:#F0F0F0">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">219</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><span style="color:#00B5F0; font-style:italic; ">Diamond Princess</span></td>
<td style="font-weight: bold; text-align:right">712</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">13 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">699</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"> </td>
<td data-continent="" style="display:none"></td>
<td></td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">220</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/china-macao-sar/">Macao</a></td>
<td style="font-weight: bold; text-align:right">696</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">5 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">181</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">510</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,043</td>
<td style="font-weight: bold; text-align:right">7</td>
<td style="font-weight: bold; text-align:right">7,615</td>
<td style="font-weight: bold; text-align:right">11,412</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/china-macao-sar-population/">667,295</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>959</td><td>133,459</td><td>88</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">764</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">221</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/wallis-and-futuna-islands/">Wallis and Futuna</a></td>
<td style="font-weight: bold; text-align:right">456</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">7 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">438</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">11</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">42,066</td>
<td style="font-weight: bold; text-align:right">646</td>
<td style="font-weight: bold; text-align:right">20,508</td>
<td style="font-weight: bold; text-align:right">1,891,882</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/wallis-and-futuna-islands-population/">10,840</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>24</td><td>1,549</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,015</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">222</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/marshall-islands/">Marshall Islands</a></td>
<td style="font-weight: bold; text-align:right">47</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;"> </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">18</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">29</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">783</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/marshall-islands-population/">60,000</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>1,277</td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">483</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">223</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/micronesia/">Micronesia</a></td>
<td style="font-weight: bold; text-align:right">38</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;"> </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">33</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">5</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">323</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">21,923</td>
<td style="font-weight: bold; text-align:right">186,628</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/micronesia-population/">117,469</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>3,091</td><td></td><td>5</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">43</td>
</tr>
<tr style="background-color:#EAF7D5">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">224</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/holy-see/">Vatican City</a></td>
<td style="font-weight: bold; text-align:right">29</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;"> </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">29</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">36,025</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/holy-see-population/">805</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>28</td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">225</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/niue/">Niue</a></td>
<td style="font-weight: bold; text-align:right">26</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;"> </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">23</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">15,777</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/niue-population/">1,648</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>63</td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,820</td>
</tr>
<tr style="background-color:#F0F0F0">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">226</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/western-sahara/">Western Sahara</a></td>
<td style="font-weight: bold; text-align:right">10</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">9</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">16</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/western-sahara-population/">627,136</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>62,714</td><td>627,136</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
</tr>
<tr style="background-color:#F0F0F0">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">227</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><span style="color:#00B5F0; font-style:italic; ">MS Zaandam</span></td>
<td style="font-weight: bold; text-align:right">9</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">7</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"> </td>
<td data-continent="" style="display:none"></td>
<td></td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">228</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/tuvalu/">Tuvalu</a></td>
<td style="font-weight: bold; text-align:right">3</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;"> </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">248</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/tuvalu-population/">12,087</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>4,029</td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">248</td>
</tr>
<tr style="background-color:#EAF7D5">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">229</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saint-helena/">Saint Helena</a></td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;"> </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">327</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saint-helena-population/">6,114</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>3,057</td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">230</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/china/">China</a></td>
<td style="font-weight: bold; text-align:right">227,143</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">+113</td>
<td style="font-weight: bold; text-align:right;">5,226 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">220,778</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+93</td>
<td style="text-align:right;font-weight:bold;">1,139</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">158</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">160,000,000</td>
<td style="font-weight: bold; text-align:right">111,163</td>
<td style="font-weight: bold; text-align:right">1,439,323,776 </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>6,337</td><td>275,416</td><td>9</td>
<td style="font-weight: bold; text-align:right">0.08</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">0.8</td>
</tr>
</tbody>
<tbody class="body_continents">
<tr class="row_continent total_row" data-continent="North America" style="display: none">
<td></td>
<td><strong>Total:</strong></td>
<td>107,794,852</td>
<td style="background-color:#FFEEAA; color:#000;">+34,885</td>
<td>1,494,690</td>
<td style="background-color:red; color:#fff">+74</td>
<td>100,746,314</td>
<td style="background-color:#c8e6c9; color:#000">+19,748</td>
<td>5,553,848</td>
<td>9,502</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="North America" style="display:none;">North America</td>
<td> </td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="row_continent total_row" data-continent="Asia" style="display: none">
<td></td>
<td><strong>Total:</strong></td>
<td>163,765,129</td>
<td style="background-color:#FFEEAA; color:#000;">+41,272</td>
<td>1,442,533</td>
<td style="background-color:red; color:#fff">+39</td>
<td>157,775,292</td>
<td style="background-color:#c8e6c9; color:#000">+6,032</td>
<td>4,547,304</td>
<td>11,043</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Asia" style="display:none;">Asia</td>
<td> </td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="row_continent total_row" data-continent="South America" style="display: none">
<td></td>
<td><strong>Total:</strong></td>
<td>60,877,685</td>
<td style=""></td>
<td>1,309,819</td>
<td style=""></td>
<td>57,886,539</td>
<td style="background-color:#c8e6c9; color:#000"></td>
<td>1,681,327</td>
<td>10,454</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="South America" style="display:none;">South America</td>
<td> </td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="row_continent total_row" data-continent="Europe" style="display: none">
<td></td>
<td><strong>Total:</strong></td>
<td>209,911,879</td>
<td style=""></td>
<td>1,863,623</td>
<td style=""></td>
<td>198,908,016</td>
<td style="background-color:#c8e6c9; color:#000"></td>
<td>9,140,240</td>
<td>6,729</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Europe" style="display:none;">Europe</td>
<td> </td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="row_continent total_row" data-continent="Australia/Oceania" style="display: none">
<td></td>
<td><strong>Total:</strong></td>
<td>10,492,349</td>
<td style="background-color:#FFEEAA; color:#000;">+30,830</td>
<td>14,997</td>
<td style="background-color:red; color:#fff">+55</td>
<td>9,945,183</td>
<td style="">+0</td>
<td>532,169</td>
<td>176</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Australia/Oceania" style="display:none;">Australia/Oceania</td>
<td> </td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="row_continent total_row" data-continent="Africa" style="display: none">
<td></td>
<td><strong>Total:</strong></td>
<td>12,431,054</td>
<td style=""></td>
<td>256,378</td>
<td style=""></td>
<td>11,578,374</td>
<td style=""></td>
<td>596,302</td>
<td>1,005</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Africa" style="display:none;">Africa</td>
<td> </td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="row_continent total_row" data-continent="" style="display: none">
<td></td>
<td><strong>Total:</strong></td>
<td>721</td>
<td style=""></td>
<td>15</td>
<td style=""></td>
<td>706</td>
<td style=""></td>
<td>0</td>
<td>0</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="" style="display:none;"></td>
<td> </td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
<tbody class="total_row_body body_world">
<tr class="total_row">
<td></td>
<td><strong>Total:</strong></td>
<td>565,273,669</td>
<td style="background-color:#FFEEAA; color:#000;">+106,987</td>
<td>6,382,055</td>
<td style="background-color:red; color:#fff">+168</td>
<td>536,840,424</td>
<td style="background-color:#c8e6c9; color:#000">+61,318</td>
<td>22,051,190</td>
<td>38,909</td>
<td>72,519.3</td>
<td>818.8</td>
<td></td>
<td></td>
<td></td>
<td data-continent="all" style="display:none">All</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
# Extraindo os títulos das colunas
titulos = [i.text for i in tabela.find_all('th')]
print(titulos)
['#', 'Country,Other', 'TotalCases', 'NewCases', 'TotalDeaths', 'NewDeaths', 'TotalRecovered', 'NewRecovered', 'ActiveCases', 'Serious,Critical', 'Tot\xa0Cases/1M pop', 'Deaths/1M pop', 'TotalTests', 'Tests/\n1M pop\n', 'Population', 'Continent', '1 Caseevery X ppl', '1 Deathevery X ppl', '1 Testevery X ppl', 'New Cases/1M pop', 'New Deaths/1M pop', 'Active Cases/1M pop']
print(titulos[13])
Tests/ 1M pop
titulos[13] = 'Tests/1M pop'
print(titulos)
['#', 'Country,Other', 'TotalCases', 'NewCases', 'TotalDeaths', 'NewDeaths', 'TotalRecovered', 'NewRecovered', 'ActiveCases', 'Serious,Critical', 'Tot\xa0Cases/1M pop', 'Deaths/1M pop', 'TotalTests', 'Tests/1M pop', 'Population', 'Continent', '1 Caseevery X ppl', '1 Deathevery X ppl', '1 Testevery X ppl', 'New Cases/1M pop', 'New Deaths/1M pop', 'Active Cases/1M pop']
# Criando o dataframe
df = pd.DataFrame(columns = titulos)
df
| # | Country,Other | TotalCases | NewCases | TotalDeaths | NewDeaths | TotalRecovered | NewRecovered | ActiveCases | Serious,Critical | ... | TotalTests | Tests/1M pop | Population | Continent | 1 Caseevery X ppl | 1 Deathevery X ppl | 1 Testevery X ppl | New Cases/1M pop | New Deaths/1M pop | Active Cases/1M pop |
|---|
0 rows × 22 columns
print(tabela.find_all('tr'))
[<tr>
<th width="1%">#</th>
<th width="100">Country,<br>Other</br></th>
<th width="20">Total<br>Cases</br></th>
<th width="30">New<br>Cases</br></th>
<th width="30">Total<br>Deaths</br></th>
<th width="30">New<br>Deaths</br></th>
<th width="30">Total<br>Recovered</br></th>
<th width="30">New<br>Recovered</br></th>
<th width="30">Active<br/>Cases</th>
<th width="30">Serious,<br/>Critical</th>
<th width="30">Tot Cases/<br/>1M pop</th>
<th width="30">Deaths/<br/>1M pop</th>
<th width="30">Total<br/>Tests</th>
<th width="30">Tests/<br/>
<nobr>1M pop</nobr>
</th>
<th width="30">Population</th>
<th style="display:none" width="30">Continent</th>
<th width="30">1 Case<br/>every X ppl</th><th width="30">1 Death<br/>every X ppl</th><th width="30">1 Test<br/>every X ppl</th>
<th width="30">New Cases/1M pop</th>
<th width="30">New Deaths/1M pop</th>
<th width="30">Active Cases/1M pop</th>
</tr>, <tr class="total_row_world row_continent" data-continent="North America" style="display: none">
<td></td>
<td style="text-align:left;">
<nobr>North America</nobr>
</td>
<td>107,794,852</td>
<td>+34,885</td>
<td>1,494,690</td>
<td>+74</td>
<td>100,746,314</td>
<td>+19,748</td>
<td>5,553,848</td>
<td>9,502</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="North America" style="display:none;">North America</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>, <tr class="total_row_world row_continent" data-continent="Asia" style="display: none">
<td></td>
<td style="text-align:left;">
<nobr>Asia</nobr>
</td>
<td>163,765,129</td>
<td>+41,272</td>
<td>1,442,533</td>
<td>+39</td>
<td>157,775,292</td>
<td>+6,032</td>
<td>4,547,304</td>
<td>11,043</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Asia" style="display:none;">Asia</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>, <tr class="total_row_world row_continent" data-continent="South America" style="display: none">
<td></td>
<td style="text-align:left;">
<nobr>South America</nobr>
</td>
<td>60,877,685</td>
<td></td>
<td>1,309,819</td>
<td></td>
<td>57,886,539</td>
<td>+10,093</td>
<td>1,681,327</td>
<td>10,454</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="South America" style="display:none;">South America</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>, <tr class="total_row_world row_continent" data-continent="Europe" style="display: none">
<td></td>
<td style="text-align:left;">
<nobr>Europe</nobr>
</td>
<td>209,911,879</td>
<td></td>
<td>1,863,623</td>
<td></td>
<td>198,908,016</td>
<td>+25,445</td>
<td>9,140,240</td>
<td>6,729</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Europe" style="display:none;">Europe</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>, <tr class="total_row_world row_continent" data-continent="Australia/Oceania" style="display: none">
<td></td>
<td style="text-align:left;">
<nobr>Oceania</nobr>
</td>
<td>10,492,349</td>
<td>+30,830</td>
<td>14,997</td>
<td>+55</td>
<td>9,945,183</td>
<td></td>
<td>532,169</td>
<td>176</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Australia/Oceania" style="display:none;">Australia/Oceania</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>, <tr class="total_row_world row_continent" data-continent="Africa" style="display: none">
<td></td>
<td style="text-align:left;">
<nobr>Africa</nobr>
</td>
<td>12,431,054</td>
<td></td>
<td>256,378</td>
<td></td>
<td>11,578,374</td>
<td></td>
<td>596,302</td>
<td>1,005</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Africa" style="display:none;">Africa</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>, <tr class="total_row_world row_continent" data-continent="" style="display: none">
<td></td>
<td style="text-align:left;">
<nobr></nobr>
</td>
<td>721</td>
<td></td>
<td>15</td>
<td></td>
<td>706</td>
<td></td>
<td>0</td>
<td>0</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="" style="display:none;"></td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>, <tr class="total_row_world">
<td></td>
<td style="text-align:left;">World</td>
<td>565,273,669</td>
<td>+106,987</td>
<td>6,382,055</td>
<td>+168</td>
<td>536,840,424</td>
<td>+61,318</td>
<td>22,051,190</td>
<td>38,909</td>
<td>72,519</td>
<td>818.8</td>
<td></td>
<td></td>
<td></td>
<td data-continent="all" style="display:none">All</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">1</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/us/">USA</a></td>
<td style="font-weight: bold; text-align:right">91,060,225</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,048,232 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">86,371,941</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3,640,052</td>
<td style="font-weight: bold; text-align:right">4,180</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,059,620,672</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"> </td>
<td data-continent="North America" style="display:none">North America</td>
<td></td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">2</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/india/">India</a></td>
<td style="font-weight: bold; text-align:right">43,704,925</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">525,557 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">43,028,356</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">151,012</td>
<td style="font-weight: bold; text-align:right">698</td>
<td style="font-weight: bold; text-align:right">31,051</td>
<td style="font-weight: bold; text-align:right">373</td>
<td style="font-weight: bold; text-align:right">867,769,574</td>
<td style="font-weight: bold; text-align:right">616,518</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/india-population/">1,407,532,492</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>32</td><td>2,678</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">107</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">3</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/brazil/">Brazil</a></td>
<td style="font-weight: bold; text-align:right">33,142,158</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">674,846 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">31,451,590</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,015,722</td>
<td style="font-weight: bold; text-align:right">8,318</td>
<td style="font-weight: bold; text-align:right">153,703</td>
<td style="font-weight: bold; text-align:right">3,130</td>
<td style="font-weight: bold; text-align:right">63,776,166</td>
<td style="font-weight: bold; text-align:right">295,774</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/brazil-population/">215,624,945</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>7</td><td>320</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,711</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">4</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/france/">France</a></td>
<td style="font-weight: bold; text-align:right">32,795,874</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">150,468 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">30,363,245</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,282,161</td>
<td style="font-weight: bold; text-align:right">869</td>
<td style="font-weight: bold; text-align:right">500,192</td>
<td style="font-weight: bold; text-align:right">2,295</td>
<td style="font-weight: bold; text-align:right">271,490,188</td>
<td style="font-weight: bold; text-align:right">4,140,684</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/france-population/">65,566,505</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>436</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">34,807</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">5</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/germany/">Germany</a></td>
<td style="font-weight: bold; text-align:right">29,460,249</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">142,284 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">27,548,900</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,769,065</td>
<td style="font-weight: bold; text-align:right">1,238</td>
<td style="font-weight: bold; text-align:right">349,356</td>
<td style="font-weight: bold; text-align:right">1,687</td>
<td style="font-weight: bold; text-align:right">122,332,384</td>
<td style="font-weight: bold; text-align:right">1,450,683</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/germany-population/">84,327,414</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>593</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">20,979</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">6</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/uk/">UK</a></td>
<td style="font-weight: bold; text-align:right">23,075,360</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">181,580 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">22,325,335</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">568,445</td>
<td style="font-weight: bold; text-align:right">146</td>
<td style="font-weight: bold; text-align:right">336,329</td>
<td style="font-weight: bold; text-align:right">2,647</td>
<td style="font-weight: bold; text-align:right">522,526,476</td>
<td style="font-weight: bold; text-align:right">7,615,952</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/uk-population/">68,609,479</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>378</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">8,285</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">7</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/italy/">Italy</a></td>
<td style="font-weight: bold; text-align:right">19,887,543</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">169,601 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">18,294,517</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,423,425</td>
<td style="font-weight: bold; text-align:right">388</td>
<td style="font-weight: bold; text-align:right">329,911</td>
<td style="font-weight: bold; text-align:right">2,813</td>
<td style="font-weight: bold; text-align:right">231,776,628</td>
<td style="font-weight: bold; text-align:right">3,844,904</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/italy-population/">60,281,506</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>355</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">23,613</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">8</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/south-korea/">S. Korea</a></td>
<td style="font-weight: bold; text-align:right">18,680,142</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">+38,864</td>
<td style="font-weight: bold; text-align:right;">24,712 </td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">+16</td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">18,304,752</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+3,413</td>
<td style="text-align:right;font-weight:bold;">350,678</td>
<td style="font-weight: bold; text-align:right">65</td>
<td style="font-weight: bold; text-align:right">363,719</td>
<td style="font-weight: bold; text-align:right">481</td>
<td style="font-weight: bold; text-align:right">15,804,065</td>
<td style="font-weight: bold; text-align:right">307,719</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/south-korea-population/">51,358,685</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>3</td><td>2,078</td><td>3</td>
<td style="font-weight: bold; text-align:right">757</td>
<td style="font-weight: bold; text-align:right">0.3</td>
<td style="font-weight: bold; text-align:right">6,828</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">9</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/russia/">Russia</a></td>
<td style="font-weight: bold; text-align:right">18,476,477</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">381,754 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">17,900,518</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">194,205</td>
<td style="font-weight: bold; text-align:right">2,300</td>
<td style="font-weight: bold; text-align:right">126,498</td>
<td style="font-weight: bold; text-align:right">2,614</td>
<td style="font-weight: bold; text-align:right">273,400,000</td>
<td style="font-weight: bold; text-align:right">1,871,816</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/russia-population/">146,061,390</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>8</td><td>383</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,330</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">10</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/turkey/">Turkey</a></td>
<td style="font-weight: bold; text-align:right">15,297,539</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">99,088 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">15,096,774</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">101,677</td>
<td style="font-weight: bold; text-align:right">975</td>
<td style="font-weight: bold; text-align:right">177,506</td>
<td style="font-weight: bold; text-align:right">1,150</td>
<td style="font-weight: bold; text-align:right">162,743,369</td>
<td style="font-weight: bold; text-align:right">1,888,403</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/turkey-population/">86,180,421</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>6</td><td>870</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,180</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">11</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/spain/">Spain</a></td>
<td style="font-weight: bold; text-align:right">13,032,841</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">108,948 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">12,370,046</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">553,847</td>
<td style="font-weight: bold; text-align:right">339</td>
<td style="font-weight: bold; text-align:right">278,530</td>
<td style="font-weight: bold; text-align:right">2,328</td>
<td style="font-weight: bold; text-align:right">471,036,328</td>
<td style="font-weight: bold; text-align:right">10,066,705</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/spain-population/">46,791,511</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>4</td><td>429</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">11,836</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">12</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/viet-nam/">Vietnam</a></td>
<td style="font-weight: bold; text-align:right">10,758,189</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">43,090 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">9,793,800</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">921,299</td>
<td style="font-weight: bold; text-align:right">36</td>
<td style="font-weight: bold; text-align:right">108,542</td>
<td style="font-weight: bold; text-align:right">435</td>
<td style="font-weight: bold; text-align:right">85,826,548</td>
<td style="font-weight: bold; text-align:right">865,924</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/viet-nam-population/">99,115,541</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>9</td><td>2,300</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9,295</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">13</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/japan/">Japan</a></td>
<td style="font-weight: bold; text-align:right">9,903,381</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">31,494 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">9,389,831</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">482,056</td>
<td style="font-weight: bold; text-align:right">100</td>
<td style="font-weight: bold; text-align:right">78,791</td>
<td style="font-weight: bold; text-align:right">251</td>
<td style="font-weight: bold; text-align:right">58,169,163</td>
<td style="font-weight: bold; text-align:right">462,794</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/japan-population/">125,691,242</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>13</td><td>3,991</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,835</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">14</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/argentina/">Argentina</a></td>
<td style="font-weight: bold; text-align:right">9,426,171</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">129,145 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">9,223,351</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+3,668</td>
<td style="text-align:right;font-weight:bold;">73,675</td>
<td style="font-weight: bold; text-align:right">393</td>
<td style="font-weight: bold; text-align:right">204,751</td>
<td style="font-weight: bold; text-align:right">2,805</td>
<td style="font-weight: bold; text-align:right">35,716,069</td>
<td style="font-weight: bold; text-align:right">775,808</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/argentina-population/">46,037,228</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>5</td><td>356</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,600</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">15</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/australia/">Australia</a></td>
<td style="font-weight: bold; text-align:right">8,683,848</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">+30,830</td>
<td style="font-weight: bold; text-align:right;">10,570 </td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">+55</td>
<td style="font-weight: bold; text-align:right">8,278,603</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">394,675</td>
<td style="font-weight: bold; text-align:right">144</td>
<td style="font-weight: bold; text-align:right">332,712</td>
<td style="font-weight: bold; text-align:right">405</td>
<td style="font-weight: bold; text-align:right">75,046,362</td>
<td style="font-weight: bold; text-align:right">2,875,318</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/australia-population/">26,100,194</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>3</td><td>2,469</td><td>0</td>
<td style="font-weight: bold; text-align:right">1,181</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">15,122</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">16</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/netherlands/">Netherlands</a></td>
<td style="font-weight: bold; text-align:right">8,267,718</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">22,417 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">8,088,398</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">156,903</td>
<td style="font-weight: bold; text-align:right">60</td>
<td style="font-weight: bold; text-align:right">480,352</td>
<td style="font-weight: bold; text-align:right">1,302</td>
<td style="font-weight: bold; text-align:right">21,107,399</td>
<td style="font-weight: bold; text-align:right">1,226,334</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/netherlands-population/">17,211,781</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>768</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9,116</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">17</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/iran/">Iran</a></td>
<td style="font-weight: bold; text-align:right">7,265,251</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">141,464 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">7,066,475</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">57,312</td>
<td style="font-weight: bold; text-align:right">413</td>
<td style="font-weight: bold; text-align:right">84,309</td>
<td style="font-weight: bold; text-align:right">1,642</td>
<td style="font-weight: bold; text-align:right">52,690,831</td>
<td style="font-weight: bold; text-align:right">611,445</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/iran-population/">86,174,268</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>12</td><td>609</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">665</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">18</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/mexico/">Mexico</a></td>
<td style="font-weight: bold; text-align:right">6,373,876</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">+34,885</td>
<td style="font-weight: bold; text-align:right;">326,335 </td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">+74</td>
<td style="font-weight: bold; text-align:right">5,435,342</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+19,748</td>
<td style="text-align:right;font-weight:bold;">612,199</td>
<td style="font-weight: bold; text-align:right">4,798</td>
<td style="font-weight: bold; text-align:right">48,404</td>
<td style="font-weight: bold; text-align:right">2,478</td>
<td style="font-weight: bold; text-align:right">17,084,916</td>
<td style="font-weight: bold; text-align:right">129,744</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/mexico-population/">131,681,236</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>21</td><td>404</td><td>8</td>
<td style="font-weight: bold; text-align:right">265</td>
<td style="font-weight: bold; text-align:right">0.6</td>
<td style="font-weight: bold; text-align:right">4,649</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">19</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/colombia/">Colombia</a></td>
<td style="font-weight: bold; text-align:right">6,198,848</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">140,202 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">6,008,044</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">50,602</td>
<td style="font-weight: bold; text-align:right">342</td>
<td style="font-weight: bold; text-align:right">119,247</td>
<td style="font-weight: bold; text-align:right">2,697</td>
<td style="font-weight: bold; text-align:right">35,662,857</td>
<td style="font-weight: bold; text-align:right">686,045</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/colombia-population/">51,983,287</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>8</td><td>371</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">973</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">20</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/indonesia/">Indonesia</a></td>
<td style="font-weight: bold; text-align:right">6,123,753</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">156,827 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">5,942,436</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">24,490</td>
<td style="font-weight: bold; text-align:right">2,771</td>
<td style="font-weight: bold; text-align:right">21,918</td>
<td style="font-weight: bold; text-align:right">561</td>
<td style="font-weight: bold; text-align:right">101,907,052</td>
<td style="font-weight: bold; text-align:right">364,746</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/indonesia-population/">279,392,080</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>46</td><td>1,782</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">88</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">21</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/poland/">Poland</a></td>
<td style="font-weight: bold; text-align:right">6,027,974</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">116,468 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">5,335,742</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">575,764</td>
<td style="font-weight: bold; text-align:right">408</td>
<td style="font-weight: bold; text-align:right">159,628</td>
<td style="font-weight: bold; text-align:right">3,084</td>
<td style="font-weight: bold; text-align:right">36,537,808</td>
<td style="font-weight: bold; text-align:right">967,568</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/poland-population/">37,762,538</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>6</td><td>324</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">15,247</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">22</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/portugal/">Portugal</a></td>
<td style="font-weight: bold; text-align:right">5,273,845</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">24,369 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">4,997,384</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+17,840</td>
<td style="text-align:right;font-weight:bold;">252,092</td>
<td style="font-weight: bold; text-align:right">61</td>
<td style="font-weight: bold; text-align:right">520,287</td>
<td style="font-weight: bold; text-align:right">2,404</td>
<td style="font-weight: bold; text-align:right">43,527,258</td>
<td style="font-weight: bold; text-align:right">4,294,148</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/portugal-population/">10,136,412</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>416</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">24,870</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">23</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/ukraine/">Ukraine</a></td>
<td style="font-weight: bold; text-align:right">5,019,125</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">108,671 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">4,907,770</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+149</td>
<td style="text-align:right;font-weight:bold;">2,684</td>
<td style="font-weight: bold; text-align:right">177</td>
<td style="font-weight: bold; text-align:right">116,181</td>
<td style="font-weight: bold; text-align:right">2,515</td>
<td style="font-weight: bold; text-align:right">19,521,252</td>
<td style="font-weight: bold; text-align:right">451,870</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/ukraine-population/">43,200,993</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>9</td><td>398</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">62</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">24</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/north-korea/">DPRK</a></td>
<td style="font-weight: bold; text-align:right">4,770,400</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">+500</td>
<td style="font-weight: bold; text-align:right;">74 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">4,769,210</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+700</td>
<td style="text-align:right;font-weight:bold;">1,116</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">183,420</td>
<td style="font-weight: bold; text-align:right">3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/north-korea-population/">26,008,008</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>5</td><td>351,460</td><td></td>
<td style="font-weight: bold; text-align:right">19</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">43</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">25</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/malaysia/">Malaysia</a></td>
<td style="font-weight: bold; text-align:right">4,608,768</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">35,836 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">4,534,019</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">38,913</td>
<td style="font-weight: bold; text-align:right">53</td>
<td style="font-weight: bold; text-align:right">138,787</td>
<td style="font-weight: bold; text-align:right">1,079</td>
<td style="font-weight: bold; text-align:right">61,607,295</td>
<td style="font-weight: bold; text-align:right">1,855,228</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/malaysia-population/">33,207,396</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>7</td><td>927</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,172</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">26</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/austria/">Austria</a></td>
<td style="font-weight: bold; text-align:right">4,574,722</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">18,916 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">4,436,588</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">119,218</td>
<td style="font-weight: bold; text-align:right">71</td>
<td style="font-weight: bold; text-align:right">502,129</td>
<td style="font-weight: bold; text-align:right">2,076</td>
<td style="font-weight: bold; text-align:right">191,905,533</td>
<td style="font-weight: bold; text-align:right">21,063,859</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/austria-population/">9,110,654</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>482</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">13,086</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">27</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/thailand/">Thailand</a></td>
<td style="font-weight: bold; text-align:right">4,554,976</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">+1,795</td>
<td style="font-weight: bold; text-align:right;">30,961 </td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">+23</td>
<td style="font-weight: bold; text-align:right">4,499,975</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+1,920</td>
<td style="text-align:right;font-weight:bold;">24,040</td>
<td style="font-weight: bold; text-align:right">1,496</td>
<td style="font-weight: bold; text-align:right">64,927</td>
<td style="font-weight: bold; text-align:right">441</td>
<td style="font-weight: bold; text-align:right">17,270,775</td>
<td style="font-weight: bold; text-align:right">246,179</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/thailand-population/">70,155,276</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>15</td><td>2,266</td><td>4</td>
<td style="font-weight: bold; text-align:right">26</td>
<td style="font-weight: bold; text-align:right">0.3</td>
<td style="font-weight: bold; text-align:right">343</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">28</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/israel/">Israel</a></td>
<td style="font-weight: bold; text-align:right">4,489,396</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">11,101 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">4,399,889</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">78,406</td>
<td style="font-weight: bold; text-align:right">310</td>
<td style="font-weight: bold; text-align:right">481,385</td>
<td style="font-weight: bold; text-align:right">1,190</td>
<td style="font-weight: bold; text-align:right">41,373,364</td>
<td style="font-weight: bold; text-align:right">4,436,346</td>
<td style="font-weight: bold; text-align:right">9,326,000 </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>2</td><td>840</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">8,407</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">29</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/belgium/">Belgium</a></td>
<td style="font-weight: bold; text-align:right">4,320,107</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">32,015 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">4,148,925</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+3,500</td>
<td style="text-align:right;font-weight:bold;">139,167</td>
<td style="font-weight: bold; text-align:right">74</td>
<td style="font-weight: bold; text-align:right">369,494</td>
<td style="font-weight: bold; text-align:right">2,738</td>
<td style="font-weight: bold; text-align:right">34,708,412</td>
<td style="font-weight: bold; text-align:right">2,968,574</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/belgium-population/">11,691,948</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>365</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">11,903</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">30</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/taiwan/">Taiwan</a></td>
<td style="font-weight: bold; text-align:right">4,189,929</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">7,917 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">3,525,388</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">656,624</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">175,280</td>
<td style="font-weight: bold; text-align:right">331</td>
<td style="font-weight: bold; text-align:right">21,858,576</td>
<td style="font-weight: bold; text-align:right">914,423</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/taiwan-population/">23,904,219</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>6</td><td>3,019</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">27,469</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">31</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/chile/">Chile</a></td>
<td style="font-weight: bold; text-align:right">4,113,288</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">58,955 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">3,775,065</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">279,268</td>
<td style="font-weight: bold; text-align:right">190</td>
<td style="font-weight: bold; text-align:right">211,490</td>
<td style="font-weight: bold; text-align:right">3,031</td>
<td style="font-weight: bold; text-align:right">41,226,395</td>
<td style="font-weight: bold; text-align:right">2,119,704</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/chile-population/">19,449,130</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>5</td><td>330</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">14,359</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">32</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/south-africa/">South Africa</a></td>
<td style="font-weight: bold; text-align:right">3,999,345</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">101,915 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">3,889,998</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">7,432</td>
<td style="font-weight: bold; text-align:right">192</td>
<td style="font-weight: bold; text-align:right">65,751</td>
<td style="font-weight: bold; text-align:right">1,676</td>
<td style="font-weight: bold; text-align:right">25,858,208</td>
<td style="font-weight: bold; text-align:right">425,118</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/south-africa-population/">60,825,910</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>15</td><td>597</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">122</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">33</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/canada/">Canada</a></td>
<td style="font-weight: bold; text-align:right">3,992,960</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">42,278 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">3,570,058</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">380,624</td>
<td style="font-weight: bold; text-align:right">195</td>
<td style="font-weight: bold; text-align:right">103,947</td>
<td style="font-weight: bold; text-align:right">1,101</td>
<td style="font-weight: bold; text-align:right">62,586,673</td>
<td style="font-weight: bold; text-align:right">1,629,286</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/canada-population/">38,413,557</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>10</td><td>909</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9,909</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">34</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/czech-republic/">Czechia</a></td>
<td style="font-weight: bold; text-align:right">3,947,772</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">40,343 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">3,896,636</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,793</td>
<td style="font-weight: bold; text-align:right">11</td>
<td style="font-weight: bold; text-align:right">367,259</td>
<td style="font-weight: bold; text-align:right">3,753</td>
<td style="font-weight: bold; text-align:right">55,608,407</td>
<td style="font-weight: bold; text-align:right">5,173,221</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/czech-republic-population/">10,749,282</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>266</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,004</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">35</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/switzerland/">Switzerland</a></td>
<td style="font-weight: bold; text-align:right">3,843,522</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">14,008 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">3,671,804</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+4,101</td>
<td style="text-align:right;font-weight:bold;">157,710</td>
<td style="font-weight: bold; text-align:right">60</td>
<td style="font-weight: bold; text-align:right">437,608</td>
<td style="font-weight: bold; text-align:right">1,595</td>
<td style="font-weight: bold; text-align:right">21,598,881</td>
<td style="font-weight: bold; text-align:right">2,459,160</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/switzerland-population/">8,783,033</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>627</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">17,956</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">36</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/greece/">Greece</a></td>
<td style="font-weight: bold; text-align:right">3,843,142</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">30,476 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">3,614,441</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">198,225</td>
<td style="font-weight: bold; text-align:right">103</td>
<td style="font-weight: bold; text-align:right">372,404</td>
<td style="font-weight: bold; text-align:right">2,953</td>
<td style="font-weight: bold; text-align:right">86,634,526</td>
<td style="font-weight: bold; text-align:right">8,394,971</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/greece-population/">10,319,812</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>339</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">19,208</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">37</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/philippines/">Philippines</a></td>
<td style="font-weight: bold; text-align:right">3,725,382</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">60,641 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">3,648,497</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">16,244</td>
<td style="font-weight: bold; text-align:right">534</td>
<td style="font-weight: bold; text-align:right">33,103</td>
<td style="font-weight: bold; text-align:right">539</td>
<td style="font-weight: bold; text-align:right">31,081,194</td>
<td style="font-weight: bold; text-align:right">276,178</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/philippines-population/">112,540,376</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>30</td><td>1,856</td><td>4</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">144</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">38</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/peru/">Peru</a></td>
<td style="font-weight: bold; text-align:right">3,703,751</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">213,731 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">3,416,065</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+4,688</td>
<td style="text-align:right;font-weight:bold;">73,955</td>
<td style="font-weight: bold; text-align:right">171</td>
<td style="font-weight: bold; text-align:right">109,243</td>
<td style="font-weight: bold; text-align:right">6,304</td>
<td style="font-weight: bold; text-align:right">31,998,554</td>
<td style="font-weight: bold; text-align:right">943,805</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/peru-population/">33,903,781</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>9</td><td>159</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,181</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">39</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/denmark/">Denmark</a></td>
<td style="font-weight: bold; text-align:right">3,038,292</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">6,543 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">3,008,051</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">23,698</td>
<td style="font-weight: bold; text-align:right">14</td>
<td style="font-weight: bold; text-align:right">520,828</td>
<td style="font-weight: bold; text-align:right">1,122</td>
<td style="font-weight: bold; text-align:right">127,815,844</td>
<td style="font-weight: bold; text-align:right">21,910,357</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/denmark-population/">5,833,581</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>892</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,062</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">40</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/romania/">Romania</a></td>
<td style="font-weight: bold; text-align:right">2,953,944</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">65,802 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">2,853,659</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">34,483</td>
<td style="font-weight: bold; text-align:right">99</td>
<td style="font-weight: bold; text-align:right">155,655</td>
<td style="font-weight: bold; text-align:right">3,467</td>
<td style="font-weight: bold; text-align:right">23,694,574</td>
<td style="font-weight: bold; text-align:right">1,248,563</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/romania-population/">18,977,479</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>6</td><td>288</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,817</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">41</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/sweden/">Sweden</a></td>
<td style="font-weight: bold; text-align:right">2,528,166</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">19,170 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">2,492,906</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">16,090</td>
<td style="font-weight: bold; text-align:right">16</td>
<td style="font-weight: bold; text-align:right">247,204</td>
<td style="font-weight: bold; text-align:right">1,874</td>
<td style="font-weight: bold; text-align:right">18,709,369</td>
<td style="font-weight: bold; text-align:right">1,829,405</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/sweden-population/">10,227,026</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>4</td><td>533</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,573</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">42</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/iraq/">Iraq</a></td>
<td style="font-weight: bold; text-align:right">2,396,707</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">25,261 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2,335,448</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">35,998</td>
<td style="font-weight: bold; text-align:right">30</td>
<td style="font-weight: bold; text-align:right">56,991</td>
<td style="font-weight: bold; text-align:right">601</td>
<td style="font-weight: bold; text-align:right">18,912,241</td>
<td style="font-weight: bold; text-align:right">449,716</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/iraq-population/">42,053,775</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>18</td><td>1,665</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">856</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">43</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/serbia/">Serbia</a></td>
<td style="font-weight: bold; text-align:right">2,049,388</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">16,162 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2,009,887</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">23,339</td>
<td style="font-weight: bold; text-align:right">9</td>
<td style="font-weight: bold; text-align:right">236,486</td>
<td style="font-weight: bold; text-align:right">1,865</td>
<td style="font-weight: bold; text-align:right">10,016,279</td>
<td style="font-weight: bold; text-align:right">1,155,813</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/serbia-population/">8,666,000</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>4</td><td>536</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,693</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">44</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bangladesh/">Bangladesh</a></td>
<td style="font-weight: bold; text-align:right">1,993,382</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">29,223 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,919,166</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">44,993</td>
<td style="font-weight: bold; text-align:right">1,228</td>
<td style="font-weight: bold; text-align:right">11,864</td>
<td style="font-weight: bold; text-align:right">174</td>
<td style="font-weight: bold; text-align:right">14,475,361</td>
<td style="font-weight: bold; text-align:right">86,153</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bangladesh-population/">168,018,411</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>84</td><td>5,750</td><td>12</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">268</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">45</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/hungary/">Hungary</a></td>
<td style="font-weight: bold; text-align:right">1,940,824</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">46,696 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,878,221</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">15,907</td>
<td style="font-weight: bold; text-align:right">16</td>
<td style="font-weight: bold; text-align:right">201,946</td>
<td style="font-weight: bold; text-align:right">4,859</td>
<td style="font-weight: bold; text-align:right">11,394,556</td>
<td style="font-weight: bold; text-align:right">1,185,624</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/hungary-population/">9,610,602</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>5</td><td>206</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,655</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">46</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/slovakia/">Slovakia</a></td>
<td style="font-weight: bold; text-align:right">1,803,688</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">20,168 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">1,775,849</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">7,671</td>
<td style="font-weight: bold; text-align:right">16</td>
<td style="font-weight: bold; text-align:right">330,043</td>
<td style="font-weight: bold; text-align:right">3,690</td>
<td style="font-weight: bold; text-align:right">7,195,329</td>
<td style="font-weight: bold; text-align:right">1,316,619</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/slovakia-population/">5,465,006</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>271</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,404</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">47</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/jordan/">Jordan</a></td>
<td style="font-weight: bold; text-align:right">1,700,526</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">14,068 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,685,354</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,104</td>
<td style="font-weight: bold; text-align:right">124</td>
<td style="font-weight: bold; text-align:right">163,376</td>
<td style="font-weight: bold; text-align:right">1,352</td>
<td style="font-weight: bold; text-align:right">16,894,012</td>
<td style="font-weight: bold; text-align:right">1,623,075</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/jordan-population/">10,408,648</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>6</td><td>740</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">106</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">48</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/georgia/">Georgia</a></td>
<td style="font-weight: bold; text-align:right">1,662,299</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">16,844 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,637,293</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">8,162</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">418,332</td>
<td style="font-weight: bold; text-align:right">4,239</td>
<td style="font-weight: bold; text-align:right">16,920,079</td>
<td style="font-weight: bold; text-align:right">4,258,084</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/georgia-population/">3,973,637</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>2</td><td>236</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,054</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">49</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/ireland/">Ireland</a></td>
<td style="font-weight: bold; text-align:right">1,628,745</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">7,537 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">1,566,323</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">54,885</td>
<td style="font-weight: bold; text-align:right">43</td>
<td style="font-weight: bold; text-align:right">322,543</td>
<td style="font-weight: bold; text-align:right">1,493</td>
<td style="font-weight: bold; text-align:right">12,473,972</td>
<td style="font-weight: bold; text-align:right">2,470,241</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/ireland-population/">5,049,698</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>670</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">10,869</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">50</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/singapore/">Singapore</a></td>
<td style="font-weight: bold; text-align:right">1,569,420</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,444 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,453,373</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">114,603</td>
<td style="font-weight: bold; text-align:right">20</td>
<td style="font-weight: bold; text-align:right">264,048</td>
<td style="font-weight: bold; text-align:right">243</td>
<td style="font-weight: bold; text-align:right">24,107,231</td>
<td style="font-weight: bold; text-align:right">4,055,935</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/singapore-population/">5,943,693</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>4</td><td>4,116</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">19,281</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">51</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/pakistan/">Pakistan</a></td>
<td style="font-weight: bold; text-align:right">1,544,131</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">30,426 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,503,023</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,682</td>
<td style="font-weight: bold; text-align:right">175</td>
<td style="font-weight: bold; text-align:right">6,725</td>
<td style="font-weight: bold; text-align:right">133</td>
<td style="font-weight: bold; text-align:right">29,219,351</td>
<td style="font-weight: bold; text-align:right">127,265</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/pakistan-population/">229,594,826</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>149</td><td>7,546</td><td>8</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">47</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">52</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/new-zealand/">New Zealand</a></td>
<td style="font-weight: bold; text-align:right">1,473,955</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,697 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,401,411</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">70,847</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">294,667</td>
<td style="font-weight: bold; text-align:right">339</td>
<td style="font-weight: bold; text-align:right">7,327,116</td>
<td style="font-weight: bold; text-align:right">1,464,808</td>
<td style="font-weight: bold; text-align:right">5,002,100 </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>3</td><td>2,948</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">14,163</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">53</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/norway/">Norway</a></td>
<td style="font-weight: bold; text-align:right">1,452,176</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">3,504 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">1,442,320</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">6,352</td>
<td style="font-weight: bold; text-align:right">20</td>
<td style="font-weight: bold; text-align:right">263,685</td>
<td style="font-weight: bold; text-align:right">636</td>
<td style="font-weight: bold; text-align:right">11,002,430</td>
<td style="font-weight: bold; text-align:right">1,997,809</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/norway-population/">5,507,247</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>4</td><td>1,572</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,153</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">54</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/kazakhstan/">Kazakhstan</a></td>
<td style="font-weight: bold; text-align:right">1,312,294</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">13,663 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,293,793</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">4,838</td>
<td style="font-weight: bold; text-align:right">24</td>
<td style="font-weight: bold; text-align:right">68,233</td>
<td style="font-weight: bold; text-align:right">710</td>
<td style="font-weight: bold; text-align:right">11,575,012</td>
<td style="font-weight: bold; text-align:right">601,849</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/kazakhstan-population/">19,232,410</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>15</td><td>1,408</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">252</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">55</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/china-hong-kong-sar/">Hong Kong</a></td>
<td style="font-weight: bold; text-align:right">1,283,514</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">9,427 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">1,206,801</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">67,286</td>
<td style="font-weight: bold; text-align:right">8</td>
<td style="font-weight: bold; text-align:right">168,432</td>
<td style="font-weight: bold; text-align:right">1,237</td>
<td style="font-weight: bold; text-align:right">50,415,048</td>
<td style="font-weight: bold; text-align:right">6,615,815</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/china-hong-kong-sar-population/">7,620,384</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>6</td><td>808</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">8,830</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">56</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/morocco/">Morocco</a></td>
<td style="font-weight: bold; text-align:right">1,246,835</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">16,167 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,213,862</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">16,806</td>
<td style="font-weight: bold; text-align:right">293</td>
<td style="font-weight: bold; text-align:right">32,987</td>
<td style="font-weight: bold; text-align:right">428</td>
<td style="font-weight: bold; text-align:right">12,080,887</td>
<td style="font-weight: bold; text-align:right">319,615</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/morocco-population/">37,798,233</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>30</td><td>2,338</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">445</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">57</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bulgaria/">Bulgaria</a></td>
<td style="font-weight: bold; text-align:right">1,182,764</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">37,283 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,134,552</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,929</td>
<td style="font-weight: bold; text-align:right">38</td>
<td style="font-weight: bold; text-align:right">172,858</td>
<td style="font-weight: bold; text-align:right">5,449</td>
<td style="font-weight: bold; text-align:right">10,167,636</td>
<td style="font-weight: bold; text-align:right">1,485,977</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bulgaria-population/">6,842,392</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>6</td><td>184</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,597</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">58</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/finland/">Finland</a></td>
<td style="font-weight: bold; text-align:right">1,171,034</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">5,012 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">1,120,330</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">45,692</td>
<td style="font-weight: bold; text-align:right">21</td>
<td style="font-weight: bold; text-align:right">210,687</td>
<td style="font-weight: bold; text-align:right">902</td>
<td style="font-weight: bold; text-align:right">11,129,795</td>
<td style="font-weight: bold; text-align:right">2,002,417</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/finland-population/">5,558,180</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>5</td><td>1,109</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">8,221</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">59</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/croatia/">Croatia</a></td>
<td style="font-weight: bold; text-align:right">1,163,824</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">16,135 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,138,102</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">9,587</td>
<td style="font-weight: bold; text-align:right">17</td>
<td style="font-weight: bold; text-align:right">287,085</td>
<td style="font-weight: bold; text-align:right">3,980</td>
<td style="font-weight: bold; text-align:right">4,986,129</td>
<td style="font-weight: bold; text-align:right">1,229,949</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/croatia-population/">4,053,933</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>251</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,365</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">60</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/lebanon/">Lebanon</a></td>
<td style="font-weight: bold; text-align:right">1,125,720</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">10,477 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,087,587</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">27,656</td>
<td style="font-weight: bold; text-align:right">186</td>
<td style="font-weight: bold; text-align:right">166,441</td>
<td style="font-weight: bold; text-align:right">1,549</td>
<td style="font-weight: bold; text-align:right">4,795,578</td>
<td style="font-weight: bold; text-align:right">709,042</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/lebanon-population/">6,763,462</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>6</td><td>646</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,089</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">61</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cuba/">Cuba</a></td>
<td style="font-weight: bold; text-align:right">1,106,602</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">8,529 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,097,788</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">285</td>
<td style="font-weight: bold; text-align:right">23</td>
<td style="font-weight: bold; text-align:right">97,820</td>
<td style="font-weight: bold; text-align:right">754</td>
<td style="font-weight: bold; text-align:right">13,852,049</td>
<td style="font-weight: bold; text-align:right">1,224,480</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cuba-population/">11,312,593</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>10</td><td>1,326</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">25</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">62</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/tunisia/">Tunisia</a></td>
<td style="font-weight: bold; text-align:right">1,087,030</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">28,823 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right">29</td>
<td style="font-weight: bold; text-align:right">90,064</td>
<td style="font-weight: bold; text-align:right">2,388</td>
<td style="font-weight: bold; text-align:right">4,743,992</td>
<td style="font-weight: bold; text-align:right">393,055</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/tunisia-population/">12,069,534</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>11</td><td>419</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,606</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">63</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/lithuania/">Lithuania</a></td>
<td style="font-weight: bold; text-align:right">1,073,128</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">9,188 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,038,300</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">25,640</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">405,673</td>
<td style="font-weight: bold; text-align:right">3,473</td>
<td style="font-weight: bold; text-align:right">10,024,830</td>
<td style="font-weight: bold; text-align:right">3,789,667</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/lithuania-population/">2,645,306</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>288</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9,693</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">64</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/slovenia/">Slovenia</a></td>
<td style="font-weight: bold; text-align:right">1,056,179</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">6,665 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,032,092</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">17,422</td>
<td style="font-weight: bold; text-align:right">12</td>
<td style="font-weight: bold; text-align:right">507,896</td>
<td style="font-weight: bold; text-align:right">3,205</td>
<td style="font-weight: bold; text-align:right">2,691,730</td>
<td style="font-weight: bold; text-align:right">1,294,401</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/slovenia-population/">2,079,518</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>312</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">8,378</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">65</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/belarus/">Belarus</a></td>
<td style="font-weight: bold; text-align:right">994,037</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">7,118 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">985,592</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,327</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">105,267</td>
<td style="font-weight: bold; text-align:right">754</td>
<td style="font-weight: bold; text-align:right">13,646,641</td>
<td style="font-weight: bold; text-align:right">1,445,157</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/belarus-population/">9,443,019</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>9</td><td>1,327</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">141</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">66</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/nepal/">Nepal</a></td>
<td style="font-weight: bold; text-align:right">980,981</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">11,952 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">967,858</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,171</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">32,483</td>
<td style="font-weight: bold; text-align:right">396</td>
<td style="font-weight: bold; text-align:right">5,780,700</td>
<td style="font-weight: bold; text-align:right">191,413</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/nepal-population/">30,200,104</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>31</td><td>2,527</td><td>5</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">39</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">67</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/guatemala/">Guatemala</a></td>
<td style="font-weight: bold; text-align:right">970,621</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">18,768 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">881,742</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">70,111</td>
<td style="font-weight: bold; text-align:right">5</td>
<td style="font-weight: bold; text-align:right">52,218</td>
<td style="font-weight: bold; text-align:right">1,010</td>
<td style="font-weight: bold; text-align:right">5,106,651</td>
<td style="font-weight: bold; text-align:right">274,729</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/guatemala-population/">18,587,983</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>19</td><td>990</td><td>4</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,772</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">68</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/united-arab-emirates/">UAE</a></td>
<td style="font-weight: bold; text-align:right">969,097</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,325 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">949,218</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">17,554</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">95,639</td>
<td style="font-weight: bold; text-align:right">229</td>
<td style="font-weight: bold; text-align:right">173,273,059</td>
<td style="font-weight: bold; text-align:right">17,100,110</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/united-arab-emirates-population/">10,132,862</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>10</td><td>4,358</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,732</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">69</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/uruguay/">Uruguay</a></td>
<td style="font-weight: bold; text-align:right">965,370</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">7,373 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">955,371</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,626</td>
<td style="font-weight: bold; text-align:right">18</td>
<td style="font-weight: bold; text-align:right">275,966</td>
<td style="font-weight: bold; text-align:right">2,108</td>
<td style="font-weight: bold; text-align:right">6,114,822</td>
<td style="font-weight: bold; text-align:right">1,748,015</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/uruguay-population/">3,498,152</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>4</td><td>474</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">751</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">70</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bolivia/">Bolivia</a></td>
<td style="font-weight: bold; text-align:right">956,629</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">21,977 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">897,166</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">37,486</td>
<td style="font-weight: bold; text-align:right">220</td>
<td style="font-weight: bold; text-align:right">79,745</td>
<td style="font-weight: bold; text-align:right">1,832</td>
<td style="font-weight: bold; text-align:right">2,705,422</td>
<td style="font-weight: bold; text-align:right">225,525</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bolivia-population/">11,996,097</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>13</td><td>546</td><td>4</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,125</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">71</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/panama/">Panama</a></td>
<td style="font-weight: bold; text-align:right">932,710</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">8,384 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">910,900</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">13,426</td>
<td style="font-weight: bold; text-align:right">16</td>
<td style="font-weight: bold; text-align:right">209,476</td>
<td style="font-weight: bold; text-align:right">1,883</td>
<td style="font-weight: bold; text-align:right">6,637,861</td>
<td style="font-weight: bold; text-align:right">1,490,789</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/panama-population/">4,452,581</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>5</td><td>531</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,015</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">72</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/mongolia/">Mongolia</a></td>
<td style="font-weight: bold; text-align:right">930,418</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,179 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right">192</td>
<td style="font-weight: bold; text-align:right">274,832</td>
<td style="font-weight: bold; text-align:right">644</td>
<td style="font-weight: bold; text-align:right">4,030,048</td>
<td style="font-weight: bold; text-align:right">1,190,418</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/mongolia-population/">3,385,407</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>4</td><td>1,554</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">181,657</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">73</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/ecuador/">Ecuador</a></td>
<td style="font-weight: bold; text-align:right">927,700</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">35,769 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">872,779</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+1,808</td>
<td style="text-align:right;font-weight:bold;">19,152</td>
<td style="font-weight: bold; text-align:right">759</td>
<td style="font-weight: bold; text-align:right">51,010</td>
<td style="font-weight: bold; text-align:right">1,967</td>
<td style="font-weight: bold; text-align:right">2,470,170</td>
<td style="font-weight: bold; text-align:right">135,823</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/ecuador-population/">18,186,639</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>20</td><td>508</td><td>7</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,053</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">74</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/costa-rica/">Costa Rica</a></td>
<td style="font-weight: bold; text-align:right">904,934</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">8,525 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">860,711</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">35,698</td>
<td style="font-weight: bold; text-align:right">52</td>
<td style="font-weight: bold; text-align:right">174,412</td>
<td style="font-weight: bold; text-align:right">1,643</td>
<td style="font-weight: bold; text-align:right">4,659,757</td>
<td style="font-weight: bold; text-align:right">898,094</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/costa-rica-population/">5,188,498</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>6</td><td>609</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,880</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">75</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/latvia/">Latvia</a></td>
<td style="font-weight: bold; text-align:right">844,142</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">5,873 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">829,937</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">8,332</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">457,796</td>
<td style="font-weight: bold; text-align:right">3,185</td>
<td style="font-weight: bold; text-align:right">7,358,973</td>
<td style="font-weight: bold; text-align:right">3,990,926</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/latvia-population/">1,843,926</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>314</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,519</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">76</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saudi-arabia/">Saudi Arabia</a></td>
<td style="font-weight: bold; text-align:right">801,935</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">9,228 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">786,711</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">5,996</td>
<td style="font-weight: bold; text-align:right">169</td>
<td style="font-weight: bold; text-align:right">22,329</td>
<td style="font-weight: bold; text-align:right">257</td>
<td style="font-weight: bold; text-align:right">43,628,872</td>
<td style="font-weight: bold; text-align:right">1,214,817</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saudi-arabia-population/">35,913,946</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>45</td><td>3,892</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">167</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">77</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/azerbaijan/">Azerbaijan</a></td>
<td style="font-weight: bold; text-align:right">793,918</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">9,719 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">783,453</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">746</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">76,896</td>
<td style="font-weight: bold; text-align:right">941</td>
<td style="font-weight: bold; text-align:right">6,972,527</td>
<td style="font-weight: bold; text-align:right">675,332</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/azerbaijan-population/">10,324,599</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>13</td><td>1,062</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">72</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">78</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/paraguay/">Paraguay</a></td>
<td style="font-weight: bold; text-align:right">673,829</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">19,036 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">639,340</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">15,453</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">92,175</td>
<td style="font-weight: bold; text-align:right">2,604</td>
<td style="font-weight: bold; text-align:right">2,646,163</td>
<td style="font-weight: bold; text-align:right">361,977</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/paraguay-population/">7,310,305</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>11</td><td>384</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,114</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">79</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/sri-lanka/">Sri Lanka</a></td>
<td style="font-weight: bold; text-align:right">664,364</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">16,526 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">647,445</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">393</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">30,764</td>
<td style="font-weight: bold; text-align:right">765</td>
<td style="font-weight: bold; text-align:right">6,486,117</td>
<td style="font-weight: bold; text-align:right">300,347</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/sri-lanka-population/">21,595,391</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>33</td><td>1,307</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">18</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">80</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/kuwait/">Kuwait</a></td>
<td style="font-weight: bold; text-align:right">648,216</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,556 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">641,752</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3,908</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">147,365</td>
<td style="font-weight: bold; text-align:right">581</td>
<td style="font-weight: bold; text-align:right">8,242,720</td>
<td style="font-weight: bold; text-align:right">1,873,891</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/kuwait-population/">4,398,718</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>7</td><td>1,721</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">888</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">81</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bahrain/">Bahrain</a></td>
<td style="font-weight: bold; text-align:right">645,399</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,503 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">633,093</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,803</td>
<td style="font-weight: bold; text-align:right">18</td>
<td style="font-weight: bold; text-align:right">354,309</td>
<td style="font-weight: bold; text-align:right">825</td>
<td style="font-weight: bold; text-align:right">10,099,771</td>
<td style="font-weight: bold; text-align:right">5,544,533</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bahrain-population/">1,821,573</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>3</td><td>1,212</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">5,931</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">82</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/dominican-republic/">Dominican Republic</a></td>
<td style="font-weight: bold; text-align:right">621,047</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">4,383 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">611,734</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">4,930</td>
<td style="font-weight: bold; text-align:right">27</td>
<td style="font-weight: bold; text-align:right">56,109</td>
<td style="font-weight: bold; text-align:right">396</td>
<td style="font-weight: bold; text-align:right">3,552,150</td>
<td style="font-weight: bold; text-align:right">320,921</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/dominican-republic-population/">11,068,627</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>18</td><td>2,525</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">445</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">83</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/myanmar/">Myanmar</a></td>
<td style="font-weight: bold; text-align:right">613,784</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">19,434 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">592,700</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,650</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">11,129</td>
<td style="font-weight: bold; text-align:right">352</td>
<td style="font-weight: bold; text-align:right">8,442,405</td>
<td style="font-weight: bold; text-align:right">153,081</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/myanmar-population/">55,149,826</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>90</td><td>2,838</td><td>7</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">30</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">84</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/state-of-palestine/">Palestine</a></td>
<td style="font-weight: bold; text-align:right">586,058</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">5,358 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">578,920</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,780</td>
<td style="font-weight: bold; text-align:right">17</td>
<td style="font-weight: bold; text-align:right">109,707</td>
<td style="font-weight: bold; text-align:right">1,003</td>
<td style="font-weight: bold; text-align:right">3,078,533</td>
<td style="font-weight: bold; text-align:right">576,286</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/state-of-palestine-population/">5,342,019</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>9</td><td>997</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">333</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">85</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/estonia/">Estonia</a></td>
<td style="font-weight: bold; text-align:right">585,143</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,608 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">523,576</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">58,959</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">440,505</td>
<td style="font-weight: bold; text-align:right">1,963</td>
<td style="font-weight: bold; text-align:right">3,424,969</td>
<td style="font-weight: bold; text-align:right">2,578,373</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/estonia-population/">1,328,345</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>509</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">44,385</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">86</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cyprus/">Cyprus</a></td>
<td style="font-weight: bold; text-align:right">530,510</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,079 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">124,370</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">405,061</td>
<td style="font-weight: bold; text-align:right">60</td>
<td style="font-weight: bold; text-align:right">433,002</td>
<td style="font-weight: bold; text-align:right">881</td>
<td style="font-weight: bold; text-align:right">9,477,138</td>
<td style="font-weight: bold; text-align:right">7,735,233</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cyprus-population/">1,225,191</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>2</td><td>1,135</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">330,610</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">87</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/venezuela/">Venezuela</a></td>
<td style="font-weight: bold; text-align:right">528,785</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">5,742 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">520,353</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,690</td>
<td style="font-weight: bold; text-align:right">36</td>
<td style="font-weight: bold; text-align:right">18,703</td>
<td style="font-weight: bold; text-align:right">203</td>
<td style="font-weight: bold; text-align:right">3,359,014</td>
<td style="font-weight: bold; text-align:right">118,808</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/venezuela-population/">28,272,539</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>53</td><td>4,924</td><td>8</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">95</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">88</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/moldova/">Moldova</a></td>
<td style="font-weight: bold; text-align:right">520,321</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">11,567 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">504,142</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">4,612</td>
<td style="font-weight: bold; text-align:right">49</td>
<td style="font-weight: bold; text-align:right">129,596</td>
<td style="font-weight: bold; text-align:right">2,881</td>
<td style="font-weight: bold; text-align:right">3,216,305</td>
<td style="font-weight: bold; text-align:right">801,083</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/moldova-population/">4,014,948</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>8</td><td>347</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,149</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">89</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/egypt/">Egypt</a></td>
<td style="font-weight: bold; text-align:right">515,645</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">24,613 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">442,182</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">48,850</td>
<td style="font-weight: bold; text-align:right">122</td>
<td style="font-weight: bold; text-align:right">4,853</td>
<td style="font-weight: bold; text-align:right">232</td>
<td style="font-weight: bold; text-align:right">3,693,367</td>
<td style="font-weight: bold; text-align:right">34,761</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/egypt-population/">106,250,559</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>206</td><td>4,317</td><td>29</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">460</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">90</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/libya/">Libya</a></td>
<td style="font-weight: bold; text-align:right">502,289</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">6,430 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">490,973</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">4,886</td>
<td style="font-weight: bold; text-align:right">101</td>
<td style="font-weight: bold; text-align:right">71,137</td>
<td style="font-weight: bold; text-align:right">911</td>
<td style="font-weight: bold; text-align:right">2,477,219</td>
<td style="font-weight: bold; text-align:right">350,837</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/libya-population/">7,060,876</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>14</td><td>1,098</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">692</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">91</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/ethiopia/">Ethiopia</a></td>
<td style="font-weight: bold; text-align:right">490,816</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">7,559 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">467,952</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">15,305</td>
<td style="font-weight: bold; text-align:right">41</td>
<td style="font-weight: bold; text-align:right">4,065</td>
<td style="font-weight: bold; text-align:right">63</td>
<td style="font-weight: bold; text-align:right">5,096,984</td>
<td style="font-weight: bold; text-align:right">42,214</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/ethiopia-population/">120,741,154</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>246</td><td>15,973</td><td>24</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">127</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">92</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/honduras/">Honduras</a></td>
<td style="font-weight: bold; text-align:right">430,672</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">10,912 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">132,498</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">287,262</td>
<td style="font-weight: bold; text-align:right">105</td>
<td style="font-weight: bold; text-align:right">42,123</td>
<td style="font-weight: bold; text-align:right">1,067</td>
<td style="font-weight: bold; text-align:right">1,415,120</td>
<td style="font-weight: bold; text-align:right">138,408</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/honduras-population/">10,224,234</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>24</td><td>937</td><td>7</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">28,096</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">93</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/reunion/">Réunion</a></td>
<td style="font-weight: bold; text-align:right">425,638</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">819 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">418,572</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">6,247</td>
<td style="font-weight: bold; text-align:right">10</td>
<td style="font-weight: bold; text-align:right">468,622</td>
<td style="font-weight: bold; text-align:right">902</td>
<td style="font-weight: bold; text-align:right">1,603,660</td>
<td style="font-weight: bold; text-align:right">1,765,611</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/reunion-population/">908,275</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>2</td><td>1,109</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,878</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">94</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/armenia/">Armenia</a></td>
<td style="font-weight: bold; text-align:right">423,771</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">8,629 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">412,661</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,481</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">142,469</td>
<td style="font-weight: bold; text-align:right">2,901</td>
<td style="font-weight: bold; text-align:right">3,109,931</td>
<td style="font-weight: bold; text-align:right">1,045,538</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/armenia-population/">2,974,478</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>7</td><td>345</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">834</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">95</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/qatar/">Qatar</a></td>
<td style="font-weight: bold; text-align:right">391,945</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">680 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">385,818</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">5,447</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">139,591</td>
<td style="font-weight: bold; text-align:right">242</td>
<td style="font-weight: bold; text-align:right">3,693,147</td>
<td style="font-weight: bold; text-align:right">1,315,315</td>
<td style="font-weight: bold; text-align:right">2,807,805 </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>7</td><td>4,129</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,940</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">96</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/oman/">Oman</a></td>
<td style="font-weight: bold; text-align:right">391,641</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">4,260 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">384,669</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,712</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">72,930</td>
<td style="font-weight: bold; text-align:right">793</td>
<td style="font-weight: bold; text-align:right">25,000,000</td>
<td style="font-weight: bold; text-align:right">4,655,385</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/oman-population/">5,370,125</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>14</td><td>1,261</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">505</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">97</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bosnia-and-herzegovina/">Bosnia and Herzegovina</a></td>
<td style="font-weight: bold; text-align:right">380,498</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">15,814 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">117,458</td>
<td style="font-weight: bold; text-align:right">4,882</td>
<td style="font-weight: bold; text-align:right">1,800,193</td>
<td style="font-weight: bold; text-align:right">555,711</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bosnia-and-herzegovina-population/">3,239,440</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>9</td><td>205</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">53,239</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">98</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/kenya/">Kenya</a></td>
<td style="font-weight: bold; text-align:right">336,445</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">5,668 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">329,122</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,655</td>
<td style="font-weight: bold; text-align:right">3</td>
<td style="font-weight: bold; text-align:right">5,989</td>
<td style="font-weight: bold; text-align:right">101</td>
<td style="font-weight: bold; text-align:right">3,790,310</td>
<td style="font-weight: bold; text-align:right">67,474</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/kenya-population/">56,174,415</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>167</td><td>9,911</td><td>15</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">29</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">99</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/zambia/">Zambia</a></td>
<td style="font-weight: bold; text-align:right">327,102</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">4,008 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">322,093</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,001</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">16,836</td>
<td style="font-weight: bold; text-align:right">206</td>
<td style="font-weight: bold; text-align:right">3,576,701</td>
<td style="font-weight: bold; text-align:right">184,095</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/zambia-population/">19,428,522</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>59</td><td>4,847</td><td>5</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">52</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">100</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/botswana/">Botswana</a></td>
<td style="font-weight: bold; text-align:right">324,841</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,760 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">321,024</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,057</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">132,698</td>
<td style="font-weight: bold; text-align:right">1,127</td>
<td style="font-weight: bold; text-align:right">2,026,898</td>
<td style="font-weight: bold; text-align:right">827,993</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/botswana-population/">2,447,965</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>8</td><td>887</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">432</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">101</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/macedonia/">North Macedonia</a></td>
<td style="font-weight: bold; text-align:right">317,634</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">9,337 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">305,988</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,309</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">152,474</td>
<td style="font-weight: bold; text-align:right">4,482</td>
<td style="font-weight: bold; text-align:right">2,081,293</td>
<td style="font-weight: bold; text-align:right">999,084</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/macedonia-population/">2,083,201</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>7</td><td>223</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,108</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">102</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/albania/">Albania</a></td>
<td style="font-weight: bold; text-align:right">290,954</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">3,517 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">280,374</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">7,063</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">101,327</td>
<td style="font-weight: bold; text-align:right">1,225</td>
<td style="font-weight: bold; text-align:right">1,866,752</td>
<td style="font-weight: bold; text-align:right">650,114</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/albania-population/">2,871,424</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>10</td><td>816</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,460</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">103</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/algeria/">Algeria</a></td>
<td style="font-weight: bold; text-align:right">266,356</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">6,875 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">178,747</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">80,734</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">5,859</td>
<td style="font-weight: bold; text-align:right">151</td>
<td style="font-weight: bold; text-align:right">230,861</td>
<td style="font-weight: bold; text-align:right">5,079</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/algeria-population/">45,457,663</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>171</td><td>6,612</td><td>197</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,776</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">104</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/luxembourg/">Luxembourg</a></td>
<td style="font-weight: bold; text-align:right">263,167</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,094 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">251,249</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,824</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">406,975</td>
<td style="font-weight: bold; text-align:right">1,692</td>
<td style="font-weight: bold; text-align:right">4,307,055</td>
<td style="font-weight: bold; text-align:right">6,660,659</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/luxembourg-population/">646,641</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>591</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">16,739</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">105</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/nigeria/">Nigeria</a></td>
<td style="font-weight: bold; text-align:right">258,934</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">3,144 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">250,472</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">5,318</td>
<td style="font-weight: bold; text-align:right">11</td>
<td style="font-weight: bold; text-align:right">1,196</td>
<td style="font-weight: bold; text-align:right">15</td>
<td style="font-weight: bold; text-align:right">5,349,305</td>
<td style="font-weight: bold; text-align:right">24,707</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/nigeria-population/">216,505,530</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>836</td><td>68,863</td><td>40</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">25</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">106</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/zimbabwe/">Zimbabwe</a></td>
<td style="font-weight: bold; text-align:right">256,047</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">5,566 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">249,834</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">647</td>
<td style="font-weight: bold; text-align:right">12</td>
<td style="font-weight: bold; text-align:right">16,733</td>
<td style="font-weight: bold; text-align:right">364</td>
<td style="font-weight: bold; text-align:right">2,421,838</td>
<td style="font-weight: bold; text-align:right">158,270</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/zimbabwe-population/">15,301,924</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>60</td><td>2,749</td><td>6</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">42</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">107</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/montenegro/">Montenegro</a></td>
<td style="font-weight: bold; text-align:right">245,369</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,730 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">239,369</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3,270</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">390,574</td>
<td style="font-weight: bold; text-align:right">4,346</td>
<td style="font-weight: bold; text-align:right">2,513,663</td>
<td style="font-weight: bold; text-align:right">4,001,202</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/montenegro-population/">628,227</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>230</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">5,205</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">108</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/uzbekistan/">Uzbekistan</a></td>
<td style="font-weight: bold; text-align:right">241,953</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,637 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">238,891</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,425</td>
<td style="font-weight: bold; text-align:right">23</td>
<td style="font-weight: bold; text-align:right">7,023</td>
<td style="font-weight: bold; text-align:right">48</td>
<td style="font-weight: bold; text-align:right">1,377,915</td>
<td style="font-weight: bold; text-align:right">39,994</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/uzbekistan-population/">34,453,391</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>142</td><td>21,047</td><td>25</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">41</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">109</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/mozambique/">Mozambique</a></td>
<td style="font-weight: bold; text-align:right">228,887</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,215 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">226,271</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">401</td>
<td style="font-weight: bold; text-align:right">11</td>
<td style="font-weight: bold; text-align:right">6,929</td>
<td style="font-weight: bold; text-align:right">67</td>
<td style="font-weight: bold; text-align:right">1,358,293</td>
<td style="font-weight: bold; text-align:right">41,120</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/mozambique-population/">33,032,036</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>144</td><td>14,913</td><td>24</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">12</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">110</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/laos/">Laos</a></td>
<td style="font-weight: bold; text-align:right">210,433</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">757 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">28,096</td>
<td style="font-weight: bold; text-align:right">101</td>
<td style="font-weight: bold; text-align:right">1,233,207</td>
<td style="font-weight: bold; text-align:right">164,652</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/laos-population/">7,489,772</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>36</td><td>9,894</td><td>6</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">26,972</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">111</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/martinique/">Martinique</a></td>
<td style="font-weight: bold; text-align:right">207,969</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">987 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">104</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">206,878</td>
<td style="font-weight: bold; text-align:right">8</td>
<td style="font-weight: bold; text-align:right">555,065</td>
<td style="font-weight: bold; text-align:right">2,634</td>
<td style="font-weight: bold; text-align:right">828,928</td>
<td style="font-weight: bold; text-align:right">2,212,392</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/martinique-population/">374,675</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>2</td><td>380</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">552,153</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">112</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/kyrgyzstan/">Kyrgyzstan</a></td>
<td style="font-weight: bold; text-align:right">201,329</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,991 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">196,406</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,932</td>
<td style="font-weight: bold; text-align:right">131</td>
<td style="font-weight: bold; text-align:right">29,859</td>
<td style="font-weight: bold; text-align:right">444</td>
<td style="font-weight: bold; text-align:right">1,907,195</td>
<td style="font-weight: bold; text-align:right">282,858</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/kyrgyzstan-population/">6,742,594</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>33</td><td>2,254</td><td>4</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">287</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">113</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/iceland/">Iceland</a></td>
<td style="font-weight: bold; text-align:right">198,721</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">179 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">574,777</td>
<td style="font-weight: bold; text-align:right">518</td>
<td style="font-weight: bold; text-align:right">1,977,641</td>
<td style="font-weight: bold; text-align:right">5,720,090</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/iceland-population/">345,736</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>1,931</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">355,349</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">114</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/maldives/">Maldives</a></td>
<td style="font-weight: bold; text-align:right">183,491</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">307 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">163,687</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">19,497</td>
<td style="font-weight: bold; text-align:right">25</td>
<td style="font-weight: bold; text-align:right">327,744</td>
<td style="font-weight: bold; text-align:right">548</td>
<td style="font-weight: bold; text-align:right">2,213,831</td>
<td style="font-weight: bold; text-align:right">3,954,251</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/maldives-population/">559,861</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>3</td><td>1,824</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">34,825</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">115</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/afghanistan/">Afghanistan</a></td>
<td style="font-weight: bold; text-align:right">183,358</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">7,728 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">165,318</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,312</td>
<td style="font-weight: bold; text-align:right">1,124</td>
<td style="font-weight: bold; text-align:right">4,504</td>
<td style="font-weight: bold; text-align:right">190</td>
<td style="font-weight: bold; text-align:right">1,012,596</td>
<td style="font-weight: bold; text-align:right">24,875</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/afghanistan-population/">40,707,111</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>222</td><td>5,267</td><td>40</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">253</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">116</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/el-salvador/">El Salvador</a></td>
<td style="font-weight: bold; text-align:right">180,970</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">4,167 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">165,895</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,908</td>
<td style="font-weight: bold; text-align:right">8</td>
<td style="font-weight: bold; text-align:right">27,618</td>
<td style="font-weight: bold; text-align:right">636</td>
<td style="font-weight: bold; text-align:right">2,284,873</td>
<td style="font-weight: bold; text-align:right">348,697</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/el-salvador-population/">6,552,601</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>36</td><td>1,572</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,665</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">117</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/brunei-darussalam/">Brunei </a></td>
<td style="font-weight: bold; text-align:right">179,759</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">225 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">164,116</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">15,418</td>
<td style="font-weight: bold; text-align:right">3</td>
<td style="font-weight: bold; text-align:right">403,067</td>
<td style="font-weight: bold; text-align:right">505</td>
<td style="font-weight: bold; text-align:right">717,784</td>
<td style="font-weight: bold; text-align:right">1,609,461</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/brunei-darussalam-population/">445,978</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>2</td><td>1,982</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">34,571</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">118</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/guadeloupe/">Guadeloupe</a></td>
<td style="font-weight: bold; text-align:right">175,348</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">958 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2,250</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">172,140</td>
<td style="font-weight: bold; text-align:right">19</td>
<td style="font-weight: bold; text-align:right">438,082</td>
<td style="font-weight: bold; text-align:right">2,393</td>
<td style="font-weight: bold; text-align:right">938,039</td>
<td style="font-weight: bold; text-align:right">2,343,557</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/guadeloupe-population/">400,263</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>2</td><td>418</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">430,067</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">119</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/namibia/">Namibia</a></td>
<td style="font-weight: bold; text-align:right">169,253</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">4,065 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">164,813</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">375</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">64,250</td>
<td style="font-weight: bold; text-align:right">1,543</td>
<td style="font-weight: bold; text-align:right">1,062,663</td>
<td style="font-weight: bold; text-align:right">403,400</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/namibia-population/">2,634,269</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>16</td><td>648</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">142</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">120</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/trinidad-and-tobago/">Trinidad and Tobago</a></td>
<td style="font-weight: bold; text-align:right">168,808</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">4,034 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">158,668</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">6,106</td>
<td style="font-weight: bold; text-align:right">18</td>
<td style="font-weight: bold; text-align:right">119,834</td>
<td style="font-weight: bold; text-align:right">2,864</td>
<td style="font-weight: bold; text-align:right">781,653</td>
<td style="font-weight: bold; text-align:right">554,883</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/trinidad-and-tobago-population/">1,408,681</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>8</td><td>349</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,335</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">121</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/uganda/">Uganda</a></td>
<td style="font-weight: bold; text-align:right">168,569</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">3,627 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">100,420</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">64,522</td>
<td style="font-weight: bold; text-align:right">10</td>
<td style="font-weight: bold; text-align:right">3,463</td>
<td style="font-weight: bold; text-align:right">75</td>
<td style="font-weight: bold; text-align:right">2,975,238</td>
<td style="font-weight: bold; text-align:right">61,129</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/uganda-population/">48,671,743</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>289</td><td>13,419</td><td>16</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,326</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">122</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/ghana/">Ghana</a></td>
<td style="font-weight: bold; text-align:right">167,215</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,456 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">165,153</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">606</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">5,163</td>
<td style="font-weight: bold; text-align:right">45</td>
<td style="font-weight: bold; text-align:right">2,479,277</td>
<td style="font-weight: bold; text-align:right">76,547</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/ghana-population/">32,388,938</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>194</td><td>22,245</td><td>13</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">19</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">123</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/jamaica/">Jamaica</a></td>
<td style="font-weight: bold; text-align:right">144,349</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">3,164 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">92,028</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">49,157</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">48,319</td>
<td style="font-weight: bold; text-align:right">1,059</td>
<td style="font-weight: bold; text-align:right">1,138,135</td>
<td style="font-weight: bold; text-align:right">380,980</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/jamaica-population/">2,987,387</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>21</td><td>944</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">16,455</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">124</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cambodia/">Cambodia</a></td>
<td style="font-weight: bold; text-align:right">136,407</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">3,056 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">133,267</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">84</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">7,936</td>
<td style="font-weight: bold; text-align:right">178</td>
<td style="font-weight: bold; text-align:right">3,002,402</td>
<td style="font-weight: bold; text-align:right">174,676</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cambodia-population/">17,188,440</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>126</td><td>5,624</td><td>6</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">5</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">125</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/rwanda/">Rwanda</a></td>
<td style="font-weight: bold; text-align:right">131,808</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,462 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">45,522</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">84,824</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9,689</td>
<td style="font-weight: bold; text-align:right">107</td>
<td style="font-weight: bold; text-align:right">5,608,157</td>
<td style="font-weight: bold; text-align:right">412,254</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/rwanda-population/">13,603,629</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>103</td><td>9,305</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,235</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">126</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cameroon/">Cameroon</a></td>
<td style="font-weight: bold; text-align:right">120,068</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,931 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">117,791</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">346</td>
<td style="font-weight: bold; text-align:right">13</td>
<td style="font-weight: bold; text-align:right">4,306</td>
<td style="font-weight: bold; text-align:right">69</td>
<td style="font-weight: bold; text-align:right">1,751,774</td>
<td style="font-weight: bold; text-align:right">62,818</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cameroon-population/">27,886,520</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>232</td><td>14,441</td><td>16</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">12</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">127</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/malta/">Malta</a></td>
<td style="font-weight: bold; text-align:right">110,191</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">768 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">101,772</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">7,651</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">248,218</td>
<td style="font-weight: bold; text-align:right">1,730</td>
<td style="font-weight: bold; text-align:right">1,994,827</td>
<td style="font-weight: bold; text-align:right">4,493,582</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/malta-population/">443,928</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>4</td><td>578</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">17,235</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">128</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/angola/">Angola</a></td>
<td style="font-weight: bold; text-align:right">101,600</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,900 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">97,149</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,551</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,908</td>
<td style="font-weight: bold; text-align:right">54</td>
<td style="font-weight: bold; text-align:right">1,499,795</td>
<td style="font-weight: bold; text-align:right">42,924</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/angola-population/">34,940,471</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>344</td><td>18,390</td><td>23</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">73</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">129</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/democratic-republic-of-the-congo/">DRC</a></td>
<td style="font-weight: bold; text-align:right">91,737</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,376 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">50,930</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">39,431</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">965</td>
<td style="font-weight: bold; text-align:right">14</td>
<td style="font-weight: bold; text-align:right">846,704</td>
<td style="font-weight: bold; text-align:right">8,905</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/democratic-republic-of-the-congo-population/">95,085,590</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>1,037</td><td>69,103</td><td>112</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">415</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">130</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/french-guiana/">French Guiana</a></td>
<td style="font-weight: bold; text-align:right">89,779</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">402 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">11,254</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">78,123</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">285,567</td>
<td style="font-weight: bold; text-align:right">1,279</td>
<td style="font-weight: bold; text-align:right">644,972</td>
<td style="font-weight: bold; text-align:right">2,051,509</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/french-guiana-population/">314,389</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>4</td><td>782</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">248,492</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">131</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/barbados/">Barbados</a></td>
<td style="font-weight: bold; text-align:right">87,002</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">479 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">84,706</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,817</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">301,997</td>
<td style="font-weight: bold; text-align:right">1,663</td>
<td style="font-weight: bold; text-align:right">714,126</td>
<td style="font-weight: bold; text-align:right">2,478,838</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/barbados-population/">288,089</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>3</td><td>601</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,307</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">132</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/malawi/">Malawi</a></td>
<td style="font-weight: bold; text-align:right">86,823</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,651 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">83,506</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">666</td>
<td style="font-weight: bold; text-align:right">67</td>
<td style="font-weight: bold; text-align:right">4,312</td>
<td style="font-weight: bold; text-align:right">132</td>
<td style="font-weight: bold; text-align:right">596,340</td>
<td style="font-weight: bold; text-align:right">29,620</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/malawi-population/">20,132,870</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>232</td><td>7,594</td><td>34</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">33</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">133</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/senegal/">Senegal</a></td>
<td style="font-weight: bold; text-align:right">86,631</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,968 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">84,535</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">128</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,911</td>
<td style="font-weight: bold; text-align:right">112</td>
<td style="font-weight: bold; text-align:right">1,123,868</td>
<td style="font-weight: bold; text-align:right">63,714</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/senegal-population/">17,639,141</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>204</td><td>8,963</td><td>16</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">7</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">134</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/channel-islands/">Channel Islands</a></td>
<td style="font-weight: bold; text-align:right">85,848</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">181 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">82,813</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,854</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">484,705</td>
<td style="font-weight: bold; text-align:right">1,022</td>
<td style="font-weight: bold; text-align:right">1,252,808</td>
<td style="font-weight: bold; text-align:right">7,073,456</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/channel-islands-population/">177,114</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>979</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">16,114</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">135</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cote-d-ivoire/">Ivory Coast</a></td>
<td style="font-weight: bold; text-align:right">84,347</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">806 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">83,259</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">282</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,045</td>
<td style="font-weight: bold; text-align:right">29</td>
<td style="font-weight: bold; text-align:right">1,563,566</td>
<td style="font-weight: bold; text-align:right">56,439</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cote-d-ivoire-population/">27,703,542</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>328</td><td>34,372</td><td>18</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">10</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">136</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/suriname/">Suriname</a></td>
<td style="font-weight: bold; text-align:right">80,919</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,377 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">49,590</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">29,952</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">135,476</td>
<td style="font-weight: bold; text-align:right">2,305</td>
<td style="font-weight: bold; text-align:right">238,251</td>
<td style="font-weight: bold; text-align:right">398,883</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/suriname-population/">597,296</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>7</td><td>434</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">50,146</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">137</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/french-polynesia/">French Polynesia</a></td>
<td style="font-weight: bold; text-align:right">73,858</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">649 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right">7</td>
<td style="font-weight: bold; text-align:right">259,879</td>
<td style="font-weight: bold; text-align:right">2,284</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/french-polynesia-population/">284,202</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>4</td><td>438</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">139,721</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">138</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/swaziland/">Eswatini</a></td>
<td style="font-weight: bold; text-align:right">73,230</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,417 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">71,731</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">82</td>
<td style="font-weight: bold; text-align:right">11</td>
<td style="font-weight: bold; text-align:right">61,822</td>
<td style="font-weight: bold; text-align:right">1,196</td>
<td style="font-weight: bold; text-align:right">1,038,765</td>
<td style="font-weight: bold; text-align:right">876,938</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/swaziland-population/">1,184,537</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>16</td><td>836</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">69</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">139</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/guyana/">Guyana</a></td>
<td style="font-weight: bold; text-align:right">68,627</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,264 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">66,447</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">916</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">86,405</td>
<td style="font-weight: bold; text-align:right">1,591</td>
<td style="font-weight: bold; text-align:right">668,394</td>
<td style="font-weight: bold; text-align:right">841,539</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/guyana-population/">794,252</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>12</td><td>628</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,153</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">140</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/fiji/">Fiji</a></td>
<td style="font-weight: bold; text-align:right">66,713</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">869 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">64,320</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,524</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">73,341</td>
<td style="font-weight: bold; text-align:right">955</td>
<td style="font-weight: bold; text-align:right">587,132</td>
<td style="font-weight: bold; text-align:right">645,467</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/fiji-population/">909,624</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>14</td><td>1,047</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,675</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">141</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/new-caledonia/">New Caledonia</a></td>
<td style="font-weight: bold; text-align:right">66,596</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">314 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">64,483</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,799</td>
<td style="font-weight: bold; text-align:right">9</td>
<td style="font-weight: bold; text-align:right">228,800</td>
<td style="font-weight: bold; text-align:right">1,079</td>
<td style="font-weight: bold; text-align:right">98,964</td>
<td style="font-weight: bold; text-align:right">340,004</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/new-caledonia-population/">291,067</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>4</td><td>927</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,181</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">142</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/madagascar/">Madagascar</a></td>
<td style="font-weight: bold; text-align:right">66,098</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,403 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">63,895</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">800</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">2,269</td>
<td style="font-weight: bold; text-align:right">48</td>
<td style="font-weight: bold; text-align:right">478,036</td>
<td style="font-weight: bold; text-align:right">16,407</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/madagascar-population/">29,135,325</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>441</td><td>20,766</td><td>61</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">27</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">143</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/belize/">Belize</a></td>
<td style="font-weight: bold; text-align:right">65,840</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">680 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">64,409</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">751</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">159,700</td>
<td style="font-weight: bold; text-align:right">1,649</td>
<td style="font-weight: bold; text-align:right">576,016</td>
<td style="font-weight: bold; text-align:right">1,397,168</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/belize-population/">412,274</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>6</td><td>606</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,822</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">144</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/sudan/">Sudan</a></td>
<td style="font-weight: bold; text-align:right">62,795</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">4,955 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,367</td>
<td style="font-weight: bold; text-align:right">108</td>
<td style="font-weight: bold; text-align:right">562,941</td>
<td style="font-weight: bold; text-align:right">12,257</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/sudan-population/">45,926,466</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>731</td><td>9,269</td><td>82</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">381</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">145</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cabo-verde/">Cabo Verde</a></td>
<td style="font-weight: bold; text-align:right">61,776</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">409 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">60,941</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">426</td>
<td style="font-weight: bold; text-align:right">23</td>
<td style="font-weight: bold; text-align:right">108,715</td>
<td style="font-weight: bold; text-align:right">720</td>
<td style="font-weight: bold; text-align:right">401,416</td>
<td style="font-weight: bold; text-align:right">706,421</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cabo-verde-population/">568,239</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>9</td><td>1,389</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">750</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">146</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/mauritania/">Mauritania</a></td>
<td style="font-weight: bold; text-align:right">61,640</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">986 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">58,986</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,668</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">12,586</td>
<td style="font-weight: bold; text-align:right">201</td>
<td style="font-weight: bold; text-align:right">887,638</td>
<td style="font-weight: bold; text-align:right">181,239</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/mauritania-population/">4,897,620</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>79</td><td>4,967</td><td>6</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">341</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">147</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bhutan/">Bhutan</a></td>
<td style="font-weight: bold; text-align:right">59,940</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">21 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">59,845</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">74</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">75,984</td>
<td style="font-weight: bold; text-align:right">27</td>
<td style="font-weight: bold; text-align:right">2,303,734</td>
<td style="font-weight: bold; text-align:right">2,920,381</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bhutan-population/">788,847</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>13</td><td>37,564</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">94</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">148</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/syria/">Syria</a></td>
<td style="font-weight: bold; text-align:right">55,966</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">3,150 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">52,778</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">38</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,048</td>
<td style="font-weight: bold; text-align:right">172</td>
<td style="font-weight: bold; text-align:right">146,269</td>
<td style="font-weight: bold; text-align:right">7,965</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/syria-population/">18,363,203</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>328</td><td>5,830</td><td>126</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">149</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/gabon/">Gabon</a></td>
<td style="font-weight: bold; text-align:right">48,157</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">305 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">47,391</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">461</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">20,648</td>
<td style="font-weight: bold; text-align:right">131</td>
<td style="font-weight: bold; text-align:right">1,604,748</td>
<td style="font-weight: bold; text-align:right">688,057</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/gabon-population/">2,332,288</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>48</td><td>7,647</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">198</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">150</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/seychelles/">Seychelles</a></td>
<td style="font-weight: bold; text-align:right">45,185</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">167 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">44,755</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">263</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">453,747</td>
<td style="font-weight: bold; text-align:right">1,677</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/seychelles-population/">99,582</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>2</td><td>596</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,641</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">151</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/curacao/">Curaçao</a></td>
<td style="font-weight: bold; text-align:right">44,782</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">280 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">44,339</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">163</td>
<td style="font-weight: bold; text-align:right">3</td>
<td style="font-weight: bold; text-align:right">270,661</td>
<td style="font-weight: bold; text-align:right">1,692</td>
<td style="font-weight: bold; text-align:right">496,693</td>
<td style="font-weight: bold; text-align:right">3,002,001</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/curacao-population/">165,454</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>4</td><td>591</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">985</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">152</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/papua-new-guinea/">Papua New Guinea</a></td>
<td style="font-weight: bold; text-align:right">44,758</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">662 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">43,982</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">114</td>
<td style="font-weight: bold; text-align:right">7</td>
<td style="font-weight: bold; text-align:right">4,817</td>
<td style="font-weight: bold; text-align:right">71</td>
<td style="font-weight: bold; text-align:right">249,149</td>
<td style="font-weight: bold; text-align:right">26,816</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/papua-new-guinea-population/">9,290,895</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>208</td><td>14,035</td><td>37</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">12</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">153</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/andorra/">Andorra</a></td>
<td style="font-weight: bold; text-align:right">44,671</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">153 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">43,802</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">716</td>
<td style="font-weight: bold; text-align:right">14</td>
<td style="font-weight: bold; text-align:right">576,281</td>
<td style="font-weight: bold; text-align:right">1,974</td>
<td style="font-weight: bold; text-align:right">249,838</td>
<td style="font-weight: bold; text-align:right">3,223,051</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/andorra-population/">77,516</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>507</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9,237</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">154</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/burundi/">Burundi</a></td>
<td style="font-weight: bold; text-align:right">43,060</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">38 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,415</td>
<td style="font-weight: bold; text-align:right">3</td>
<td style="font-weight: bold; text-align:right">345,742</td>
<td style="font-weight: bold; text-align:right">27,420</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/burundi-population/">12,609,279</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>293</td><td>331,823</td><td>36</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,351</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">155</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/aruba/">Aruba</a></td>
<td style="font-weight: bold; text-align:right">41,448</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">224 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">40,882</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">342</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">384,897</td>
<td style="font-weight: bold; text-align:right">2,080</td>
<td style="font-weight: bold; text-align:right">177,885</td>
<td style="font-weight: bold; text-align:right">1,651,886</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/aruba-population/">107,686</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>3</td><td>481</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,176</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">156</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/mauritius/">Mauritius</a></td>
<td style="font-weight: bold; text-align:right">38,737</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,008 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">36,856</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">873</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">30,357</td>
<td style="font-weight: bold; text-align:right">790</td>
<td style="font-weight: bold; text-align:right">358,675</td>
<td style="font-weight: bold; text-align:right">281,082</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/mauritius-population/">1,276,049</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>33</td><td>1,266</td><td>4</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">684</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">157</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/mayotte/">Mayotte</a></td>
<td style="font-weight: bold; text-align:right">37,958</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">187 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2,964</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">34,807</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">132,641</td>
<td style="font-weight: bold; text-align:right">653</td>
<td style="font-weight: bold; text-align:right">176,919</td>
<td style="font-weight: bold; text-align:right">618,230</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/mayotte-population/">286,170</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>8</td><td>1,530</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">121,630</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">158</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/togo/">Togo</a></td>
<td style="font-weight: bold; text-align:right">37,718</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">275 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">37,164</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">279</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,349</td>
<td style="font-weight: bold; text-align:right">32</td>
<td style="font-weight: bold; text-align:right">760,061</td>
<td style="font-weight: bold; text-align:right">87,641</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/togo-population/">8,672,391</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>230</td><td>31,536</td><td>11</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">32</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">159</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/tanzania/">Tanzania</a></td>
<td style="font-weight: bold; text-align:right">37,510</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">841 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right">7</td>
<td style="font-weight: bold; text-align:right">594</td>
<td style="font-weight: bold; text-align:right">13</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/tanzania-population/">63,186,161</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>1,685</td><td>75,132</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">577</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">160</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/guinea/">Guinea</a></td>
<td style="font-weight: bold; text-align:right">37,358</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">443 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">36,419</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">496</td>
<td style="font-weight: bold; text-align:right">8</td>
<td style="font-weight: bold; text-align:right">2,696</td>
<td style="font-weight: bold; text-align:right">32</td>
<td style="font-weight: bold; text-align:right">660,107</td>
<td style="font-weight: bold; text-align:right">47,642</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/guinea-population/">13,855,517</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>371</td><td>31,277</td><td>21</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">36</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">161</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/isle-of-man/">Isle of Man</a></td>
<td style="font-weight: bold; text-align:right">37,239</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">110 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">26,794</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,335</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">433,284</td>
<td style="font-weight: bold; text-align:right">1,280</td>
<td style="font-weight: bold; text-align:right">150,753</td>
<td style="font-weight: bold; text-align:right">1,754,043</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/isle-of-man-population/">85,946</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>781</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">120,250</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">162</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bahamas/">Bahamas</a></td>
<td style="font-weight: bold; text-align:right">36,354</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">822 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">34,842</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">690</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">90,688</td>
<td style="font-weight: bold; text-align:right">2,051</td>
<td style="font-weight: bold; text-align:right">241,422</td>
<td style="font-weight: bold; text-align:right">602,248</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bahamas-population/">400,868</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>11</td><td>488</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,721</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">163</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/faeroe-islands/">Faeroe Islands</a></td>
<td style="font-weight: bold; text-align:right">34,658</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">28 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right">5</td>
<td style="font-weight: bold; text-align:right">703,859</td>
<td style="font-weight: bold; text-align:right">569</td>
<td style="font-weight: bold; text-align:right">778,000</td>
<td style="font-weight: bold; text-align:right">15,800,162</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/faeroe-islands-population/">49,240</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>1</td><td>1,759</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">547,055</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">164</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/lesotho/">Lesotho</a></td>
<td style="font-weight: bold; text-align:right">34,040</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">702 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">24,155</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">9,183</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">15,638</td>
<td style="font-weight: bold; text-align:right">323</td>
<td style="font-weight: bold; text-align:right">431,221</td>
<td style="font-weight: bold; text-align:right">198,107</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/lesotho-population/">2,176,704</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>64</td><td>3,101</td><td>5</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,219</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">165</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/haiti/">Haiti</a></td>
<td style="font-weight: bold; text-align:right">32,070</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">837 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">29,884</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,349</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,745</td>
<td style="font-weight: bold; text-align:right">72</td>
<td style="font-weight: bold; text-align:right">132,422</td>
<td style="font-weight: bold; text-align:right">11,333</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/haiti-population/">11,684,564</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>364</td><td>13,960</td><td>88</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">115</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">166</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/mali/">Mali</a></td>
<td style="font-weight: bold; text-align:right">31,196</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">737 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">30,367</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">92</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,455</td>
<td style="font-weight: bold; text-align:right">34</td>
<td style="font-weight: bold; text-align:right">707,472</td>
<td style="font-weight: bold; text-align:right">33,007</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/mali-population/">21,434,224</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>687</td><td>29,083</td><td>30</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">167</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cayman-islands/">Cayman Islands</a></td>
<td style="font-weight: bold; text-align:right">27,966</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">29 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">8,553</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">19,384</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">415,616</td>
<td style="font-weight: bold; text-align:right">431</td>
<td style="font-weight: bold; text-align:right">222,773</td>
<td style="font-weight: bold; text-align:right">3,310,739</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cayman-islands-population/">67,288</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>2</td><td>2,320</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">288,075</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">168</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saint-lucia/">Saint Lucia</a></td>
<td style="font-weight: bold; text-align:right">27,408</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">385 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">26,840</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">183</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">147,888</td>
<td style="font-weight: bold; text-align:right">2,077</td>
<td style="font-weight: bold; text-align:right">209,716</td>
<td style="font-weight: bold; text-align:right">1,131,582</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saint-lucia-population/">185,330</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>7</td><td>481</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">987</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">169</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/benin/">Benin</a></td>
<td style="font-weight: bold; text-align:right">27,216</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">163 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">25,506</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,547</td>
<td style="font-weight: bold; text-align:right">5</td>
<td style="font-weight: bold; text-align:right">2,132</td>
<td style="font-weight: bold; text-align:right">13</td>
<td style="font-weight: bold; text-align:right">604,310</td>
<td style="font-weight: bold; text-align:right">47,332</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/benin-population/">12,767,443</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>469</td><td>78,328</td><td>21</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">121</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">170</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/somalia/">Somalia</a></td>
<td style="font-weight: bold; text-align:right">26,900</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,350 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">13,182</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">12,368</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,602</td>
<td style="font-weight: bold; text-align:right">80</td>
<td style="font-weight: bold; text-align:right">400,466</td>
<td style="font-weight: bold; text-align:right">23,847</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/somalia-population/">16,792,828</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>624</td><td>12,439</td><td>42</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">737</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">171</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/congo/">Congo</a></td>
<td style="font-weight: bold; text-align:right">24,421</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">386 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">20,178</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3,857</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,215</td>
<td style="font-weight: bold; text-align:right">67</td>
<td style="font-weight: bold; text-align:right">347,815</td>
<td style="font-weight: bold; text-align:right">60,034</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/congo-population/">5,793,654</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>237</td><td>15,009</td><td>17</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">666</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">172</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/timor-leste/">Timor-Leste</a></td>
<td style="font-weight: bold; text-align:right">22,975</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">133 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">22,829</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">13</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">16,777</td>
<td style="font-weight: bold; text-align:right">97</td>
<td style="font-weight: bold; text-align:right">271,206</td>
<td style="font-weight: bold; text-align:right">198,048</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/timor-leste-population/">1,369,395</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>60</td><td>10,296</td><td>5</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">173</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/solomon-islands/">Solomon Islands</a></td>
<td style="font-weight: bold; text-align:right">21,544</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">153 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">16,357</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">5,034</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">29,878</td>
<td style="font-weight: bold; text-align:right">212</td>
<td style="font-weight: bold; text-align:right">5,117</td>
<td style="font-weight: bold; text-align:right">7,097</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/solomon-islands-population/">721,059</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>33</td><td>4,713</td><td>141</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,981</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">174</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/burkina-faso/">Burkina Faso</a></td>
<td style="font-weight: bold; text-align:right">20,853</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">382 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">20,439</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">32</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">945</td>
<td style="font-weight: bold; text-align:right">17</td>
<td style="font-weight: bold; text-align:right">248,995</td>
<td style="font-weight: bold; text-align:right">11,284</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/burkina-faso-population/">22,066,182</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>1,058</td><td>57,765</td><td>89</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">175</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/gibraltar/">Gibraltar</a></td>
<td style="font-weight: bold; text-align:right">19,862</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">105 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">16,579</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3,178</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">589,884</td>
<td style="font-weight: bold; text-align:right">3,118</td>
<td style="font-weight: bold; text-align:right">534,283</td>
<td style="font-weight: bold; text-align:right">15,867,750</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/gibraltar-population/">33,671</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>321</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">94,384</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">176</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/san-marino/">San Marino</a></td>
<td style="font-weight: bold; text-align:right">18,977</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">116 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">18,267</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">594</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">556,902</td>
<td style="font-weight: bold; text-align:right">3,404</td>
<td style="font-weight: bold; text-align:right">152,231</td>
<td style="font-weight: bold; text-align:right">4,467,396</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/san-marino-population/">34,076</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>294</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">17,432</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">177</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/grenada/">Grenada</a></td>
<td style="font-weight: bold; text-align:right">18,592</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">233 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">18,178</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">181</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">163,689</td>
<td style="font-weight: bold; text-align:right">2,051</td>
<td style="font-weight: bold; text-align:right">172,268</td>
<td style="font-weight: bold; text-align:right">1,516,697</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/grenada-population/">113,581</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>6</td><td>487</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,594</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">178</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/nicaragua/">Nicaragua</a></td>
<td style="font-weight: bold; text-align:right">18,491</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">225 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">4,225</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">14,041</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,725</td>
<td style="font-weight: bold; text-align:right">33</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/nicaragua-population/">6,784,471</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>367</td><td>30,153</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,070</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">179</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/liechtenstein/">Liechtenstein</a></td>
<td style="font-weight: bold; text-align:right">18,299</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">85 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">17,958</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">256</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">477,158</td>
<td style="font-weight: bold; text-align:right">2,216</td>
<td style="font-weight: bold; text-align:right">102,174</td>
<td style="font-weight: bold; text-align:right">2,664,250</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/liechtenstein-population/">38,350</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>451</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,675</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">180</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/tajikistan/">Tajikistan</a></td>
<td style="font-weight: bold; text-align:right">17,786</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">125 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">17,264</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">397</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,784</td>
<td style="font-weight: bold; text-align:right">13</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/tajikistan-population/">9,972,283</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>561</td><td>79,778</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">40</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">181</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/south-sudan/">South Sudan</a></td>
<td style="font-weight: bold; text-align:right">17,733</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">138 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">15,630</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,965</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">1,547</td>
<td style="font-weight: bold; text-align:right">12</td>
<td style="font-weight: bold; text-align:right">410,280</td>
<td style="font-weight: bold; text-align:right">35,801</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/south-sudan-population/">11,460,002</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>646</td><td>83,043</td><td>28</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">171</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">182</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bermuda/">Bermuda</a></td>
<td style="font-weight: bold; text-align:right">16,722</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">141 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">16,201</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">380</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">270,534</td>
<td style="font-weight: bold; text-align:right">2,281</td>
<td style="font-weight: bold; text-align:right">958,749</td>
<td style="font-weight: bold; text-align:right">15,510,977</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bermuda-population/">61,811</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>4</td><td>438</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,148</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">183</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/equatorial-guinea/">Equatorial Guinea</a></td>
<td style="font-weight: bold; text-align:right">16,504</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">183 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">15,862</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">459</td>
<td style="font-weight: bold; text-align:right">5</td>
<td style="font-weight: bold; text-align:right">11,028</td>
<td style="font-weight: bold; text-align:right">122</td>
<td style="font-weight: bold; text-align:right">346,685</td>
<td style="font-weight: bold; text-align:right">231,664</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/equatorial-guinea-population/">1,496,500</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>91</td><td>8,178</td><td>4</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">307</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">184</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/djibouti/">Djibouti</a></td>
<td style="font-weight: bold; text-align:right">15,690</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">189 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">15,427</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">74</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">15,425</td>
<td style="font-weight: bold; text-align:right">186</td>
<td style="font-weight: bold; text-align:right">305,941</td>
<td style="font-weight: bold; text-align:right">300,782</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/djibouti-population/">1,017,152</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>65</td><td>5,382</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">73</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">185</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/samoa/">Samoa</a></td>
<td style="font-weight: bold; text-align:right">15,134</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">29 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,605</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">13,500</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">75,260</td>
<td style="font-weight: bold; text-align:right">144</td>
<td style="font-weight: bold; text-align:right">168,260</td>
<td style="font-weight: bold; text-align:right">836,744</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/samoa-population/">201,089</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>13</td><td>6,934</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">67,134</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">186</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/dominica/">Dominica</a></td>
<td style="font-weight: bold; text-align:right">14,852</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">68 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">14,554</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">230</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">205,283</td>
<td style="font-weight: bold; text-align:right">940</td>
<td style="font-weight: bold; text-align:right">210,195</td>
<td style="font-weight: bold; text-align:right">2,905,292</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/dominica-population/">72,349</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>5</td><td>1,064</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,179</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">187</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/central-african-republic/">CAR</a></td>
<td style="font-weight: bold; text-align:right">14,712</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">113 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">6,859</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">7,740</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">2,942</td>
<td style="font-weight: bold; text-align:right">23</td>
<td style="font-weight: bold; text-align:right">81,294</td>
<td style="font-weight: bold; text-align:right">16,258</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/central-african-republic-population/">5,000,148</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>340</td><td>44,249</td><td>62</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,548</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">188</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/monaco/">Monaco</a></td>
<td style="font-weight: bold; text-align:right">13,696</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">57 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">13,338</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">301</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">344,069</td>
<td style="font-weight: bold; text-align:right">1,432</td>
<td style="font-weight: bold; text-align:right">77,770</td>
<td style="font-weight: bold; text-align:right">1,953,726</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/monaco-population/">39,806</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>698</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">7,562</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">189</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/tonga/">Tonga</a></td>
<td style="font-weight: bold; text-align:right">12,382</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">12 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">12,223</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">147</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">114,515</td>
<td style="font-weight: bold; text-align:right">111</td>
<td style="font-weight: bold; text-align:right">535,009</td>
<td style="font-weight: bold; text-align:right">4,948,014</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/tonga-population/">108,126</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>9</td><td>9,011</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,360</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">190</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/gambia/">Gambia</a></td>
<td style="font-weight: bold; text-align:right">12,009</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">365 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">11,591</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">53</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,701</td>
<td style="font-weight: bold; text-align:right">143</td>
<td style="font-weight: bold; text-align:right">155,686</td>
<td style="font-weight: bold; text-align:right">60,948</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/gambia-population/">2,554,413</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>213</td><td>6,998</td><td>16</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">21</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">191</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/greenland/">Greenland</a></td>
<td style="font-weight: bold; text-align:right">11,971</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">21 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2,761</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">9,189</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">210,128</td>
<td style="font-weight: bold; text-align:right">369</td>
<td style="font-weight: bold; text-align:right">164,926</td>
<td style="font-weight: bold; text-align:right">2,894,962</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/greenland-population/">56,970</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>5</td><td>2,713</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">161,295</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">192</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/yemen/">Yemen</a></td>
<td style="font-weight: bold; text-align:right">11,832</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,149 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">9,108</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">575</td>
<td style="font-weight: bold; text-align:right">23</td>
<td style="font-weight: bold; text-align:right">380</td>
<td style="font-weight: bold; text-align:right">69</td>
<td style="font-weight: bold; text-align:right">265,253</td>
<td style="font-weight: bold; text-align:right">8,513</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/yemen-population/">31,158,750</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>2,633</td><td>14,499</td><td>117</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">18</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">193</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/vanuatu/">Vanuatu</a></td>
<td style="font-weight: bold; text-align:right">11,690</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">14 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">11,502</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">174</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">36,337</td>
<td style="font-weight: bold; text-align:right">44</td>
<td style="font-weight: bold; text-align:right">24,976</td>
<td style="font-weight: bold; text-align:right">77,636</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/vanuatu-population/">321,707</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>28</td><td>22,979</td><td>13</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">541</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">194</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saint-martin/">Saint Martin</a></td>
<td style="font-weight: bold; text-align:right">11,224</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">63 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,399</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">9,762</td>
<td style="font-weight: bold; text-align:right">7</td>
<td style="font-weight: bold; text-align:right">280,572</td>
<td style="font-weight: bold; text-align:right">1,575</td>
<td style="font-weight: bold; text-align:right">112,382</td>
<td style="font-weight: bold; text-align:right">2,809,269</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saint-martin-population/">40,004</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>4</td><td>635</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">244,026</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">195</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/sint-maarten/">Sint Maarten</a></td>
<td style="font-weight: bold; text-align:right">10,656</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">87 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">10,524</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">45</td>
<td style="font-weight: bold; text-align:right">10</td>
<td style="font-weight: bold; text-align:right">242,933</td>
<td style="font-weight: bold; text-align:right">1,983</td>
<td style="font-weight: bold; text-align:right">62,056</td>
<td style="font-weight: bold; text-align:right">1,414,736</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/sint-maarten-population/">43,864</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>4</td><td>504</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,026</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">196</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/caribbean-netherlands/">Caribbean Netherlands</a></td>
<td style="font-weight: bold; text-align:right">10,567</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">35 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">10,424</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">108</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">395,501</td>
<td style="font-weight: bold; text-align:right">1,310</td>
<td style="font-weight: bold; text-align:right">30,126</td>
<td style="font-weight: bold; text-align:right">1,127,554</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/caribbean-netherlands-population/">26,718</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>3</td><td>763</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,042</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">197</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/eritrea/">Eritrea</a></td>
<td style="font-weight: bold; text-align:right">9,852</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">103 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">9,702</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">47</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,702</td>
<td style="font-weight: bold; text-align:right">28</td>
<td style="font-weight: bold; text-align:right">23,693</td>
<td style="font-weight: bold; text-align:right">6,498</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/eritrea-population/">3,646,011</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>370</td><td>35,398</td><td>154</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">13</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">198</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/niger/">Niger</a></td>
<td style="font-weight: bold; text-align:right">9,096</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">311 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">8,628</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">157</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">350</td>
<td style="font-weight: bold; text-align:right">12</td>
<td style="font-weight: bold; text-align:right">254,538</td>
<td style="font-weight: bold; text-align:right">9,796</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/niger-population/">25,984,404</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>2,857</td><td>83,551</td><td>102</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">199</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/antigua-and-barbuda/">Antigua and Barbuda</a></td>
<td style="font-weight: bold; text-align:right">8,704</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">143 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">8,528</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">33</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">87,412</td>
<td style="font-weight: bold; text-align:right">1,436</td>
<td style="font-weight: bold; text-align:right">18,901</td>
<td style="font-weight: bold; text-align:right">189,819</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/antigua-and-barbuda-population/">99,574</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>11</td><td>696</td><td>5</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">331</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">200</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/guinea-bissau/">Guinea-Bissau</a></td>
<td style="font-weight: bold; text-align:right">8,400</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">171 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">8,151</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">78</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">4,073</td>
<td style="font-weight: bold; text-align:right">83</td>
<td style="font-weight: bold; text-align:right">145,231</td>
<td style="font-weight: bold; text-align:right">70,419</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/guinea-bissau-population/">2,062,372</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>246</td><td>12,061</td><td>14</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">38</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">201</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/comoros/">Comoros</a></td>
<td style="font-weight: bold; text-align:right">8,209</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">160 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">7,933</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">116</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9,049</td>
<td style="font-weight: bold; text-align:right">176</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/comoros-population/">907,185</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>111</td><td>5,670</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">128</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">202</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/sierra-leone/">Sierra Leone</a></td>
<td style="font-weight: bold; text-align:right">7,718</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">125 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">929</td>
<td style="font-weight: bold; text-align:right">15</td>
<td style="font-weight: bold; text-align:right">259,958</td>
<td style="font-weight: bold; text-align:right">31,297</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/sierra-leone-population/">8,306,116</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>1,076</td><td>66,449</td><td>32</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">334</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">203</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/liberia/">Liberia</a></td>
<td style="font-weight: bold; text-align:right">7,504</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">294 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">5,747</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,463</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">1,416</td>
<td style="font-weight: bold; text-align:right">55</td>
<td style="font-weight: bold; text-align:right">139,824</td>
<td style="font-weight: bold; text-align:right">26,388</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/liberia-population/">5,298,865</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>706</td><td>18,023</td><td>38</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">276</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">204</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/chad/">Chad</a></td>
<td style="font-weight: bold; text-align:right">7,427</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">193 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">4,874</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,360</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">427</td>
<td style="font-weight: bold; text-align:right">11</td>
<td style="font-weight: bold; text-align:right">191,341</td>
<td style="font-weight: bold; text-align:right">11,008</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/chad-population/">17,382,135</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>2,340</td><td>90,063</td><td>91</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">136</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">205</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/british-virgin-islands/">British Virgin Islands</a></td>
<td style="font-weight: bold; text-align:right">7,131</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">63 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">232,743</td>
<td style="font-weight: bold; text-align:right">2,056</td>
<td style="font-weight: bold; text-align:right">105,790</td>
<td style="font-weight: bold; text-align:right">3,452,789</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/british-virgin-islands-population/">30,639</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>4</td><td>486</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">783</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">206</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saint-vincent-and-the-grenadines/">St. Vincent Grenadines</a></td>
<td style="font-weight: bold; text-align:right">7,035</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">114 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">6,641</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">280</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">63,007</td>
<td style="font-weight: bold; text-align:right">1,021</td>
<td style="font-weight: bold; text-align:right">100,334</td>
<td style="font-weight: bold; text-align:right">898,607</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saint-vincent-and-the-grenadines-population/">111,655</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>16</td><td>979</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,508</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">207</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/nauru/">Nauru</a></td>
<td style="font-weight: bold; text-align:right">6,930</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">3,171</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3,758</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">632,184</td>
<td style="font-weight: bold; text-align:right">91</td>
<td style="font-weight: bold; text-align:right">14,517</td>
<td style="font-weight: bold; text-align:right">1,324,302</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/nauru-population/">10,962</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>2</td><td>10,962</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">342,821</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">208</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saint-kitts-and-nevis/">Saint Kitts and Nevis</a></td>
<td style="font-weight: bold; text-align:right">6,355</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">45 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">6,189</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">121</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">117,768</td>
<td style="font-weight: bold; text-align:right">834</td>
<td style="font-weight: bold; text-align:right">108,021</td>
<td style="font-weight: bold; text-align:right">2,001,798</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saint-kitts-and-nevis-population/">53,962</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>8</td><td>1,199</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,242</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">209</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/turks-and-caicos-islands/">Turks and Caicos</a></td>
<td style="font-weight: bold; text-align:right">6,255</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">36 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">6,144</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">75</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">157,240</td>
<td style="font-weight: bold; text-align:right">905</td>
<td style="font-weight: bold; text-align:right">548,537</td>
<td style="font-weight: bold; text-align:right">13,789,266</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/turks-and-caicos-islands-population/">39,780</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>6</td><td>1,105</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,885</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">210</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/sao-tome-and-principe/">Sao Tome and Principe</a></td>
<td style="font-weight: bold; text-align:right">6,079</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">74 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">5,990</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">15</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">26,731</td>
<td style="font-weight: bold; text-align:right">325</td>
<td style="font-weight: bold; text-align:right">29,036</td>
<td style="font-weight: bold; text-align:right">127,678</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/sao-tome-and-principe-population/">227,416</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>37</td><td>3,073</td><td>8</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">66</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">211</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cook-islands/">Cook Islands</a></td>
<td style="font-weight: bold; text-align:right">5,827</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">5,802</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">24</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">331,136</td>
<td style="font-weight: bold; text-align:right">57</td>
<td style="font-weight: bold; text-align:right">19,690</td>
<td style="font-weight: bold; text-align:right">1,118,941</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cook-islands-population/">17,597</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>3</td><td>17,597</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,364</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">212</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/palau/">Palau</a></td>
<td style="font-weight: bold; text-align:right">5,308</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">6 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">5,047</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">255</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">290,547</td>
<td style="font-weight: bold; text-align:right">328</td>
<td style="font-weight: bold; text-align:right">62,460</td>
<td style="font-weight: bold; text-align:right">3,418,906</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/palau-population/">18,269</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>3</td><td>3,045</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">13,958</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">213</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saint-barthelemy/">St. Barth</a></td>
<td style="font-weight: bold; text-align:right">4,845</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">6 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">487,523</td>
<td style="font-weight: bold; text-align:right">604</td>
<td style="font-weight: bold; text-align:right">78,646</td>
<td style="font-weight: bold; text-align:right">7,913,665</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saint-barthelemy-population/">9,938</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>2</td><td>1,656</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">440,431</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">214</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/anguilla/">Anguilla</a></td>
<td style="font-weight: bold; text-align:right">3,496</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">9 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">3,464</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">23</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">228,871</td>
<td style="font-weight: bold; text-align:right">589</td>
<td style="font-weight: bold; text-align:right">51,382</td>
<td style="font-weight: bold; text-align:right">3,363,797</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/anguilla-population/">15,275</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>4</td><td>1,697</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,506</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">215</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/kiribati/">Kiribati</a></td>
<td style="font-weight: bold; text-align:right">3,236</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">13 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2,665</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">558</td>
<td style="font-weight: bold; text-align:right">3</td>
<td style="font-weight: bold; text-align:right">26,273</td>
<td style="font-weight: bold; text-align:right">106</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/kiribati-population/">123,167</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>38</td><td>9,474</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,530</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">216</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saint-pierre-and-miquelon/">Saint Pierre Miquelon</a></td>
<td style="font-weight: bold; text-align:right">2,970</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2,449</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">520</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">517,692</td>
<td style="font-weight: bold; text-align:right">174</td>
<td style="font-weight: bold; text-align:right">24,521</td>
<td style="font-weight: bold; text-align:right">4,274,185</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saint-pierre-and-miquelon-population/">5,737</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>2</td><td>5,737</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">90,640</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">217</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/falkland-islands-malvinas/">Falkland Islands</a></td>
<td style="font-weight: bold; text-align:right">1,831</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;"> </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">496,744</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">8,632</td>
<td style="font-weight: bold; text-align:right">2,341,834</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/falkland-islands-malvinas-population/">3,686</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>2</td><td></td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">463,104</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">218</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/montserrat/">Montserrat</a></td>
<td style="font-weight: bold; text-align:right">1,025</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">8 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,013</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">4</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">205,082</td>
<td style="font-weight: bold; text-align:right">1,601</td>
<td style="font-weight: bold; text-align:right">14,243</td>
<td style="font-weight: bold; text-align:right">2,849,740</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/montserrat-population/">4,998</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>5</td><td>625</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">800</td>
</tr>, <tr style="background-color:#F0F0F0">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">219</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><span style="color:#00B5F0; font-style:italic; ">Diamond Princess</span></td>
<td style="font-weight: bold; text-align:right">712</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">13 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">699</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"> </td>
<td data-continent="" style="display:none"></td>
<td></td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">220</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/china-macao-sar/">Macao</a></td>
<td style="font-weight: bold; text-align:right">696</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">5 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">181</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">510</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,043</td>
<td style="font-weight: bold; text-align:right">7</td>
<td style="font-weight: bold; text-align:right">7,615</td>
<td style="font-weight: bold; text-align:right">11,412</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/china-macao-sar-population/">667,295</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>959</td><td>133,459</td><td>88</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">764</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">221</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/wallis-and-futuna-islands/">Wallis and Futuna</a></td>
<td style="font-weight: bold; text-align:right">456</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">7 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">438</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">11</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">42,066</td>
<td style="font-weight: bold; text-align:right">646</td>
<td style="font-weight: bold; text-align:right">20,508</td>
<td style="font-weight: bold; text-align:right">1,891,882</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/wallis-and-futuna-islands-population/">10,840</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>24</td><td>1,549</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,015</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">222</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/marshall-islands/">Marshall Islands</a></td>
<td style="font-weight: bold; text-align:right">47</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;"> </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">18</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">29</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">783</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/marshall-islands-population/">60,000</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>1,277</td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">483</td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">223</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/micronesia/">Micronesia</a></td>
<td style="font-weight: bold; text-align:right">38</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;"> </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">33</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">5</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">323</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">21,923</td>
<td style="font-weight: bold; text-align:right">186,628</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/micronesia-population/">117,469</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>3,091</td><td></td><td>5</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">43</td>
</tr>, <tr style="background-color:#EAF7D5">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">224</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/holy-see/">Vatican City</a></td>
<td style="font-weight: bold; text-align:right">29</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;"> </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">29</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">36,025</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/holy-see-population/">805</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>28</td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">225</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/niue/">Niue</a></td>
<td style="font-weight: bold; text-align:right">26</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;"> </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">23</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">15,777</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/niue-population/">1,648</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>63</td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,820</td>
</tr>, <tr style="background-color:#F0F0F0">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">226</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/western-sahara/">Western Sahara</a></td>
<td style="font-weight: bold; text-align:right">10</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">9</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">16</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/western-sahara-population/">627,136</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>62,714</td><td>627,136</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
</tr>, <tr style="background-color:#F0F0F0">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">227</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><span style="color:#00B5F0; font-style:italic; ">MS Zaandam</span></td>
<td style="font-weight: bold; text-align:right">9</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">7</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"> </td>
<td data-continent="" style="display:none"></td>
<td></td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">228</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/tuvalu/">Tuvalu</a></td>
<td style="font-weight: bold; text-align:right">3</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;"> </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">248</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/tuvalu-population/">12,087</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>4,029</td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">248</td>
</tr>, <tr style="background-color:#EAF7D5">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">229</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saint-helena/">Saint Helena</a></td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;"> </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">327</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saint-helena-population/">6,114</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>3,057</td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
</tr>, <tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">230</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/china/">China</a></td>
<td style="font-weight: bold; text-align:right">227,143</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">+113</td>
<td style="font-weight: bold; text-align:right;">5,226 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">220,778</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+93</td>
<td style="text-align:right;font-weight:bold;">1,139</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">158</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">160,000,000</td>
<td style="font-weight: bold; text-align:right">111,163</td>
<td style="font-weight: bold; text-align:right">1,439,323,776 </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>6,337</td><td>275,416</td><td>9</td>
<td style="font-weight: bold; text-align:right">0.08</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">0.8</td>
</tr>, <tr class="row_continent total_row" data-continent="North America" style="display: none">
<td></td>
<td><strong>Total:</strong></td>
<td>107,794,852</td>
<td style="background-color:#FFEEAA; color:#000;">+34,885</td>
<td>1,494,690</td>
<td style="background-color:red; color:#fff">+74</td>
<td>100,746,314</td>
<td style="background-color:#c8e6c9; color:#000">+19,748</td>
<td>5,553,848</td>
<td>9,502</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="North America" style="display:none;">North America</td>
<td> </td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>, <tr class="row_continent total_row" data-continent="Asia" style="display: none">
<td></td>
<td><strong>Total:</strong></td>
<td>163,765,129</td>
<td style="background-color:#FFEEAA; color:#000;">+41,272</td>
<td>1,442,533</td>
<td style="background-color:red; color:#fff">+39</td>
<td>157,775,292</td>
<td style="background-color:#c8e6c9; color:#000">+6,032</td>
<td>4,547,304</td>
<td>11,043</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Asia" style="display:none;">Asia</td>
<td> </td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>, <tr class="row_continent total_row" data-continent="South America" style="display: none">
<td></td>
<td><strong>Total:</strong></td>
<td>60,877,685</td>
<td style=""></td>
<td>1,309,819</td>
<td style=""></td>
<td>57,886,539</td>
<td style="background-color:#c8e6c9; color:#000"></td>
<td>1,681,327</td>
<td>10,454</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="South America" style="display:none;">South America</td>
<td> </td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>, <tr class="row_continent total_row" data-continent="Europe" style="display: none">
<td></td>
<td><strong>Total:</strong></td>
<td>209,911,879</td>
<td style=""></td>
<td>1,863,623</td>
<td style=""></td>
<td>198,908,016</td>
<td style="background-color:#c8e6c9; color:#000"></td>
<td>9,140,240</td>
<td>6,729</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Europe" style="display:none;">Europe</td>
<td> </td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>, <tr class="row_continent total_row" data-continent="Australia/Oceania" style="display: none">
<td></td>
<td><strong>Total:</strong></td>
<td>10,492,349</td>
<td style="background-color:#FFEEAA; color:#000;">+30,830</td>
<td>14,997</td>
<td style="background-color:red; color:#fff">+55</td>
<td>9,945,183</td>
<td style="">+0</td>
<td>532,169</td>
<td>176</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Australia/Oceania" style="display:none;">Australia/Oceania</td>
<td> </td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>, <tr class="row_continent total_row" data-continent="Africa" style="display: none">
<td></td>
<td><strong>Total:</strong></td>
<td>12,431,054</td>
<td style=""></td>
<td>256,378</td>
<td style=""></td>
<td>11,578,374</td>
<td style=""></td>
<td>596,302</td>
<td>1,005</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Africa" style="display:none;">Africa</td>
<td> </td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>, <tr class="row_continent total_row" data-continent="" style="display: none">
<td></td>
<td><strong>Total:</strong></td>
<td>721</td>
<td style=""></td>
<td>15</td>
<td style=""></td>
<td>706</td>
<td style=""></td>
<td>0</td>
<td>0</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="" style="display:none;"></td>
<td> </td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>, <tr class="total_row">
<td></td>
<td><strong>Total:</strong></td>
<td>565,273,669</td>
<td style="background-color:#FFEEAA; color:#000;">+106,987</td>
<td>6,382,055</td>
<td style="background-color:red; color:#fff">+168</td>
<td>536,840,424</td>
<td style="background-color:#c8e6c9; color:#000">+61,318</td>
<td>22,051,190</td>
<td>38,909</td>
<td>72,519.3</td>
<td>818.8</td>
<td></td>
<td></td>
<td></td>
<td data-continent="all" style="display:none">All</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>]
print([type(item) for item in list(tabela.children)])
[<class 'bs4.element.NavigableString'>, <class 'bs4.element.Tag'>, <class 'bs4.element.NavigableString'>, <class 'bs4.element.Tag'>, <class 'bs4.element.NavigableString'>, <class 'bs4.element.Tag'>, <class 'bs4.element.NavigableString'>, <class 'bs4.element.Tag'>, <class 'bs4.element.NavigableString'>]
print([item for item in list(tabela.children)])
['\n', <thead>
<tr>
<th width="1%">#</th>
<th width="100">Country,<br>Other</br></th>
<th width="20">Total<br>Cases</br></th>
<th width="30">New<br>Cases</br></th>
<th width="30">Total<br>Deaths</br></th>
<th width="30">New<br>Deaths</br></th>
<th width="30">Total<br>Recovered</br></th>
<th width="30">New<br>Recovered</br></th>
<th width="30">Active<br/>Cases</th>
<th width="30">Serious,<br/>Critical</th>
<th width="30">Tot Cases/<br/>1M pop</th>
<th width="30">Deaths/<br/>1M pop</th>
<th width="30">Total<br/>Tests</th>
<th width="30">Tests/<br/>
<nobr>1M pop</nobr>
</th>
<th width="30">Population</th>
<th style="display:none" width="30">Continent</th>
<th width="30">1 Case<br/>every X ppl</th><th width="30">1 Death<br/>every X ppl</th><th width="30">1 Test<br/>every X ppl</th>
<th width="30">New Cases/1M pop</th>
<th width="30">New Deaths/1M pop</th>
<th width="30">Active Cases/1M pop</th>
</tr>
</thead>, '\n', <tbody>
<tr class="total_row_world row_continent" data-continent="North America" style="display: none">
<td></td>
<td style="text-align:left;">
<nobr>North America</nobr>
</td>
<td>107,794,852</td>
<td>+34,885</td>
<td>1,494,690</td>
<td>+74</td>
<td>100,746,314</td>
<td>+19,748</td>
<td>5,553,848</td>
<td>9,502</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="North America" style="display:none;">North America</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="total_row_world row_continent" data-continent="Asia" style="display: none">
<td></td>
<td style="text-align:left;">
<nobr>Asia</nobr>
</td>
<td>163,765,129</td>
<td>+41,272</td>
<td>1,442,533</td>
<td>+39</td>
<td>157,775,292</td>
<td>+6,032</td>
<td>4,547,304</td>
<td>11,043</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Asia" style="display:none;">Asia</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="total_row_world row_continent" data-continent="South America" style="display: none">
<td></td>
<td style="text-align:left;">
<nobr>South America</nobr>
</td>
<td>60,877,685</td>
<td></td>
<td>1,309,819</td>
<td></td>
<td>57,886,539</td>
<td>+10,093</td>
<td>1,681,327</td>
<td>10,454</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="South America" style="display:none;">South America</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="total_row_world row_continent" data-continent="Europe" style="display: none">
<td></td>
<td style="text-align:left;">
<nobr>Europe</nobr>
</td>
<td>209,911,879</td>
<td></td>
<td>1,863,623</td>
<td></td>
<td>198,908,016</td>
<td>+25,445</td>
<td>9,140,240</td>
<td>6,729</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Europe" style="display:none;">Europe</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="total_row_world row_continent" data-continent="Australia/Oceania" style="display: none">
<td></td>
<td style="text-align:left;">
<nobr>Oceania</nobr>
</td>
<td>10,492,349</td>
<td>+30,830</td>
<td>14,997</td>
<td>+55</td>
<td>9,945,183</td>
<td></td>
<td>532,169</td>
<td>176</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Australia/Oceania" style="display:none;">Australia/Oceania</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="total_row_world row_continent" data-continent="Africa" style="display: none">
<td></td>
<td style="text-align:left;">
<nobr>Africa</nobr>
</td>
<td>12,431,054</td>
<td></td>
<td>256,378</td>
<td></td>
<td>11,578,374</td>
<td></td>
<td>596,302</td>
<td>1,005</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Africa" style="display:none;">Africa</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="total_row_world row_continent" data-continent="" style="display: none">
<td></td>
<td style="text-align:left;">
<nobr></nobr>
</td>
<td>721</td>
<td></td>
<td>15</td>
<td></td>
<td>706</td>
<td></td>
<td>0</td>
<td>0</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="" style="display:none;"></td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="total_row_world">
<td></td>
<td style="text-align:left;">World</td>
<td>565,273,669</td>
<td>+106,987</td>
<td>6,382,055</td>
<td>+168</td>
<td>536,840,424</td>
<td>+61,318</td>
<td>22,051,190</td>
<td>38,909</td>
<td>72,519</td>
<td>818.8</td>
<td></td>
<td></td>
<td></td>
<td data-continent="all" style="display:none">All</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">1</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/us/">USA</a></td>
<td style="font-weight: bold; text-align:right">91,060,225</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,048,232 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">86,371,941</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3,640,052</td>
<td style="font-weight: bold; text-align:right">4,180</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,059,620,672</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"> </td>
<td data-continent="North America" style="display:none">North America</td>
<td></td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">2</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/india/">India</a></td>
<td style="font-weight: bold; text-align:right">43,704,925</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">525,557 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">43,028,356</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">151,012</td>
<td style="font-weight: bold; text-align:right">698</td>
<td style="font-weight: bold; text-align:right">31,051</td>
<td style="font-weight: bold; text-align:right">373</td>
<td style="font-weight: bold; text-align:right">867,769,574</td>
<td style="font-weight: bold; text-align:right">616,518</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/india-population/">1,407,532,492</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>32</td><td>2,678</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">107</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">3</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/brazil/">Brazil</a></td>
<td style="font-weight: bold; text-align:right">33,142,158</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">674,846 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">31,451,590</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,015,722</td>
<td style="font-weight: bold; text-align:right">8,318</td>
<td style="font-weight: bold; text-align:right">153,703</td>
<td style="font-weight: bold; text-align:right">3,130</td>
<td style="font-weight: bold; text-align:right">63,776,166</td>
<td style="font-weight: bold; text-align:right">295,774</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/brazil-population/">215,624,945</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>7</td><td>320</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,711</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">4</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/france/">France</a></td>
<td style="font-weight: bold; text-align:right">32,795,874</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">150,468 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">30,363,245</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,282,161</td>
<td style="font-weight: bold; text-align:right">869</td>
<td style="font-weight: bold; text-align:right">500,192</td>
<td style="font-weight: bold; text-align:right">2,295</td>
<td style="font-weight: bold; text-align:right">271,490,188</td>
<td style="font-weight: bold; text-align:right">4,140,684</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/france-population/">65,566,505</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>436</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">34,807</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">5</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/germany/">Germany</a></td>
<td style="font-weight: bold; text-align:right">29,460,249</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">142,284 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">27,548,900</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,769,065</td>
<td style="font-weight: bold; text-align:right">1,238</td>
<td style="font-weight: bold; text-align:right">349,356</td>
<td style="font-weight: bold; text-align:right">1,687</td>
<td style="font-weight: bold; text-align:right">122,332,384</td>
<td style="font-weight: bold; text-align:right">1,450,683</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/germany-population/">84,327,414</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>593</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">20,979</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">6</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/uk/">UK</a></td>
<td style="font-weight: bold; text-align:right">23,075,360</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">181,580 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">22,325,335</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">568,445</td>
<td style="font-weight: bold; text-align:right">146</td>
<td style="font-weight: bold; text-align:right">336,329</td>
<td style="font-weight: bold; text-align:right">2,647</td>
<td style="font-weight: bold; text-align:right">522,526,476</td>
<td style="font-weight: bold; text-align:right">7,615,952</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/uk-population/">68,609,479</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>378</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">8,285</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">7</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/italy/">Italy</a></td>
<td style="font-weight: bold; text-align:right">19,887,543</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">169,601 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">18,294,517</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,423,425</td>
<td style="font-weight: bold; text-align:right">388</td>
<td style="font-weight: bold; text-align:right">329,911</td>
<td style="font-weight: bold; text-align:right">2,813</td>
<td style="font-weight: bold; text-align:right">231,776,628</td>
<td style="font-weight: bold; text-align:right">3,844,904</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/italy-population/">60,281,506</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>355</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">23,613</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">8</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/south-korea/">S. Korea</a></td>
<td style="font-weight: bold; text-align:right">18,680,142</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">+38,864</td>
<td style="font-weight: bold; text-align:right;">24,712 </td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">+16</td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">18,304,752</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+3,413</td>
<td style="text-align:right;font-weight:bold;">350,678</td>
<td style="font-weight: bold; text-align:right">65</td>
<td style="font-weight: bold; text-align:right">363,719</td>
<td style="font-weight: bold; text-align:right">481</td>
<td style="font-weight: bold; text-align:right">15,804,065</td>
<td style="font-weight: bold; text-align:right">307,719</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/south-korea-population/">51,358,685</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>3</td><td>2,078</td><td>3</td>
<td style="font-weight: bold; text-align:right">757</td>
<td style="font-weight: bold; text-align:right">0.3</td>
<td style="font-weight: bold; text-align:right">6,828</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">9</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/russia/">Russia</a></td>
<td style="font-weight: bold; text-align:right">18,476,477</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">381,754 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">17,900,518</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">194,205</td>
<td style="font-weight: bold; text-align:right">2,300</td>
<td style="font-weight: bold; text-align:right">126,498</td>
<td style="font-weight: bold; text-align:right">2,614</td>
<td style="font-weight: bold; text-align:right">273,400,000</td>
<td style="font-weight: bold; text-align:right">1,871,816</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/russia-population/">146,061,390</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>8</td><td>383</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,330</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">10</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/turkey/">Turkey</a></td>
<td style="font-weight: bold; text-align:right">15,297,539</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">99,088 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">15,096,774</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">101,677</td>
<td style="font-weight: bold; text-align:right">975</td>
<td style="font-weight: bold; text-align:right">177,506</td>
<td style="font-weight: bold; text-align:right">1,150</td>
<td style="font-weight: bold; text-align:right">162,743,369</td>
<td style="font-weight: bold; text-align:right">1,888,403</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/turkey-population/">86,180,421</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>6</td><td>870</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,180</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">11</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/spain/">Spain</a></td>
<td style="font-weight: bold; text-align:right">13,032,841</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">108,948 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">12,370,046</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">553,847</td>
<td style="font-weight: bold; text-align:right">339</td>
<td style="font-weight: bold; text-align:right">278,530</td>
<td style="font-weight: bold; text-align:right">2,328</td>
<td style="font-weight: bold; text-align:right">471,036,328</td>
<td style="font-weight: bold; text-align:right">10,066,705</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/spain-population/">46,791,511</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>4</td><td>429</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">11,836</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">12</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/viet-nam/">Vietnam</a></td>
<td style="font-weight: bold; text-align:right">10,758,189</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">43,090 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">9,793,800</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">921,299</td>
<td style="font-weight: bold; text-align:right">36</td>
<td style="font-weight: bold; text-align:right">108,542</td>
<td style="font-weight: bold; text-align:right">435</td>
<td style="font-weight: bold; text-align:right">85,826,548</td>
<td style="font-weight: bold; text-align:right">865,924</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/viet-nam-population/">99,115,541</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>9</td><td>2,300</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9,295</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">13</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/japan/">Japan</a></td>
<td style="font-weight: bold; text-align:right">9,903,381</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">31,494 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">9,389,831</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">482,056</td>
<td style="font-weight: bold; text-align:right">100</td>
<td style="font-weight: bold; text-align:right">78,791</td>
<td style="font-weight: bold; text-align:right">251</td>
<td style="font-weight: bold; text-align:right">58,169,163</td>
<td style="font-weight: bold; text-align:right">462,794</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/japan-population/">125,691,242</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>13</td><td>3,991</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,835</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">14</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/argentina/">Argentina</a></td>
<td style="font-weight: bold; text-align:right">9,426,171</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">129,145 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">9,223,351</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+3,668</td>
<td style="text-align:right;font-weight:bold;">73,675</td>
<td style="font-weight: bold; text-align:right">393</td>
<td style="font-weight: bold; text-align:right">204,751</td>
<td style="font-weight: bold; text-align:right">2,805</td>
<td style="font-weight: bold; text-align:right">35,716,069</td>
<td style="font-weight: bold; text-align:right">775,808</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/argentina-population/">46,037,228</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>5</td><td>356</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,600</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">15</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/australia/">Australia</a></td>
<td style="font-weight: bold; text-align:right">8,683,848</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">+30,830</td>
<td style="font-weight: bold; text-align:right;">10,570 </td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">+55</td>
<td style="font-weight: bold; text-align:right">8,278,603</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">394,675</td>
<td style="font-weight: bold; text-align:right">144</td>
<td style="font-weight: bold; text-align:right">332,712</td>
<td style="font-weight: bold; text-align:right">405</td>
<td style="font-weight: bold; text-align:right">75,046,362</td>
<td style="font-weight: bold; text-align:right">2,875,318</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/australia-population/">26,100,194</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>3</td><td>2,469</td><td>0</td>
<td style="font-weight: bold; text-align:right">1,181</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">15,122</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">16</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/netherlands/">Netherlands</a></td>
<td style="font-weight: bold; text-align:right">8,267,718</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">22,417 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">8,088,398</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">156,903</td>
<td style="font-weight: bold; text-align:right">60</td>
<td style="font-weight: bold; text-align:right">480,352</td>
<td style="font-weight: bold; text-align:right">1,302</td>
<td style="font-weight: bold; text-align:right">21,107,399</td>
<td style="font-weight: bold; text-align:right">1,226,334</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/netherlands-population/">17,211,781</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>768</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9,116</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">17</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/iran/">Iran</a></td>
<td style="font-weight: bold; text-align:right">7,265,251</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">141,464 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">7,066,475</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">57,312</td>
<td style="font-weight: bold; text-align:right">413</td>
<td style="font-weight: bold; text-align:right">84,309</td>
<td style="font-weight: bold; text-align:right">1,642</td>
<td style="font-weight: bold; text-align:right">52,690,831</td>
<td style="font-weight: bold; text-align:right">611,445</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/iran-population/">86,174,268</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>12</td><td>609</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">665</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">18</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/mexico/">Mexico</a></td>
<td style="font-weight: bold; text-align:right">6,373,876</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">+34,885</td>
<td style="font-weight: bold; text-align:right;">326,335 </td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">+74</td>
<td style="font-weight: bold; text-align:right">5,435,342</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+19,748</td>
<td style="text-align:right;font-weight:bold;">612,199</td>
<td style="font-weight: bold; text-align:right">4,798</td>
<td style="font-weight: bold; text-align:right">48,404</td>
<td style="font-weight: bold; text-align:right">2,478</td>
<td style="font-weight: bold; text-align:right">17,084,916</td>
<td style="font-weight: bold; text-align:right">129,744</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/mexico-population/">131,681,236</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>21</td><td>404</td><td>8</td>
<td style="font-weight: bold; text-align:right">265</td>
<td style="font-weight: bold; text-align:right">0.6</td>
<td style="font-weight: bold; text-align:right">4,649</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">19</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/colombia/">Colombia</a></td>
<td style="font-weight: bold; text-align:right">6,198,848</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">140,202 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">6,008,044</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">50,602</td>
<td style="font-weight: bold; text-align:right">342</td>
<td style="font-weight: bold; text-align:right">119,247</td>
<td style="font-weight: bold; text-align:right">2,697</td>
<td style="font-weight: bold; text-align:right">35,662,857</td>
<td style="font-weight: bold; text-align:right">686,045</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/colombia-population/">51,983,287</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>8</td><td>371</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">973</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">20</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/indonesia/">Indonesia</a></td>
<td style="font-weight: bold; text-align:right">6,123,753</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">156,827 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">5,942,436</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">24,490</td>
<td style="font-weight: bold; text-align:right">2,771</td>
<td style="font-weight: bold; text-align:right">21,918</td>
<td style="font-weight: bold; text-align:right">561</td>
<td style="font-weight: bold; text-align:right">101,907,052</td>
<td style="font-weight: bold; text-align:right">364,746</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/indonesia-population/">279,392,080</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>46</td><td>1,782</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">88</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">21</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/poland/">Poland</a></td>
<td style="font-weight: bold; text-align:right">6,027,974</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">116,468 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">5,335,742</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">575,764</td>
<td style="font-weight: bold; text-align:right">408</td>
<td style="font-weight: bold; text-align:right">159,628</td>
<td style="font-weight: bold; text-align:right">3,084</td>
<td style="font-weight: bold; text-align:right">36,537,808</td>
<td style="font-weight: bold; text-align:right">967,568</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/poland-population/">37,762,538</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>6</td><td>324</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">15,247</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">22</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/portugal/">Portugal</a></td>
<td style="font-weight: bold; text-align:right">5,273,845</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">24,369 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">4,997,384</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+17,840</td>
<td style="text-align:right;font-weight:bold;">252,092</td>
<td style="font-weight: bold; text-align:right">61</td>
<td style="font-weight: bold; text-align:right">520,287</td>
<td style="font-weight: bold; text-align:right">2,404</td>
<td style="font-weight: bold; text-align:right">43,527,258</td>
<td style="font-weight: bold; text-align:right">4,294,148</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/portugal-population/">10,136,412</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>416</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">24,870</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">23</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/ukraine/">Ukraine</a></td>
<td style="font-weight: bold; text-align:right">5,019,125</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">108,671 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">4,907,770</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+149</td>
<td style="text-align:right;font-weight:bold;">2,684</td>
<td style="font-weight: bold; text-align:right">177</td>
<td style="font-weight: bold; text-align:right">116,181</td>
<td style="font-weight: bold; text-align:right">2,515</td>
<td style="font-weight: bold; text-align:right">19,521,252</td>
<td style="font-weight: bold; text-align:right">451,870</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/ukraine-population/">43,200,993</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>9</td><td>398</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">62</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">24</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/north-korea/">DPRK</a></td>
<td style="font-weight: bold; text-align:right">4,770,400</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">+500</td>
<td style="font-weight: bold; text-align:right;">74 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">4,769,210</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+700</td>
<td style="text-align:right;font-weight:bold;">1,116</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">183,420</td>
<td style="font-weight: bold; text-align:right">3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/north-korea-population/">26,008,008</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>5</td><td>351,460</td><td></td>
<td style="font-weight: bold; text-align:right">19</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">43</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">25</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/malaysia/">Malaysia</a></td>
<td style="font-weight: bold; text-align:right">4,608,768</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">35,836 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">4,534,019</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">38,913</td>
<td style="font-weight: bold; text-align:right">53</td>
<td style="font-weight: bold; text-align:right">138,787</td>
<td style="font-weight: bold; text-align:right">1,079</td>
<td style="font-weight: bold; text-align:right">61,607,295</td>
<td style="font-weight: bold; text-align:right">1,855,228</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/malaysia-population/">33,207,396</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>7</td><td>927</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,172</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">26</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/austria/">Austria</a></td>
<td style="font-weight: bold; text-align:right">4,574,722</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">18,916 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">4,436,588</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">119,218</td>
<td style="font-weight: bold; text-align:right">71</td>
<td style="font-weight: bold; text-align:right">502,129</td>
<td style="font-weight: bold; text-align:right">2,076</td>
<td style="font-weight: bold; text-align:right">191,905,533</td>
<td style="font-weight: bold; text-align:right">21,063,859</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/austria-population/">9,110,654</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>482</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">13,086</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">27</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/thailand/">Thailand</a></td>
<td style="font-weight: bold; text-align:right">4,554,976</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">+1,795</td>
<td style="font-weight: bold; text-align:right;">30,961 </td>
<td style="font-weight: bold;
text-align:right;background-color:red; color:white">+23</td>
<td style="font-weight: bold; text-align:right">4,499,975</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+1,920</td>
<td style="text-align:right;font-weight:bold;">24,040</td>
<td style="font-weight: bold; text-align:right">1,496</td>
<td style="font-weight: bold; text-align:right">64,927</td>
<td style="font-weight: bold; text-align:right">441</td>
<td style="font-weight: bold; text-align:right">17,270,775</td>
<td style="font-weight: bold; text-align:right">246,179</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/thailand-population/">70,155,276</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>15</td><td>2,266</td><td>4</td>
<td style="font-weight: bold; text-align:right">26</td>
<td style="font-weight: bold; text-align:right">0.3</td>
<td style="font-weight: bold; text-align:right">343</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">28</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/israel/">Israel</a></td>
<td style="font-weight: bold; text-align:right">4,489,396</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">11,101 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">4,399,889</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">78,406</td>
<td style="font-weight: bold; text-align:right">310</td>
<td style="font-weight: bold; text-align:right">481,385</td>
<td style="font-weight: bold; text-align:right">1,190</td>
<td style="font-weight: bold; text-align:right">41,373,364</td>
<td style="font-weight: bold; text-align:right">4,436,346</td>
<td style="font-weight: bold; text-align:right">9,326,000 </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>2</td><td>840</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">8,407</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">29</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/belgium/">Belgium</a></td>
<td style="font-weight: bold; text-align:right">4,320,107</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">32,015 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">4,148,925</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+3,500</td>
<td style="text-align:right;font-weight:bold;">139,167</td>
<td style="font-weight: bold; text-align:right">74</td>
<td style="font-weight: bold; text-align:right">369,494</td>
<td style="font-weight: bold; text-align:right">2,738</td>
<td style="font-weight: bold; text-align:right">34,708,412</td>
<td style="font-weight: bold; text-align:right">2,968,574</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/belgium-population/">11,691,948</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>365</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">11,903</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">30</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/taiwan/">Taiwan</a></td>
<td style="font-weight: bold; text-align:right">4,189,929</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">7,917 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">3,525,388</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">656,624</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">175,280</td>
<td style="font-weight: bold; text-align:right">331</td>
<td style="font-weight: bold; text-align:right">21,858,576</td>
<td style="font-weight: bold; text-align:right">914,423</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/taiwan-population/">23,904,219</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>6</td><td>3,019</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">27,469</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">31</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/chile/">Chile</a></td>
<td style="font-weight: bold; text-align:right">4,113,288</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">58,955 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">3,775,065</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">279,268</td>
<td style="font-weight: bold; text-align:right">190</td>
<td style="font-weight: bold; text-align:right">211,490</td>
<td style="font-weight: bold; text-align:right">3,031</td>
<td style="font-weight: bold; text-align:right">41,226,395</td>
<td style="font-weight: bold; text-align:right">2,119,704</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/chile-population/">19,449,130</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>5</td><td>330</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">14,359</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">32</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/south-africa/">South Africa</a></td>
<td style="font-weight: bold; text-align:right">3,999,345</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">101,915 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">3,889,998</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">7,432</td>
<td style="font-weight: bold; text-align:right">192</td>
<td style="font-weight: bold; text-align:right">65,751</td>
<td style="font-weight: bold; text-align:right">1,676</td>
<td style="font-weight: bold; text-align:right">25,858,208</td>
<td style="font-weight: bold; text-align:right">425,118</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/south-africa-population/">60,825,910</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>15</td><td>597</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">122</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">33</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/canada/">Canada</a></td>
<td style="font-weight: bold; text-align:right">3,992,960</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">42,278 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">3,570,058</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">380,624</td>
<td style="font-weight: bold; text-align:right">195</td>
<td style="font-weight: bold; text-align:right">103,947</td>
<td style="font-weight: bold; text-align:right">1,101</td>
<td style="font-weight: bold; text-align:right">62,586,673</td>
<td style="font-weight: bold; text-align:right">1,629,286</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/canada-population/">38,413,557</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>10</td><td>909</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9,909</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">34</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/czech-republic/">Czechia</a></td>
<td style="font-weight: bold; text-align:right">3,947,772</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">40,343 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">3,896,636</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,793</td>
<td style="font-weight: bold; text-align:right">11</td>
<td style="font-weight: bold; text-align:right">367,259</td>
<td style="font-weight: bold; text-align:right">3,753</td>
<td style="font-weight: bold; text-align:right">55,608,407</td>
<td style="font-weight: bold; text-align:right">5,173,221</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/czech-republic-population/">10,749,282</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>266</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,004</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">35</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/switzerland/">Switzerland</a></td>
<td style="font-weight: bold; text-align:right">3,843,522</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">14,008 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">3,671,804</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+4,101</td>
<td style="text-align:right;font-weight:bold;">157,710</td>
<td style="font-weight: bold; text-align:right">60</td>
<td style="font-weight: bold; text-align:right">437,608</td>
<td style="font-weight: bold; text-align:right">1,595</td>
<td style="font-weight: bold; text-align:right">21,598,881</td>
<td style="font-weight: bold; text-align:right">2,459,160</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/switzerland-population/">8,783,033</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>627</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">17,956</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">36</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/greece/">Greece</a></td>
<td style="font-weight: bold; text-align:right">3,843,142</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">30,476 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">3,614,441</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">198,225</td>
<td style="font-weight: bold; text-align:right">103</td>
<td style="font-weight: bold; text-align:right">372,404</td>
<td style="font-weight: bold; text-align:right">2,953</td>
<td style="font-weight: bold; text-align:right">86,634,526</td>
<td style="font-weight: bold; text-align:right">8,394,971</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/greece-population/">10,319,812</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>339</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">19,208</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">37</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/philippines/">Philippines</a></td>
<td style="font-weight: bold; text-align:right">3,725,382</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">60,641 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">3,648,497</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">16,244</td>
<td style="font-weight: bold; text-align:right">534</td>
<td style="font-weight: bold; text-align:right">33,103</td>
<td style="font-weight: bold; text-align:right">539</td>
<td style="font-weight: bold; text-align:right">31,081,194</td>
<td style="font-weight: bold; text-align:right">276,178</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/philippines-population/">112,540,376</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>30</td><td>1,856</td><td>4</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">144</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">38</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/peru/">Peru</a></td>
<td style="font-weight: bold; text-align:right">3,703,751</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">213,731 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">3,416,065</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+4,688</td>
<td style="text-align:right;font-weight:bold;">73,955</td>
<td style="font-weight: bold; text-align:right">171</td>
<td style="font-weight: bold; text-align:right">109,243</td>
<td style="font-weight: bold; text-align:right">6,304</td>
<td style="font-weight: bold; text-align:right">31,998,554</td>
<td style="font-weight: bold; text-align:right">943,805</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/peru-population/">33,903,781</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>9</td><td>159</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,181</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">39</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/denmark/">Denmark</a></td>
<td style="font-weight: bold; text-align:right">3,038,292</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">6,543 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">3,008,051</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">23,698</td>
<td style="font-weight: bold; text-align:right">14</td>
<td style="font-weight: bold; text-align:right">520,828</td>
<td style="font-weight: bold; text-align:right">1,122</td>
<td style="font-weight: bold; text-align:right">127,815,844</td>
<td style="font-weight: bold; text-align:right">21,910,357</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/denmark-population/">5,833,581</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>892</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,062</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">40</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/romania/">Romania</a></td>
<td style="font-weight: bold; text-align:right">2,953,944</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">65,802 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">2,853,659</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">34,483</td>
<td style="font-weight: bold; text-align:right">99</td>
<td style="font-weight: bold; text-align:right">155,655</td>
<td style="font-weight: bold; text-align:right">3,467</td>
<td style="font-weight: bold; text-align:right">23,694,574</td>
<td style="font-weight: bold; text-align:right">1,248,563</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/romania-population/">18,977,479</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>6</td><td>288</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,817</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">41</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/sweden/">Sweden</a></td>
<td style="font-weight: bold; text-align:right">2,528,166</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">19,170 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">2,492,906</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">16,090</td>
<td style="font-weight: bold; text-align:right">16</td>
<td style="font-weight: bold; text-align:right">247,204</td>
<td style="font-weight: bold; text-align:right">1,874</td>
<td style="font-weight: bold; text-align:right">18,709,369</td>
<td style="font-weight: bold; text-align:right">1,829,405</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/sweden-population/">10,227,026</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>4</td><td>533</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,573</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">42</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/iraq/">Iraq</a></td>
<td style="font-weight: bold; text-align:right">2,396,707</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">25,261 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2,335,448</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">35,998</td>
<td style="font-weight: bold; text-align:right">30</td>
<td style="font-weight: bold; text-align:right">56,991</td>
<td style="font-weight: bold; text-align:right">601</td>
<td style="font-weight: bold; text-align:right">18,912,241</td>
<td style="font-weight: bold; text-align:right">449,716</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/iraq-population/">42,053,775</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>18</td><td>1,665</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">856</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">43</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/serbia/">Serbia</a></td>
<td style="font-weight: bold; text-align:right">2,049,388</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">16,162 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2,009,887</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">23,339</td>
<td style="font-weight: bold; text-align:right">9</td>
<td style="font-weight: bold; text-align:right">236,486</td>
<td style="font-weight: bold; text-align:right">1,865</td>
<td style="font-weight: bold; text-align:right">10,016,279</td>
<td style="font-weight: bold; text-align:right">1,155,813</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/serbia-population/">8,666,000</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>4</td><td>536</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,693</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">44</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bangladesh/">Bangladesh</a></td>
<td style="font-weight: bold; text-align:right">1,993,382</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">29,223 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,919,166</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">44,993</td>
<td style="font-weight: bold; text-align:right">1,228</td>
<td style="font-weight: bold; text-align:right">11,864</td>
<td style="font-weight: bold; text-align:right">174</td>
<td style="font-weight: bold; text-align:right">14,475,361</td>
<td style="font-weight: bold; text-align:right">86,153</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bangladesh-population/">168,018,411</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>84</td><td>5,750</td><td>12</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">268</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">45</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/hungary/">Hungary</a></td>
<td style="font-weight: bold; text-align:right">1,940,824</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">46,696 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,878,221</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">15,907</td>
<td style="font-weight: bold; text-align:right">16</td>
<td style="font-weight: bold; text-align:right">201,946</td>
<td style="font-weight: bold; text-align:right">4,859</td>
<td style="font-weight: bold; text-align:right">11,394,556</td>
<td style="font-weight: bold; text-align:right">1,185,624</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/hungary-population/">9,610,602</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>5</td><td>206</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,655</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">46</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/slovakia/">Slovakia</a></td>
<td style="font-weight: bold; text-align:right">1,803,688</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">20,168 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">1,775,849</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">7,671</td>
<td style="font-weight: bold; text-align:right">16</td>
<td style="font-weight: bold; text-align:right">330,043</td>
<td style="font-weight: bold; text-align:right">3,690</td>
<td style="font-weight: bold; text-align:right">7,195,329</td>
<td style="font-weight: bold; text-align:right">1,316,619</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/slovakia-population/">5,465,006</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>271</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,404</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">47</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/jordan/">Jordan</a></td>
<td style="font-weight: bold; text-align:right">1,700,526</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">14,068 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,685,354</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,104</td>
<td style="font-weight: bold; text-align:right">124</td>
<td style="font-weight: bold; text-align:right">163,376</td>
<td style="font-weight: bold; text-align:right">1,352</td>
<td style="font-weight: bold; text-align:right">16,894,012</td>
<td style="font-weight: bold; text-align:right">1,623,075</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/jordan-population/">10,408,648</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>6</td><td>740</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">106</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">48</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/georgia/">Georgia</a></td>
<td style="font-weight: bold; text-align:right">1,662,299</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">16,844 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,637,293</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">8,162</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">418,332</td>
<td style="font-weight: bold; text-align:right">4,239</td>
<td style="font-weight: bold; text-align:right">16,920,079</td>
<td style="font-weight: bold; text-align:right">4,258,084</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/georgia-population/">3,973,637</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>2</td><td>236</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,054</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">49</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/ireland/">Ireland</a></td>
<td style="font-weight: bold; text-align:right">1,628,745</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">7,537 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">1,566,323</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">54,885</td>
<td style="font-weight: bold; text-align:right">43</td>
<td style="font-weight: bold; text-align:right">322,543</td>
<td style="font-weight: bold; text-align:right">1,493</td>
<td style="font-weight: bold; text-align:right">12,473,972</td>
<td style="font-weight: bold; text-align:right">2,470,241</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/ireland-population/">5,049,698</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>670</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">10,869</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">50</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/singapore/">Singapore</a></td>
<td style="font-weight: bold; text-align:right">1,569,420</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,444 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,453,373</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">114,603</td>
<td style="font-weight: bold; text-align:right">20</td>
<td style="font-weight: bold; text-align:right">264,048</td>
<td style="font-weight: bold; text-align:right">243</td>
<td style="font-weight: bold; text-align:right">24,107,231</td>
<td style="font-weight: bold; text-align:right">4,055,935</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/singapore-population/">5,943,693</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>4</td><td>4,116</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">19,281</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">51</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/pakistan/">Pakistan</a></td>
<td style="font-weight: bold; text-align:right">1,544,131</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">30,426 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,503,023</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,682</td>
<td style="font-weight: bold; text-align:right">175</td>
<td style="font-weight: bold; text-align:right">6,725</td>
<td style="font-weight: bold; text-align:right">133</td>
<td style="font-weight: bold; text-align:right">29,219,351</td>
<td style="font-weight: bold; text-align:right">127,265</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/pakistan-population/">229,594,826</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>149</td><td>7,546</td><td>8</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">47</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">52</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/new-zealand/">New Zealand</a></td>
<td style="font-weight: bold; text-align:right">1,473,955</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,697 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,401,411</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">70,847</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">294,667</td>
<td style="font-weight: bold; text-align:right">339</td>
<td style="font-weight: bold; text-align:right">7,327,116</td>
<td style="font-weight: bold; text-align:right">1,464,808</td>
<td style="font-weight: bold; text-align:right">5,002,100 </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>3</td><td>2,948</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">14,163</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">53</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/norway/">Norway</a></td>
<td style="font-weight: bold; text-align:right">1,452,176</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">3,504 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">1,442,320</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">6,352</td>
<td style="font-weight: bold; text-align:right">20</td>
<td style="font-weight: bold; text-align:right">263,685</td>
<td style="font-weight: bold; text-align:right">636</td>
<td style="font-weight: bold; text-align:right">11,002,430</td>
<td style="font-weight: bold; text-align:right">1,997,809</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/norway-population/">5,507,247</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>4</td><td>1,572</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,153</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">54</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/kazakhstan/">Kazakhstan</a></td>
<td style="font-weight: bold; text-align:right">1,312,294</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">13,663 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,293,793</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">4,838</td>
<td style="font-weight: bold; text-align:right">24</td>
<td style="font-weight: bold; text-align:right">68,233</td>
<td style="font-weight: bold; text-align:right">710</td>
<td style="font-weight: bold; text-align:right">11,575,012</td>
<td style="font-weight: bold; text-align:right">601,849</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/kazakhstan-population/">19,232,410</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>15</td><td>1,408</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">252</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">55</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/china-hong-kong-sar/">Hong Kong</a></td>
<td style="font-weight: bold; text-align:right">1,283,514</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">9,427 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">1,206,801</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">67,286</td>
<td style="font-weight: bold; text-align:right">8</td>
<td style="font-weight: bold; text-align:right">168,432</td>
<td style="font-weight: bold; text-align:right">1,237</td>
<td style="font-weight: bold; text-align:right">50,415,048</td>
<td style="font-weight: bold; text-align:right">6,615,815</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/china-hong-kong-sar-population/">7,620,384</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>6</td><td>808</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">8,830</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">56</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/morocco/">Morocco</a></td>
<td style="font-weight: bold; text-align:right">1,246,835</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">16,167 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,213,862</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">16,806</td>
<td style="font-weight: bold; text-align:right">293</td>
<td style="font-weight: bold; text-align:right">32,987</td>
<td style="font-weight: bold; text-align:right">428</td>
<td style="font-weight: bold; text-align:right">12,080,887</td>
<td style="font-weight: bold; text-align:right">319,615</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/morocco-population/">37,798,233</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>30</td><td>2,338</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">445</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">57</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bulgaria/">Bulgaria</a></td>
<td style="font-weight: bold; text-align:right">1,182,764</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">37,283 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,134,552</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,929</td>
<td style="font-weight: bold; text-align:right">38</td>
<td style="font-weight: bold; text-align:right">172,858</td>
<td style="font-weight: bold; text-align:right">5,449</td>
<td style="font-weight: bold; text-align:right">10,167,636</td>
<td style="font-weight: bold; text-align:right">1,485,977</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bulgaria-population/">6,842,392</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>6</td><td>184</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,597</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">58</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/finland/">Finland</a></td>
<td style="font-weight: bold; text-align:right">1,171,034</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">5,012 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">1,120,330</span></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">45,692</td>
<td style="font-weight: bold; text-align:right">21</td>
<td style="font-weight: bold; text-align:right">210,687</td>
<td style="font-weight: bold; text-align:right">902</td>
<td style="font-weight: bold; text-align:right">11,129,795</td>
<td style="font-weight: bold; text-align:right">2,002,417</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/finland-population/">5,558,180</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>5</td><td>1,109</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">8,221</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">59</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/croatia/">Croatia</a></td>
<td style="font-weight: bold; text-align:right">1,163,824</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">16,135 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,138,102</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">9,587</td>
<td style="font-weight: bold; text-align:right">17</td>
<td style="font-weight: bold; text-align:right">287,085</td>
<td style="font-weight: bold; text-align:right">3,980</td>
<td style="font-weight: bold; text-align:right">4,986,129</td>
<td style="font-weight: bold; text-align:right">1,229,949</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/croatia-population/">4,053,933</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>251</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,365</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">60</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/lebanon/">Lebanon</a></td>
<td style="font-weight: bold; text-align:right">1,125,720</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">10,477 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,087,587</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">27,656</td>
<td style="font-weight: bold; text-align:right">186</td>
<td style="font-weight: bold; text-align:right">166,441</td>
<td style="font-weight: bold; text-align:right">1,549</td>
<td style="font-weight: bold; text-align:right">4,795,578</td>
<td style="font-weight: bold; text-align:right">709,042</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/lebanon-population/">6,763,462</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>6</td><td>646</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,089</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">61</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cuba/">Cuba</a></td>
<td style="font-weight: bold; text-align:right">1,106,602</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">8,529 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,097,788</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">285</td>
<td style="font-weight: bold; text-align:right">23</td>
<td style="font-weight: bold; text-align:right">97,820</td>
<td style="font-weight: bold; text-align:right">754</td>
<td style="font-weight: bold; text-align:right">13,852,049</td>
<td style="font-weight: bold; text-align:right">1,224,480</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cuba-population/">11,312,593</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>10</td><td>1,326</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">25</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">62</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/tunisia/">Tunisia</a></td>
<td style="font-weight: bold; text-align:right">1,087,030</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">28,823 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right">29</td>
<td style="font-weight: bold; text-align:right">90,064</td>
<td style="font-weight: bold; text-align:right">2,388</td>
<td style="font-weight: bold; text-align:right">4,743,992</td>
<td style="font-weight: bold; text-align:right">393,055</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/tunisia-population/">12,069,534</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>11</td><td>419</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,606</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">63</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/lithuania/">Lithuania</a></td>
<td style="font-weight: bold; text-align:right">1,073,128</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">9,188 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,038,300</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">25,640</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">405,673</td>
<td style="font-weight: bold; text-align:right">3,473</td>
<td style="font-weight: bold; text-align:right">10,024,830</td>
<td style="font-weight: bold; text-align:right">3,789,667</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/lithuania-population/">2,645,306</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>288</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9,693</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">64</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/slovenia/">Slovenia</a></td>
<td style="font-weight: bold; text-align:right">1,056,179</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">6,665 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,032,092</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">17,422</td>
<td style="font-weight: bold; text-align:right">12</td>
<td style="font-weight: bold; text-align:right">507,896</td>
<td style="font-weight: bold; text-align:right">3,205</td>
<td style="font-weight: bold; text-align:right">2,691,730</td>
<td style="font-weight: bold; text-align:right">1,294,401</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/slovenia-population/">2,079,518</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>312</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">8,378</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">65</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/belarus/">Belarus</a></td>
<td style="font-weight: bold; text-align:right">994,037</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">7,118 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">985,592</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,327</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">105,267</td>
<td style="font-weight: bold; text-align:right">754</td>
<td style="font-weight: bold; text-align:right">13,646,641</td>
<td style="font-weight: bold; text-align:right">1,445,157</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/belarus-population/">9,443,019</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>9</td><td>1,327</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">141</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">66</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/nepal/">Nepal</a></td>
<td style="font-weight: bold; text-align:right">980,981</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">11,952 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">967,858</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,171</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">32,483</td>
<td style="font-weight: bold; text-align:right">396</td>
<td style="font-weight: bold; text-align:right">5,780,700</td>
<td style="font-weight: bold; text-align:right">191,413</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/nepal-population/">30,200,104</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>31</td><td>2,527</td><td>5</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">39</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">67</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/guatemala/">Guatemala</a></td>
<td style="font-weight: bold; text-align:right">970,621</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">18,768 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">881,742</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">70,111</td>
<td style="font-weight: bold; text-align:right">5</td>
<td style="font-weight: bold; text-align:right">52,218</td>
<td style="font-weight: bold; text-align:right">1,010</td>
<td style="font-weight: bold; text-align:right">5,106,651</td>
<td style="font-weight: bold; text-align:right">274,729</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/guatemala-population/">18,587,983</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>19</td><td>990</td><td>4</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,772</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">68</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/united-arab-emirates/">UAE</a></td>
<td style="font-weight: bold; text-align:right">969,097</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,325 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">949,218</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">17,554</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">95,639</td>
<td style="font-weight: bold; text-align:right">229</td>
<td style="font-weight: bold; text-align:right">173,273,059</td>
<td style="font-weight: bold; text-align:right">17,100,110</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/united-arab-emirates-population/">10,132,862</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>10</td><td>4,358</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,732</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">69</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/uruguay/">Uruguay</a></td>
<td style="font-weight: bold; text-align:right">965,370</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">7,373 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">955,371</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,626</td>
<td style="font-weight: bold; text-align:right">18</td>
<td style="font-weight: bold; text-align:right">275,966</td>
<td style="font-weight: bold; text-align:right">2,108</td>
<td style="font-weight: bold; text-align:right">6,114,822</td>
<td style="font-weight: bold; text-align:right">1,748,015</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/uruguay-population/">3,498,152</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>4</td><td>474</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">751</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">70</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bolivia/">Bolivia</a></td>
<td style="font-weight: bold; text-align:right">956,629</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">21,977 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">897,166</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">37,486</td>
<td style="font-weight: bold; text-align:right">220</td>
<td style="font-weight: bold; text-align:right">79,745</td>
<td style="font-weight: bold; text-align:right">1,832</td>
<td style="font-weight: bold; text-align:right">2,705,422</td>
<td style="font-weight: bold; text-align:right">225,525</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bolivia-population/">11,996,097</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>13</td><td>546</td><td>4</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,125</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">71</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/panama/">Panama</a></td>
<td style="font-weight: bold; text-align:right">932,710</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">8,384 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">910,900</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">13,426</td>
<td style="font-weight: bold; text-align:right">16</td>
<td style="font-weight: bold; text-align:right">209,476</td>
<td style="font-weight: bold; text-align:right">1,883</td>
<td style="font-weight: bold; text-align:right">6,637,861</td>
<td style="font-weight: bold; text-align:right">1,490,789</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/panama-population/">4,452,581</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>5</td><td>531</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,015</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">72</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/mongolia/">Mongolia</a></td>
<td style="font-weight: bold; text-align:right">930,418</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,179 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right">192</td>
<td style="font-weight: bold; text-align:right">274,832</td>
<td style="font-weight: bold; text-align:right">644</td>
<td style="font-weight: bold; text-align:right">4,030,048</td>
<td style="font-weight: bold; text-align:right">1,190,418</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/mongolia-population/">3,385,407</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>4</td><td>1,554</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">181,657</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">73</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/ecuador/">Ecuador</a></td>
<td style="font-weight: bold; text-align:right">927,700</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">35,769 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"><span style="color:grey; font-style: italic;">872,779</span></td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+1,808</td>
<td style="text-align:right;font-weight:bold;">19,152</td>
<td style="font-weight: bold; text-align:right">759</td>
<td style="font-weight: bold; text-align:right">51,010</td>
<td style="font-weight: bold; text-align:right">1,967</td>
<td style="font-weight: bold; text-align:right">2,470,170</td>
<td style="font-weight: bold; text-align:right">135,823</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/ecuador-population/">18,186,639</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>20</td><td>508</td><td>7</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,053</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">74</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/costa-rica/">Costa Rica</a></td>
<td style="font-weight: bold; text-align:right">904,934</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">8,525 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">860,711</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">35,698</td>
<td style="font-weight: bold; text-align:right">52</td>
<td style="font-weight: bold; text-align:right">174,412</td>
<td style="font-weight: bold; text-align:right">1,643</td>
<td style="font-weight: bold; text-align:right">4,659,757</td>
<td style="font-weight: bold; text-align:right">898,094</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/costa-rica-population/">5,188,498</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>6</td><td>609</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,880</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">75</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/latvia/">Latvia</a></td>
<td style="font-weight: bold; text-align:right">844,142</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">5,873 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">829,937</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">8,332</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">457,796</td>
<td style="font-weight: bold; text-align:right">3,185</td>
<td style="font-weight: bold; text-align:right">7,358,973</td>
<td style="font-weight: bold; text-align:right">3,990,926</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/latvia-population/">1,843,926</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>314</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,519</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">76</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saudi-arabia/">Saudi Arabia</a></td>
<td style="font-weight: bold; text-align:right">801,935</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">9,228 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">786,711</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">5,996</td>
<td style="font-weight: bold; text-align:right">169</td>
<td style="font-weight: bold; text-align:right">22,329</td>
<td style="font-weight: bold; text-align:right">257</td>
<td style="font-weight: bold; text-align:right">43,628,872</td>
<td style="font-weight: bold; text-align:right">1,214,817</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saudi-arabia-population/">35,913,946</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>45</td><td>3,892</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">167</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">77</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/azerbaijan/">Azerbaijan</a></td>
<td style="font-weight: bold; text-align:right">793,918</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">9,719 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">783,453</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">746</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">76,896</td>
<td style="font-weight: bold; text-align:right">941</td>
<td style="font-weight: bold; text-align:right">6,972,527</td>
<td style="font-weight: bold; text-align:right">675,332</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/azerbaijan-population/">10,324,599</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>13</td><td>1,062</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">72</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">78</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/paraguay/">Paraguay</a></td>
<td style="font-weight: bold; text-align:right">673,829</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">19,036 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">639,340</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">15,453</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">92,175</td>
<td style="font-weight: bold; text-align:right">2,604</td>
<td style="font-weight: bold; text-align:right">2,646,163</td>
<td style="font-weight: bold; text-align:right">361,977</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/paraguay-population/">7,310,305</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>11</td><td>384</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,114</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">79</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/sri-lanka/">Sri Lanka</a></td>
<td style="font-weight: bold; text-align:right">664,364</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">16,526 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">647,445</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">393</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">30,764</td>
<td style="font-weight: bold; text-align:right">765</td>
<td style="font-weight: bold; text-align:right">6,486,117</td>
<td style="font-weight: bold; text-align:right">300,347</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/sri-lanka-population/">21,595,391</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>33</td><td>1,307</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">18</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">80</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/kuwait/">Kuwait</a></td>
<td style="font-weight: bold; text-align:right">648,216</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,556 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">641,752</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3,908</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">147,365</td>
<td style="font-weight: bold; text-align:right">581</td>
<td style="font-weight: bold; text-align:right">8,242,720</td>
<td style="font-weight: bold; text-align:right">1,873,891</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/kuwait-population/">4,398,718</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>7</td><td>1,721</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">888</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">81</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bahrain/">Bahrain</a></td>
<td style="font-weight: bold; text-align:right">645,399</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,503 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">633,093</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,803</td>
<td style="font-weight: bold; text-align:right">18</td>
<td style="font-weight: bold; text-align:right">354,309</td>
<td style="font-weight: bold; text-align:right">825</td>
<td style="font-weight: bold; text-align:right">10,099,771</td>
<td style="font-weight: bold; text-align:right">5,544,533</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bahrain-population/">1,821,573</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>3</td><td>1,212</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">5,931</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">82</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/dominican-republic/">Dominican Republic</a></td>
<td style="font-weight: bold; text-align:right">621,047</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">4,383 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">611,734</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">4,930</td>
<td style="font-weight: bold; text-align:right">27</td>
<td style="font-weight: bold; text-align:right">56,109</td>
<td style="font-weight: bold; text-align:right">396</td>
<td style="font-weight: bold; text-align:right">3,552,150</td>
<td style="font-weight: bold; text-align:right">320,921</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/dominican-republic-population/">11,068,627</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>18</td><td>2,525</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">445</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">83</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/myanmar/">Myanmar</a></td>
<td style="font-weight: bold; text-align:right">613,784</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">19,434 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">592,700</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,650</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">11,129</td>
<td style="font-weight: bold; text-align:right">352</td>
<td style="font-weight: bold; text-align:right">8,442,405</td>
<td style="font-weight: bold; text-align:right">153,081</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/myanmar-population/">55,149,826</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>90</td><td>2,838</td><td>7</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">30</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">84</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/state-of-palestine/">Palestine</a></td>
<td style="font-weight: bold; text-align:right">586,058</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">5,358 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">578,920</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,780</td>
<td style="font-weight: bold; text-align:right">17</td>
<td style="font-weight: bold; text-align:right">109,707</td>
<td style="font-weight: bold; text-align:right">1,003</td>
<td style="font-weight: bold; text-align:right">3,078,533</td>
<td style="font-weight: bold; text-align:right">576,286</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/state-of-palestine-population/">5,342,019</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>9</td><td>997</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">333</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">85</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/estonia/">Estonia</a></td>
<td style="font-weight: bold; text-align:right">585,143</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,608 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">523,576</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">58,959</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">440,505</td>
<td style="font-weight: bold; text-align:right">1,963</td>
<td style="font-weight: bold; text-align:right">3,424,969</td>
<td style="font-weight: bold; text-align:right">2,578,373</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/estonia-population/">1,328,345</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>509</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">44,385</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">86</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cyprus/">Cyprus</a></td>
<td style="font-weight: bold; text-align:right">530,510</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,079 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">124,370</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">405,061</td>
<td style="font-weight: bold; text-align:right">60</td>
<td style="font-weight: bold; text-align:right">433,002</td>
<td style="font-weight: bold; text-align:right">881</td>
<td style="font-weight: bold; text-align:right">9,477,138</td>
<td style="font-weight: bold; text-align:right">7,735,233</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cyprus-population/">1,225,191</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>2</td><td>1,135</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">330,610</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">87</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/venezuela/">Venezuela</a></td>
<td style="font-weight: bold; text-align:right">528,785</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">5,742 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">520,353</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,690</td>
<td style="font-weight: bold; text-align:right">36</td>
<td style="font-weight: bold; text-align:right">18,703</td>
<td style="font-weight: bold; text-align:right">203</td>
<td style="font-weight: bold; text-align:right">3,359,014</td>
<td style="font-weight: bold; text-align:right">118,808</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/venezuela-population/">28,272,539</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>53</td><td>4,924</td><td>8</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">95</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">88</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/moldova/">Moldova</a></td>
<td style="font-weight: bold; text-align:right">520,321</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">11,567 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">504,142</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">4,612</td>
<td style="font-weight: bold; text-align:right">49</td>
<td style="font-weight: bold; text-align:right">129,596</td>
<td style="font-weight: bold; text-align:right">2,881</td>
<td style="font-weight: bold; text-align:right">3,216,305</td>
<td style="font-weight: bold; text-align:right">801,083</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/moldova-population/">4,014,948</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>8</td><td>347</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,149</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">89</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/egypt/">Egypt</a></td>
<td style="font-weight: bold; text-align:right">515,645</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">24,613 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">442,182</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">48,850</td>
<td style="font-weight: bold; text-align:right">122</td>
<td style="font-weight: bold; text-align:right">4,853</td>
<td style="font-weight: bold; text-align:right">232</td>
<td style="font-weight: bold; text-align:right">3,693,367</td>
<td style="font-weight: bold; text-align:right">34,761</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/egypt-population/">106,250,559</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>206</td><td>4,317</td><td>29</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">460</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">90</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/libya/">Libya</a></td>
<td style="font-weight: bold; text-align:right">502,289</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">6,430 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">490,973</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">4,886</td>
<td style="font-weight: bold; text-align:right">101</td>
<td style="font-weight: bold; text-align:right">71,137</td>
<td style="font-weight: bold; text-align:right">911</td>
<td style="font-weight: bold; text-align:right">2,477,219</td>
<td style="font-weight: bold; text-align:right">350,837</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/libya-population/">7,060,876</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>14</td><td>1,098</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">692</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">91</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/ethiopia/">Ethiopia</a></td>
<td style="font-weight: bold; text-align:right">490,816</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">7,559 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">467,952</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">15,305</td>
<td style="font-weight: bold; text-align:right">41</td>
<td style="font-weight: bold; text-align:right">4,065</td>
<td style="font-weight: bold; text-align:right">63</td>
<td style="font-weight: bold; text-align:right">5,096,984</td>
<td style="font-weight: bold; text-align:right">42,214</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/ethiopia-population/">120,741,154</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>246</td><td>15,973</td><td>24</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">127</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">92</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/honduras/">Honduras</a></td>
<td style="font-weight: bold; text-align:right">430,672</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">10,912 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">132,498</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">287,262</td>
<td style="font-weight: bold; text-align:right">105</td>
<td style="font-weight: bold; text-align:right">42,123</td>
<td style="font-weight: bold; text-align:right">1,067</td>
<td style="font-weight: bold; text-align:right">1,415,120</td>
<td style="font-weight: bold; text-align:right">138,408</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/honduras-population/">10,224,234</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>24</td><td>937</td><td>7</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">28,096</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">93</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/reunion/">Réunion</a></td>
<td style="font-weight: bold; text-align:right">425,638</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">819 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">418,572</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">6,247</td>
<td style="font-weight: bold; text-align:right">10</td>
<td style="font-weight: bold; text-align:right">468,622</td>
<td style="font-weight: bold; text-align:right">902</td>
<td style="font-weight: bold; text-align:right">1,603,660</td>
<td style="font-weight: bold; text-align:right">1,765,611</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/reunion-population/">908,275</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>2</td><td>1,109</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,878</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">94</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/armenia/">Armenia</a></td>
<td style="font-weight: bold; text-align:right">423,771</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">8,629 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">412,661</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,481</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">142,469</td>
<td style="font-weight: bold; text-align:right">2,901</td>
<td style="font-weight: bold; text-align:right">3,109,931</td>
<td style="font-weight: bold; text-align:right">1,045,538</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/armenia-population/">2,974,478</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>7</td><td>345</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">834</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">95</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/qatar/">Qatar</a></td>
<td style="font-weight: bold; text-align:right">391,945</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">680 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">385,818</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">5,447</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">139,591</td>
<td style="font-weight: bold; text-align:right">242</td>
<td style="font-weight: bold; text-align:right">3,693,147</td>
<td style="font-weight: bold; text-align:right">1,315,315</td>
<td style="font-weight: bold; text-align:right">2,807,805 </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>7</td><td>4,129</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,940</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">96</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/oman/">Oman</a></td>
<td style="font-weight: bold; text-align:right">391,641</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">4,260 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">384,669</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,712</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">72,930</td>
<td style="font-weight: bold; text-align:right">793</td>
<td style="font-weight: bold; text-align:right">25,000,000</td>
<td style="font-weight: bold; text-align:right">4,655,385</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/oman-population/">5,370,125</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>14</td><td>1,261</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">505</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">97</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bosnia-and-herzegovina/">Bosnia and Herzegovina</a></td>
<td style="font-weight: bold; text-align:right">380,498</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">15,814 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">117,458</td>
<td style="font-weight: bold; text-align:right">4,882</td>
<td style="font-weight: bold; text-align:right">1,800,193</td>
<td style="font-weight: bold; text-align:right">555,711</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bosnia-and-herzegovina-population/">3,239,440</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>9</td><td>205</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">53,239</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">98</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/kenya/">Kenya</a></td>
<td style="font-weight: bold; text-align:right">336,445</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">5,668 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">329,122</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,655</td>
<td style="font-weight: bold; text-align:right">3</td>
<td style="font-weight: bold; text-align:right">5,989</td>
<td style="font-weight: bold; text-align:right">101</td>
<td style="font-weight: bold; text-align:right">3,790,310</td>
<td style="font-weight: bold; text-align:right">67,474</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/kenya-population/">56,174,415</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>167</td><td>9,911</td><td>15</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">29</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">99</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/zambia/">Zambia</a></td>
<td style="font-weight: bold; text-align:right">327,102</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">4,008 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">322,093</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,001</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">16,836</td>
<td style="font-weight: bold; text-align:right">206</td>
<td style="font-weight: bold; text-align:right">3,576,701</td>
<td style="font-weight: bold; text-align:right">184,095</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/zambia-population/">19,428,522</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>59</td><td>4,847</td><td>5</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">52</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">100</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/botswana/">Botswana</a></td>
<td style="font-weight: bold; text-align:right">324,841</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,760 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">321,024</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,057</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">132,698</td>
<td style="font-weight: bold; text-align:right">1,127</td>
<td style="font-weight: bold; text-align:right">2,026,898</td>
<td style="font-weight: bold; text-align:right">827,993</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/botswana-population/">2,447,965</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>8</td><td>887</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">432</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">101</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/macedonia/">North Macedonia</a></td>
<td style="font-weight: bold; text-align:right">317,634</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">9,337 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">305,988</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,309</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">152,474</td>
<td style="font-weight: bold; text-align:right">4,482</td>
<td style="font-weight: bold; text-align:right">2,081,293</td>
<td style="font-weight: bold; text-align:right">999,084</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/macedonia-population/">2,083,201</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>7</td><td>223</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,108</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">102</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/albania/">Albania</a></td>
<td style="font-weight: bold; text-align:right">290,954</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">3,517 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">280,374</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">7,063</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">101,327</td>
<td style="font-weight: bold; text-align:right">1,225</td>
<td style="font-weight: bold; text-align:right">1,866,752</td>
<td style="font-weight: bold; text-align:right">650,114</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/albania-population/">2,871,424</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>10</td><td>816</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,460</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">103</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/algeria/">Algeria</a></td>
<td style="font-weight: bold; text-align:right">266,356</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">6,875 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">178,747</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">80,734</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">5,859</td>
<td style="font-weight: bold; text-align:right">151</td>
<td style="font-weight: bold; text-align:right">230,861</td>
<td style="font-weight: bold; text-align:right">5,079</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/algeria-population/">45,457,663</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>171</td><td>6,612</td><td>197</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,776</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">104</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/luxembourg/">Luxembourg</a></td>
<td style="font-weight: bold; text-align:right">263,167</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,094 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">251,249</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,824</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">406,975</td>
<td style="font-weight: bold; text-align:right">1,692</td>
<td style="font-weight: bold; text-align:right">4,307,055</td>
<td style="font-weight: bold; text-align:right">6,660,659</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/luxembourg-population/">646,641</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>591</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">16,739</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">105</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/nigeria/">Nigeria</a></td>
<td style="font-weight: bold; text-align:right">258,934</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">3,144 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">250,472</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">5,318</td>
<td style="font-weight: bold; text-align:right">11</td>
<td style="font-weight: bold; text-align:right">1,196</td>
<td style="font-weight: bold; text-align:right">15</td>
<td style="font-weight: bold; text-align:right">5,349,305</td>
<td style="font-weight: bold; text-align:right">24,707</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/nigeria-population/">216,505,530</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>836</td><td>68,863</td><td>40</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">25</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">106</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/zimbabwe/">Zimbabwe</a></td>
<td style="font-weight: bold; text-align:right">256,047</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">5,566 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">249,834</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">647</td>
<td style="font-weight: bold; text-align:right">12</td>
<td style="font-weight: bold; text-align:right">16,733</td>
<td style="font-weight: bold; text-align:right">364</td>
<td style="font-weight: bold; text-align:right">2,421,838</td>
<td style="font-weight: bold; text-align:right">158,270</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/zimbabwe-population/">15,301,924</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>60</td><td>2,749</td><td>6</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">42</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">107</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/montenegro/">Montenegro</a></td>
<td style="font-weight: bold; text-align:right">245,369</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,730 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">239,369</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3,270</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">390,574</td>
<td style="font-weight: bold; text-align:right">4,346</td>
<td style="font-weight: bold; text-align:right">2,513,663</td>
<td style="font-weight: bold; text-align:right">4,001,202</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/montenegro-population/">628,227</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>230</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">5,205</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">108</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/uzbekistan/">Uzbekistan</a></td>
<td style="font-weight: bold; text-align:right">241,953</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,637 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">238,891</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,425</td>
<td style="font-weight: bold; text-align:right">23</td>
<td style="font-weight: bold; text-align:right">7,023</td>
<td style="font-weight: bold; text-align:right">48</td>
<td style="font-weight: bold; text-align:right">1,377,915</td>
<td style="font-weight: bold; text-align:right">39,994</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/uzbekistan-population/">34,453,391</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>142</td><td>21,047</td><td>25</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">41</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">109</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/mozambique/">Mozambique</a></td>
<td style="font-weight: bold; text-align:right">228,887</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,215 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">226,271</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">401</td>
<td style="font-weight: bold; text-align:right">11</td>
<td style="font-weight: bold; text-align:right">6,929</td>
<td style="font-weight: bold; text-align:right">67</td>
<td style="font-weight: bold; text-align:right">1,358,293</td>
<td style="font-weight: bold; text-align:right">41,120</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/mozambique-population/">33,032,036</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>144</td><td>14,913</td><td>24</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">12</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">110</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/laos/">Laos</a></td>
<td style="font-weight: bold; text-align:right">210,433</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">757 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">28,096</td>
<td style="font-weight: bold; text-align:right">101</td>
<td style="font-weight: bold; text-align:right">1,233,207</td>
<td style="font-weight: bold; text-align:right">164,652</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/laos-population/">7,489,772</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>36</td><td>9,894</td><td>6</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">26,972</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">111</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/martinique/">Martinique</a></td>
<td style="font-weight: bold; text-align:right">207,969</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">987 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">104</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">206,878</td>
<td style="font-weight: bold; text-align:right">8</td>
<td style="font-weight: bold; text-align:right">555,065</td>
<td style="font-weight: bold; text-align:right">2,634</td>
<td style="font-weight: bold; text-align:right">828,928</td>
<td style="font-weight: bold; text-align:right">2,212,392</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/martinique-population/">374,675</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>2</td><td>380</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">552,153</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">112</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/kyrgyzstan/">Kyrgyzstan</a></td>
<td style="font-weight: bold; text-align:right">201,329</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,991 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">196,406</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,932</td>
<td style="font-weight: bold; text-align:right">131</td>
<td style="font-weight: bold; text-align:right">29,859</td>
<td style="font-weight: bold; text-align:right">444</td>
<td style="font-weight: bold; text-align:right">1,907,195</td>
<td style="font-weight: bold; text-align:right">282,858</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/kyrgyzstan-population/">6,742,594</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>33</td><td>2,254</td><td>4</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">287</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">113</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/iceland/">Iceland</a></td>
<td style="font-weight: bold; text-align:right">198,721</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">179 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">574,777</td>
<td style="font-weight: bold; text-align:right">518</td>
<td style="font-weight: bold; text-align:right">1,977,641</td>
<td style="font-weight: bold; text-align:right">5,720,090</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/iceland-population/">345,736</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>1,931</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">355,349</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">114</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/maldives/">Maldives</a></td>
<td style="font-weight: bold; text-align:right">183,491</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">307 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">163,687</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">19,497</td>
<td style="font-weight: bold; text-align:right">25</td>
<td style="font-weight: bold; text-align:right">327,744</td>
<td style="font-weight: bold; text-align:right">548</td>
<td style="font-weight: bold; text-align:right">2,213,831</td>
<td style="font-weight: bold; text-align:right">3,954,251</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/maldives-population/">559,861</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>3</td><td>1,824</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">34,825</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">115</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/afghanistan/">Afghanistan</a></td>
<td style="font-weight: bold; text-align:right">183,358</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">7,728 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">165,318</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,312</td>
<td style="font-weight: bold; text-align:right">1,124</td>
<td style="font-weight: bold; text-align:right">4,504</td>
<td style="font-weight: bold; text-align:right">190</td>
<td style="font-weight: bold; text-align:right">1,012,596</td>
<td style="font-weight: bold; text-align:right">24,875</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/afghanistan-population/">40,707,111</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>222</td><td>5,267</td><td>40</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">253</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">116</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/el-salvador/">El Salvador</a></td>
<td style="font-weight: bold; text-align:right">180,970</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">4,167 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">165,895</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,908</td>
<td style="font-weight: bold; text-align:right">8</td>
<td style="font-weight: bold; text-align:right">27,618</td>
<td style="font-weight: bold; text-align:right">636</td>
<td style="font-weight: bold; text-align:right">2,284,873</td>
<td style="font-weight: bold; text-align:right">348,697</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/el-salvador-population/">6,552,601</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>36</td><td>1,572</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,665</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">117</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/brunei-darussalam/">Brunei </a></td>
<td style="font-weight: bold; text-align:right">179,759</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">225 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">164,116</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">15,418</td>
<td style="font-weight: bold; text-align:right">3</td>
<td style="font-weight: bold; text-align:right">403,067</td>
<td style="font-weight: bold; text-align:right">505</td>
<td style="font-weight: bold; text-align:right">717,784</td>
<td style="font-weight: bold; text-align:right">1,609,461</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/brunei-darussalam-population/">445,978</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>2</td><td>1,982</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">34,571</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">118</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/guadeloupe/">Guadeloupe</a></td>
<td style="font-weight: bold; text-align:right">175,348</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">958 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2,250</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">172,140</td>
<td style="font-weight: bold; text-align:right">19</td>
<td style="font-weight: bold; text-align:right">438,082</td>
<td style="font-weight: bold; text-align:right">2,393</td>
<td style="font-weight: bold; text-align:right">938,039</td>
<td style="font-weight: bold; text-align:right">2,343,557</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/guadeloupe-population/">400,263</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>2</td><td>418</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">430,067</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">119</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/namibia/">Namibia</a></td>
<td style="font-weight: bold; text-align:right">169,253</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">4,065 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">164,813</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">375</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">64,250</td>
<td style="font-weight: bold; text-align:right">1,543</td>
<td style="font-weight: bold; text-align:right">1,062,663</td>
<td style="font-weight: bold; text-align:right">403,400</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/namibia-population/">2,634,269</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>16</td><td>648</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">142</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">120</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/trinidad-and-tobago/">Trinidad and Tobago</a></td>
<td style="font-weight: bold; text-align:right">168,808</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">4,034 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">158,668</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">6,106</td>
<td style="font-weight: bold; text-align:right">18</td>
<td style="font-weight: bold; text-align:right">119,834</td>
<td style="font-weight: bold; text-align:right">2,864</td>
<td style="font-weight: bold; text-align:right">781,653</td>
<td style="font-weight: bold; text-align:right">554,883</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/trinidad-and-tobago-population/">1,408,681</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>8</td><td>349</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,335</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">121</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/uganda/">Uganda</a></td>
<td style="font-weight: bold; text-align:right">168,569</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">3,627 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">100,420</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">64,522</td>
<td style="font-weight: bold; text-align:right">10</td>
<td style="font-weight: bold; text-align:right">3,463</td>
<td style="font-weight: bold; text-align:right">75</td>
<td style="font-weight: bold; text-align:right">2,975,238</td>
<td style="font-weight: bold; text-align:right">61,129</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/uganda-population/">48,671,743</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>289</td><td>13,419</td><td>16</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,326</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">122</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/ghana/">Ghana</a></td>
<td style="font-weight: bold; text-align:right">167,215</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,456 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">165,153</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">606</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">5,163</td>
<td style="font-weight: bold; text-align:right">45</td>
<td style="font-weight: bold; text-align:right">2,479,277</td>
<td style="font-weight: bold; text-align:right">76,547</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/ghana-population/">32,388,938</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>194</td><td>22,245</td><td>13</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">19</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">123</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/jamaica/">Jamaica</a></td>
<td style="font-weight: bold; text-align:right">144,349</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">3,164 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">92,028</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">49,157</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">48,319</td>
<td style="font-weight: bold; text-align:right">1,059</td>
<td style="font-weight: bold; text-align:right">1,138,135</td>
<td style="font-weight: bold; text-align:right">380,980</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/jamaica-population/">2,987,387</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>21</td><td>944</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">16,455</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">124</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cambodia/">Cambodia</a></td>
<td style="font-weight: bold; text-align:right">136,407</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">3,056 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">133,267</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">84</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">7,936</td>
<td style="font-weight: bold; text-align:right">178</td>
<td style="font-weight: bold; text-align:right">3,002,402</td>
<td style="font-weight: bold; text-align:right">174,676</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cambodia-population/">17,188,440</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>126</td><td>5,624</td><td>6</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">5</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">125</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/rwanda/">Rwanda</a></td>
<td style="font-weight: bold; text-align:right">131,808</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,462 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">45,522</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">84,824</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9,689</td>
<td style="font-weight: bold; text-align:right">107</td>
<td style="font-weight: bold; text-align:right">5,608,157</td>
<td style="font-weight: bold; text-align:right">412,254</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/rwanda-population/">13,603,629</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>103</td><td>9,305</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,235</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">126</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cameroon/">Cameroon</a></td>
<td style="font-weight: bold; text-align:right">120,068</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,931 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">117,791</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">346</td>
<td style="font-weight: bold; text-align:right">13</td>
<td style="font-weight: bold; text-align:right">4,306</td>
<td style="font-weight: bold; text-align:right">69</td>
<td style="font-weight: bold; text-align:right">1,751,774</td>
<td style="font-weight: bold; text-align:right">62,818</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cameroon-population/">27,886,520</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>232</td><td>14,441</td><td>16</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">12</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">127</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/malta/">Malta</a></td>
<td style="font-weight: bold; text-align:right">110,191</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">768 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">101,772</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">7,651</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">248,218</td>
<td style="font-weight: bold; text-align:right">1,730</td>
<td style="font-weight: bold; text-align:right">1,994,827</td>
<td style="font-weight: bold; text-align:right">4,493,582</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/malta-population/">443,928</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>4</td><td>578</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">17,235</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">128</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/angola/">Angola</a></td>
<td style="font-weight: bold; text-align:right">101,600</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,900 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">97,149</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,551</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,908</td>
<td style="font-weight: bold; text-align:right">54</td>
<td style="font-weight: bold; text-align:right">1,499,795</td>
<td style="font-weight: bold; text-align:right">42,924</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/angola-population/">34,940,471</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>344</td><td>18,390</td><td>23</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">73</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">129</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/democratic-republic-of-the-congo/">DRC</a></td>
<td style="font-weight: bold; text-align:right">91,737</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,376 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">50,930</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">39,431</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">965</td>
<td style="font-weight: bold; text-align:right">14</td>
<td style="font-weight: bold; text-align:right">846,704</td>
<td style="font-weight: bold; text-align:right">8,905</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/democratic-republic-of-the-congo-population/">95,085,590</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>1,037</td><td>69,103</td><td>112</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">415</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">130</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/french-guiana/">French Guiana</a></td>
<td style="font-weight: bold; text-align:right">89,779</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">402 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">11,254</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">78,123</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">285,567</td>
<td style="font-weight: bold; text-align:right">1,279</td>
<td style="font-weight: bold; text-align:right">644,972</td>
<td style="font-weight: bold; text-align:right">2,051,509</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/french-guiana-population/">314,389</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>4</td><td>782</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">248,492</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">131</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/barbados/">Barbados</a></td>
<td style="font-weight: bold; text-align:right">87,002</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">479 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">84,706</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,817</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">301,997</td>
<td style="font-weight: bold; text-align:right">1,663</td>
<td style="font-weight: bold; text-align:right">714,126</td>
<td style="font-weight: bold; text-align:right">2,478,838</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/barbados-population/">288,089</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>3</td><td>601</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,307</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">132</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/malawi/">Malawi</a></td>
<td style="font-weight: bold; text-align:right">86,823</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,651 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">83,506</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">666</td>
<td style="font-weight: bold; text-align:right">67</td>
<td style="font-weight: bold; text-align:right">4,312</td>
<td style="font-weight: bold; text-align:right">132</td>
<td style="font-weight: bold; text-align:right">596,340</td>
<td style="font-weight: bold; text-align:right">29,620</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/malawi-population/">20,132,870</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>232</td><td>7,594</td><td>34</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">33</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">133</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/senegal/">Senegal</a></td>
<td style="font-weight: bold; text-align:right">86,631</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,968 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">84,535</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">128</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,911</td>
<td style="font-weight: bold; text-align:right">112</td>
<td style="font-weight: bold; text-align:right">1,123,868</td>
<td style="font-weight: bold; text-align:right">63,714</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/senegal-population/">17,639,141</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>204</td><td>8,963</td><td>16</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">7</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">134</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/channel-islands/">Channel Islands</a></td>
<td style="font-weight: bold; text-align:right">85,848</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">181 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">82,813</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,854</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">484,705</td>
<td style="font-weight: bold; text-align:right">1,022</td>
<td style="font-weight: bold; text-align:right">1,252,808</td>
<td style="font-weight: bold; text-align:right">7,073,456</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/channel-islands-population/">177,114</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>979</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">16,114</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">135</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cote-d-ivoire/">Ivory Coast</a></td>
<td style="font-weight: bold; text-align:right">84,347</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">806 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">83,259</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">282</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,045</td>
<td style="font-weight: bold; text-align:right">29</td>
<td style="font-weight: bold; text-align:right">1,563,566</td>
<td style="font-weight: bold; text-align:right">56,439</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cote-d-ivoire-population/">27,703,542</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>328</td><td>34,372</td><td>18</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">10</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">136</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/suriname/">Suriname</a></td>
<td style="font-weight: bold; text-align:right">80,919</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,377 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">49,590</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">29,952</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">135,476</td>
<td style="font-weight: bold; text-align:right">2,305</td>
<td style="font-weight: bold; text-align:right">238,251</td>
<td style="font-weight: bold; text-align:right">398,883</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/suriname-population/">597,296</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>7</td><td>434</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">50,146</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">137</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/french-polynesia/">French Polynesia</a></td>
<td style="font-weight: bold; text-align:right">73,858</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">649 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right">7</td>
<td style="font-weight: bold; text-align:right">259,879</td>
<td style="font-weight: bold; text-align:right">2,284</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/french-polynesia-population/">284,202</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>4</td><td>438</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">139,721</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">138</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/swaziland/">Eswatini</a></td>
<td style="font-weight: bold; text-align:right">73,230</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,417 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">71,731</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">82</td>
<td style="font-weight: bold; text-align:right">11</td>
<td style="font-weight: bold; text-align:right">61,822</td>
<td style="font-weight: bold; text-align:right">1,196</td>
<td style="font-weight: bold; text-align:right">1,038,765</td>
<td style="font-weight: bold; text-align:right">876,938</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/swaziland-population/">1,184,537</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>16</td><td>836</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">69</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">139</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/guyana/">Guyana</a></td>
<td style="font-weight: bold; text-align:right">68,627</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,264 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">66,447</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">916</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">86,405</td>
<td style="font-weight: bold; text-align:right">1,591</td>
<td style="font-weight: bold; text-align:right">668,394</td>
<td style="font-weight: bold; text-align:right">841,539</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/guyana-population/">794,252</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>12</td><td>628</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,153</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">140</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/fiji/">Fiji</a></td>
<td style="font-weight: bold; text-align:right">66,713</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">869 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">64,320</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,524</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">73,341</td>
<td style="font-weight: bold; text-align:right">955</td>
<td style="font-weight: bold; text-align:right">587,132</td>
<td style="font-weight: bold; text-align:right">645,467</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/fiji-population/">909,624</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>14</td><td>1,047</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,675</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">141</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/new-caledonia/">New Caledonia</a></td>
<td style="font-weight: bold; text-align:right">66,596</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">314 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">64,483</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,799</td>
<td style="font-weight: bold; text-align:right">9</td>
<td style="font-weight: bold; text-align:right">228,800</td>
<td style="font-weight: bold; text-align:right">1,079</td>
<td style="font-weight: bold; text-align:right">98,964</td>
<td style="font-weight: bold; text-align:right">340,004</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/new-caledonia-population/">291,067</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>4</td><td>927</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,181</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">142</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/madagascar/">Madagascar</a></td>
<td style="font-weight: bold; text-align:right">66,098</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,403 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">63,895</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">800</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">2,269</td>
<td style="font-weight: bold; text-align:right">48</td>
<td style="font-weight: bold; text-align:right">478,036</td>
<td style="font-weight: bold; text-align:right">16,407</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/madagascar-population/">29,135,325</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>441</td><td>20,766</td><td>61</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">27</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">143</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/belize/">Belize</a></td>
<td style="font-weight: bold; text-align:right">65,840</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">680 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">64,409</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">751</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">159,700</td>
<td style="font-weight: bold; text-align:right">1,649</td>
<td style="font-weight: bold; text-align:right">576,016</td>
<td style="font-weight: bold; text-align:right">1,397,168</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/belize-population/">412,274</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>6</td><td>606</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,822</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">144</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/sudan/">Sudan</a></td>
<td style="font-weight: bold; text-align:right">62,795</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">4,955 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,367</td>
<td style="font-weight: bold; text-align:right">108</td>
<td style="font-weight: bold; text-align:right">562,941</td>
<td style="font-weight: bold; text-align:right">12,257</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/sudan-population/">45,926,466</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>731</td><td>9,269</td><td>82</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">381</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">145</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cabo-verde/">Cabo Verde</a></td>
<td style="font-weight: bold; text-align:right">61,776</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">409 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">60,941</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">426</td>
<td style="font-weight: bold; text-align:right">23</td>
<td style="font-weight: bold; text-align:right">108,715</td>
<td style="font-weight: bold; text-align:right">720</td>
<td style="font-weight: bold; text-align:right">401,416</td>
<td style="font-weight: bold; text-align:right">706,421</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cabo-verde-population/">568,239</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>9</td><td>1,389</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">750</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">146</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/mauritania/">Mauritania</a></td>
<td style="font-weight: bold; text-align:right">61,640</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">986 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">58,986</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,668</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">12,586</td>
<td style="font-weight: bold; text-align:right">201</td>
<td style="font-weight: bold; text-align:right">887,638</td>
<td style="font-weight: bold; text-align:right">181,239</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/mauritania-population/">4,897,620</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>79</td><td>4,967</td><td>6</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">341</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">147</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bhutan/">Bhutan</a></td>
<td style="font-weight: bold; text-align:right">59,940</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">21 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">59,845</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">74</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">75,984</td>
<td style="font-weight: bold; text-align:right">27</td>
<td style="font-weight: bold; text-align:right">2,303,734</td>
<td style="font-weight: bold; text-align:right">2,920,381</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bhutan-population/">788,847</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>13</td><td>37,564</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">94</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">148</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/syria/">Syria</a></td>
<td style="font-weight: bold; text-align:right">55,966</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">3,150 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">52,778</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">38</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,048</td>
<td style="font-weight: bold; text-align:right">172</td>
<td style="font-weight: bold; text-align:right">146,269</td>
<td style="font-weight: bold; text-align:right">7,965</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/syria-population/">18,363,203</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>328</td><td>5,830</td><td>126</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">149</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/gabon/">Gabon</a></td>
<td style="font-weight: bold; text-align:right">48,157</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">305 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">47,391</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">461</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">20,648</td>
<td style="font-weight: bold; text-align:right">131</td>
<td style="font-weight: bold; text-align:right">1,604,748</td>
<td style="font-weight: bold; text-align:right">688,057</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/gabon-population/">2,332,288</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>48</td><td>7,647</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">198</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">150</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/seychelles/">Seychelles</a></td>
<td style="font-weight: bold; text-align:right">45,185</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">167 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">44,755</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">263</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">453,747</td>
<td style="font-weight: bold; text-align:right">1,677</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/seychelles-population/">99,582</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>2</td><td>596</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,641</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">151</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/curacao/">Curaçao</a></td>
<td style="font-weight: bold; text-align:right">44,782</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">280 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">44,339</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">163</td>
<td style="font-weight: bold; text-align:right">3</td>
<td style="font-weight: bold; text-align:right">270,661</td>
<td style="font-weight: bold; text-align:right">1,692</td>
<td style="font-weight: bold; text-align:right">496,693</td>
<td style="font-weight: bold; text-align:right">3,002,001</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/curacao-population/">165,454</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>4</td><td>591</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">985</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">152</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/papua-new-guinea/">Papua New Guinea</a></td>
<td style="font-weight: bold; text-align:right">44,758</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">662 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">43,982</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">114</td>
<td style="font-weight: bold; text-align:right">7</td>
<td style="font-weight: bold; text-align:right">4,817</td>
<td style="font-weight: bold; text-align:right">71</td>
<td style="font-weight: bold; text-align:right">249,149</td>
<td style="font-weight: bold; text-align:right">26,816</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/papua-new-guinea-population/">9,290,895</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>208</td><td>14,035</td><td>37</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">12</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">153</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/andorra/">Andorra</a></td>
<td style="font-weight: bold; text-align:right">44,671</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">153 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">43,802</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">716</td>
<td style="font-weight: bold; text-align:right">14</td>
<td style="font-weight: bold; text-align:right">576,281</td>
<td style="font-weight: bold; text-align:right">1,974</td>
<td style="font-weight: bold; text-align:right">249,838</td>
<td style="font-weight: bold; text-align:right">3,223,051</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/andorra-population/">77,516</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>507</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9,237</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">154</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/burundi/">Burundi</a></td>
<td style="font-weight: bold; text-align:right">43,060</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">38 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,415</td>
<td style="font-weight: bold; text-align:right">3</td>
<td style="font-weight: bold; text-align:right">345,742</td>
<td style="font-weight: bold; text-align:right">27,420</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/burundi-population/">12,609,279</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>293</td><td>331,823</td><td>36</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,351</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">155</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/aruba/">Aruba</a></td>
<td style="font-weight: bold; text-align:right">41,448</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">224 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">40,882</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">342</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">384,897</td>
<td style="font-weight: bold; text-align:right">2,080</td>
<td style="font-weight: bold; text-align:right">177,885</td>
<td style="font-weight: bold; text-align:right">1,651,886</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/aruba-population/">107,686</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>3</td><td>481</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,176</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">156</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/mauritius/">Mauritius</a></td>
<td style="font-weight: bold; text-align:right">38,737</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,008 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">36,856</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">873</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">30,357</td>
<td style="font-weight: bold; text-align:right">790</td>
<td style="font-weight: bold; text-align:right">358,675</td>
<td style="font-weight: bold; text-align:right">281,082</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/mauritius-population/">1,276,049</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>33</td><td>1,266</td><td>4</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">684</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">157</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/mayotte/">Mayotte</a></td>
<td style="font-weight: bold; text-align:right">37,958</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">187 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2,964</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">34,807</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">132,641</td>
<td style="font-weight: bold; text-align:right">653</td>
<td style="font-weight: bold; text-align:right">176,919</td>
<td style="font-weight: bold; text-align:right">618,230</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/mayotte-population/">286,170</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>8</td><td>1,530</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">121,630</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">158</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/togo/">Togo</a></td>
<td style="font-weight: bold; text-align:right">37,718</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">275 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">37,164</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">279</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,349</td>
<td style="font-weight: bold; text-align:right">32</td>
<td style="font-weight: bold; text-align:right">760,061</td>
<td style="font-weight: bold; text-align:right">87,641</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/togo-population/">8,672,391</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>230</td><td>31,536</td><td>11</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">32</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">159</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/tanzania/">Tanzania</a></td>
<td style="font-weight: bold; text-align:right">37,510</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">841 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right">7</td>
<td style="font-weight: bold; text-align:right">594</td>
<td style="font-weight: bold; text-align:right">13</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/tanzania-population/">63,186,161</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>1,685</td><td>75,132</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">577</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">160</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/guinea/">Guinea</a></td>
<td style="font-weight: bold; text-align:right">37,358</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">443 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">36,419</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">496</td>
<td style="font-weight: bold; text-align:right">8</td>
<td style="font-weight: bold; text-align:right">2,696</td>
<td style="font-weight: bold; text-align:right">32</td>
<td style="font-weight: bold; text-align:right">660,107</td>
<td style="font-weight: bold; text-align:right">47,642</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/guinea-population/">13,855,517</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>371</td><td>31,277</td><td>21</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">36</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">161</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/isle-of-man/">Isle of Man</a></td>
<td style="font-weight: bold; text-align:right">37,239</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">110 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">26,794</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">10,335</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">433,284</td>
<td style="font-weight: bold; text-align:right">1,280</td>
<td style="font-weight: bold; text-align:right">150,753</td>
<td style="font-weight: bold; text-align:right">1,754,043</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/isle-of-man-population/">85,946</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>781</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">120,250</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">162</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bahamas/">Bahamas</a></td>
<td style="font-weight: bold; text-align:right">36,354</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">822 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">34,842</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">690</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">90,688</td>
<td style="font-weight: bold; text-align:right">2,051</td>
<td style="font-weight: bold; text-align:right">241,422</td>
<td style="font-weight: bold; text-align:right">602,248</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bahamas-population/">400,868</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>11</td><td>488</td><td>2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,721</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">163</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/faeroe-islands/">Faeroe Islands</a></td>
<td style="font-weight: bold; text-align:right">34,658</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">28 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right">5</td>
<td style="font-weight: bold; text-align:right">703,859</td>
<td style="font-weight: bold; text-align:right">569</td>
<td style="font-weight: bold; text-align:right">778,000</td>
<td style="font-weight: bold; text-align:right">15,800,162</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/faeroe-islands-population/">49,240</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>1</td><td>1,759</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">547,055</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">164</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/lesotho/">Lesotho</a></td>
<td style="font-weight: bold; text-align:right">34,040</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">702 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">24,155</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">9,183</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">15,638</td>
<td style="font-weight: bold; text-align:right">323</td>
<td style="font-weight: bold; text-align:right">431,221</td>
<td style="font-weight: bold; text-align:right">198,107</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/lesotho-population/">2,176,704</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>64</td><td>3,101</td><td>5</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,219</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">165</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/haiti/">Haiti</a></td>
<td style="font-weight: bold; text-align:right">32,070</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">837 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">29,884</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,349</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,745</td>
<td style="font-weight: bold; text-align:right">72</td>
<td style="font-weight: bold; text-align:right">132,422</td>
<td style="font-weight: bold; text-align:right">11,333</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/haiti-population/">11,684,564</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>364</td><td>13,960</td><td>88</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">115</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">166</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/mali/">Mali</a></td>
<td style="font-weight: bold; text-align:right">31,196</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">737 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">30,367</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">92</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,455</td>
<td style="font-weight: bold; text-align:right">34</td>
<td style="font-weight: bold; text-align:right">707,472</td>
<td style="font-weight: bold; text-align:right">33,007</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/mali-population/">21,434,224</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>687</td><td>29,083</td><td>30</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">167</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cayman-islands/">Cayman Islands</a></td>
<td style="font-weight: bold; text-align:right">27,966</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">29 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">8,553</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">19,384</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">415,616</td>
<td style="font-weight: bold; text-align:right">431</td>
<td style="font-weight: bold; text-align:right">222,773</td>
<td style="font-weight: bold; text-align:right">3,310,739</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cayman-islands-population/">67,288</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>2</td><td>2,320</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">288,075</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">168</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saint-lucia/">Saint Lucia</a></td>
<td style="font-weight: bold; text-align:right">27,408</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">385 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">26,840</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">183</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">147,888</td>
<td style="font-weight: bold; text-align:right">2,077</td>
<td style="font-weight: bold; text-align:right">209,716</td>
<td style="font-weight: bold; text-align:right">1,131,582</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saint-lucia-population/">185,330</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>7</td><td>481</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">987</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">169</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/benin/">Benin</a></td>
<td style="font-weight: bold; text-align:right">27,216</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">163 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">25,506</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,547</td>
<td style="font-weight: bold; text-align:right">5</td>
<td style="font-weight: bold; text-align:right">2,132</td>
<td style="font-weight: bold; text-align:right">13</td>
<td style="font-weight: bold; text-align:right">604,310</td>
<td style="font-weight: bold; text-align:right">47,332</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/benin-population/">12,767,443</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>469</td><td>78,328</td><td>21</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">121</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">170</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/somalia/">Somalia</a></td>
<td style="font-weight: bold; text-align:right">26,900</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1,350 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">13,182</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">12,368</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,602</td>
<td style="font-weight: bold; text-align:right">80</td>
<td style="font-weight: bold; text-align:right">400,466</td>
<td style="font-weight: bold; text-align:right">23,847</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/somalia-population/">16,792,828</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>624</td><td>12,439</td><td>42</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">737</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">171</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/congo/">Congo</a></td>
<td style="font-weight: bold; text-align:right">24,421</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">386 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">20,178</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3,857</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,215</td>
<td style="font-weight: bold; text-align:right">67</td>
<td style="font-weight: bold; text-align:right">347,815</td>
<td style="font-weight: bold; text-align:right">60,034</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/congo-population/">5,793,654</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>237</td><td>15,009</td><td>17</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">666</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">172</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/timor-leste/">Timor-Leste</a></td>
<td style="font-weight: bold; text-align:right">22,975</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">133 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">22,829</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">13</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">16,777</td>
<td style="font-weight: bold; text-align:right">97</td>
<td style="font-weight: bold; text-align:right">271,206</td>
<td style="font-weight: bold; text-align:right">198,048</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/timor-leste-population/">1,369,395</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>60</td><td>10,296</td><td>5</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">173</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/solomon-islands/">Solomon Islands</a></td>
<td style="font-weight: bold; text-align:right">21,544</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">153 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">16,357</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">5,034</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">29,878</td>
<td style="font-weight: bold; text-align:right">212</td>
<td style="font-weight: bold; text-align:right">5,117</td>
<td style="font-weight: bold; text-align:right">7,097</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/solomon-islands-population/">721,059</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>33</td><td>4,713</td><td>141</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,981</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">174</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/burkina-faso/">Burkina Faso</a></td>
<td style="font-weight: bold; text-align:right">20,853</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">382 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">20,439</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">32</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">945</td>
<td style="font-weight: bold; text-align:right">17</td>
<td style="font-weight: bold; text-align:right">248,995</td>
<td style="font-weight: bold; text-align:right">11,284</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/burkina-faso-population/">22,066,182</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>1,058</td><td>57,765</td><td>89</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">175</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/gibraltar/">Gibraltar</a></td>
<td style="font-weight: bold; text-align:right">19,862</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">105 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">16,579</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3,178</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">589,884</td>
<td style="font-weight: bold; text-align:right">3,118</td>
<td style="font-weight: bold; text-align:right">534,283</td>
<td style="font-weight: bold; text-align:right">15,867,750</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/gibraltar-population/">33,671</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>321</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">94,384</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">176</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/san-marino/">San Marino</a></td>
<td style="font-weight: bold; text-align:right">18,977</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">116 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">18,267</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">594</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">556,902</td>
<td style="font-weight: bold; text-align:right">3,404</td>
<td style="font-weight: bold; text-align:right">152,231</td>
<td style="font-weight: bold; text-align:right">4,467,396</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/san-marino-population/">34,076</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>294</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">17,432</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">177</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/grenada/">Grenada</a></td>
<td style="font-weight: bold; text-align:right">18,592</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">233 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">18,178</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">181</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">163,689</td>
<td style="font-weight: bold; text-align:right">2,051</td>
<td style="font-weight: bold; text-align:right">172,268</td>
<td style="font-weight: bold; text-align:right">1,516,697</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/grenada-population/">113,581</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>6</td><td>487</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,594</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">178</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/nicaragua/">Nicaragua</a></td>
<td style="font-weight: bold; text-align:right">18,491</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">225 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">4,225</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">14,041</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,725</td>
<td style="font-weight: bold; text-align:right">33</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/nicaragua-population/">6,784,471</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>367</td><td>30,153</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,070</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">179</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/liechtenstein/">Liechtenstein</a></td>
<td style="font-weight: bold; text-align:right">18,299</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">85 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">17,958</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">256</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">477,158</td>
<td style="font-weight: bold; text-align:right">2,216</td>
<td style="font-weight: bold; text-align:right">102,174</td>
<td style="font-weight: bold; text-align:right">2,664,250</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/liechtenstein-population/">38,350</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>2</td><td>451</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,675</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">180</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/tajikistan/">Tajikistan</a></td>
<td style="font-weight: bold; text-align:right">17,786</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">125 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">17,264</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">397</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,784</td>
<td style="font-weight: bold; text-align:right">13</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/tajikistan-population/">9,972,283</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>561</td><td>79,778</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">40</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">181</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/south-sudan/">South Sudan</a></td>
<td style="font-weight: bold; text-align:right">17,733</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">138 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">15,630</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,965</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">1,547</td>
<td style="font-weight: bold; text-align:right">12</td>
<td style="font-weight: bold; text-align:right">410,280</td>
<td style="font-weight: bold; text-align:right">35,801</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/south-sudan-population/">11,460,002</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>646</td><td>83,043</td><td>28</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">171</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">182</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/bermuda/">Bermuda</a></td>
<td style="font-weight: bold; text-align:right">16,722</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">141 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">16,201</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">380</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">270,534</td>
<td style="font-weight: bold; text-align:right">2,281</td>
<td style="font-weight: bold; text-align:right">958,749</td>
<td style="font-weight: bold; text-align:right">15,510,977</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/bermuda-population/">61,811</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>4</td><td>438</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6,148</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">183</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/equatorial-guinea/">Equatorial Guinea</a></td>
<td style="font-weight: bold; text-align:right">16,504</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">183 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">15,862</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">459</td>
<td style="font-weight: bold; text-align:right">5</td>
<td style="font-weight: bold; text-align:right">11,028</td>
<td style="font-weight: bold; text-align:right">122</td>
<td style="font-weight: bold; text-align:right">346,685</td>
<td style="font-weight: bold; text-align:right">231,664</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/equatorial-guinea-population/">1,496,500</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>91</td><td>8,178</td><td>4</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">307</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">184</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/djibouti/">Djibouti</a></td>
<td style="font-weight: bold; text-align:right">15,690</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">189 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">15,427</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">74</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">15,425</td>
<td style="font-weight: bold; text-align:right">186</td>
<td style="font-weight: bold; text-align:right">305,941</td>
<td style="font-weight: bold; text-align:right">300,782</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/djibouti-population/">1,017,152</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>65</td><td>5,382</td><td>3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">73</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">185</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/samoa/">Samoa</a></td>
<td style="font-weight: bold; text-align:right">15,134</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">29 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,605</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">13,500</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">75,260</td>
<td style="font-weight: bold; text-align:right">144</td>
<td style="font-weight: bold; text-align:right">168,260</td>
<td style="font-weight: bold; text-align:right">836,744</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/samoa-population/">201,089</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>13</td><td>6,934</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">67,134</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">186</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/dominica/">Dominica</a></td>
<td style="font-weight: bold; text-align:right">14,852</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">68 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">14,554</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">230</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">205,283</td>
<td style="font-weight: bold; text-align:right">940</td>
<td style="font-weight: bold; text-align:right">210,195</td>
<td style="font-weight: bold; text-align:right">2,905,292</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/dominica-population/">72,349</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>5</td><td>1,064</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">3,179</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">187</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/central-african-republic/">CAR</a></td>
<td style="font-weight: bold; text-align:right">14,712</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">113 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">6,859</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">7,740</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">2,942</td>
<td style="font-weight: bold; text-align:right">23</td>
<td style="font-weight: bold; text-align:right">81,294</td>
<td style="font-weight: bold; text-align:right">16,258</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/central-african-republic-population/">5,000,148</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>340</td><td>44,249</td><td>62</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,548</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">188</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/monaco/">Monaco</a></td>
<td style="font-weight: bold; text-align:right">13,696</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">57 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">13,338</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">301</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">344,069</td>
<td style="font-weight: bold; text-align:right">1,432</td>
<td style="font-weight: bold; text-align:right">77,770</td>
<td style="font-weight: bold; text-align:right">1,953,726</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/monaco-population/">39,806</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>3</td><td>698</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">7,562</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">189</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/tonga/">Tonga</a></td>
<td style="font-weight: bold; text-align:right">12,382</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">12 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">12,223</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">147</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">114,515</td>
<td style="font-weight: bold; text-align:right">111</td>
<td style="font-weight: bold; text-align:right">535,009</td>
<td style="font-weight: bold; text-align:right">4,948,014</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/tonga-population/">108,126</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>9</td><td>9,011</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,360</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">190</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/gambia/">Gambia</a></td>
<td style="font-weight: bold; text-align:right">12,009</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">365 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">11,591</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">53</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,701</td>
<td style="font-weight: bold; text-align:right">143</td>
<td style="font-weight: bold; text-align:right">155,686</td>
<td style="font-weight: bold; text-align:right">60,948</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/gambia-population/">2,554,413</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>213</td><td>6,998</td><td>16</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">21</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">191</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/greenland/">Greenland</a></td>
<td style="font-weight: bold; text-align:right">11,971</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">21 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2,761</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">9,189</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">210,128</td>
<td style="font-weight: bold; text-align:right">369</td>
<td style="font-weight: bold; text-align:right">164,926</td>
<td style="font-weight: bold; text-align:right">2,894,962</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/greenland-population/">56,970</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>5</td><td>2,713</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">161,295</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">192</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/yemen/">Yemen</a></td>
<td style="font-weight: bold; text-align:right">11,832</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2,149 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">9,108</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">575</td>
<td style="font-weight: bold; text-align:right">23</td>
<td style="font-weight: bold; text-align:right">380</td>
<td style="font-weight: bold; text-align:right">69</td>
<td style="font-weight: bold; text-align:right">265,253</td>
<td style="font-weight: bold; text-align:right">8,513</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/yemen-population/">31,158,750</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>2,633</td><td>14,499</td><td>117</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">18</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">193</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/vanuatu/">Vanuatu</a></td>
<td style="font-weight: bold; text-align:right">11,690</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">14 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">11,502</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">174</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">36,337</td>
<td style="font-weight: bold; text-align:right">44</td>
<td style="font-weight: bold; text-align:right">24,976</td>
<td style="font-weight: bold; text-align:right">77,636</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/vanuatu-population/">321,707</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>28</td><td>22,979</td><td>13</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">541</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">194</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saint-martin/">Saint Martin</a></td>
<td style="font-weight: bold; text-align:right">11,224</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">63 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,399</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">9,762</td>
<td style="font-weight: bold; text-align:right">7</td>
<td style="font-weight: bold; text-align:right">280,572</td>
<td style="font-weight: bold; text-align:right">1,575</td>
<td style="font-weight: bold; text-align:right">112,382</td>
<td style="font-weight: bold; text-align:right">2,809,269</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saint-martin-population/">40,004</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>4</td><td>635</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">244,026</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">195</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/sint-maarten/">Sint Maarten</a></td>
<td style="font-weight: bold; text-align:right">10,656</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">87 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">10,524</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">45</td>
<td style="font-weight: bold; text-align:right">10</td>
<td style="font-weight: bold; text-align:right">242,933</td>
<td style="font-weight: bold; text-align:right">1,983</td>
<td style="font-weight: bold; text-align:right">62,056</td>
<td style="font-weight: bold; text-align:right">1,414,736</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/sint-maarten-population/">43,864</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>4</td><td>504</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,026</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">196</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/caribbean-netherlands/">Caribbean Netherlands</a></td>
<td style="font-weight: bold; text-align:right">10,567</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">35 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">10,424</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">108</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">395,501</td>
<td style="font-weight: bold; text-align:right">1,310</td>
<td style="font-weight: bold; text-align:right">30,126</td>
<td style="font-weight: bold; text-align:right">1,127,554</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/caribbean-netherlands-population/">26,718</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>3</td><td>763</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,042</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">197</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/eritrea/">Eritrea</a></td>
<td style="font-weight: bold; text-align:right">9,852</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">103 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">9,702</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">47</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,702</td>
<td style="font-weight: bold; text-align:right">28</td>
<td style="font-weight: bold; text-align:right">23,693</td>
<td style="font-weight: bold; text-align:right">6,498</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/eritrea-population/">3,646,011</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>370</td><td>35,398</td><td>154</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">13</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">198</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/niger/">Niger</a></td>
<td style="font-weight: bold; text-align:right">9,096</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">311 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">8,628</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">157</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">350</td>
<td style="font-weight: bold; text-align:right">12</td>
<td style="font-weight: bold; text-align:right">254,538</td>
<td style="font-weight: bold; text-align:right">9,796</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/niger-population/">25,984,404</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>2,857</td><td>83,551</td><td>102</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">6</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">199</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/antigua-and-barbuda/">Antigua and Barbuda</a></td>
<td style="font-weight: bold; text-align:right">8,704</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">143 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">8,528</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">33</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">87,412</td>
<td style="font-weight: bold; text-align:right">1,436</td>
<td style="font-weight: bold; text-align:right">18,901</td>
<td style="font-weight: bold; text-align:right">189,819</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/antigua-and-barbuda-population/">99,574</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>11</td><td>696</td><td>5</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">331</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">200</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/guinea-bissau/">Guinea-Bissau</a></td>
<td style="font-weight: bold; text-align:right">8,400</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">171 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">8,151</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">78</td>
<td style="font-weight: bold; text-align:right">6</td>
<td style="font-weight: bold; text-align:right">4,073</td>
<td style="font-weight: bold; text-align:right">83</td>
<td style="font-weight: bold; text-align:right">145,231</td>
<td style="font-weight: bold; text-align:right">70,419</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/guinea-bissau-population/">2,062,372</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>246</td><td>12,061</td><td>14</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">38</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">201</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/comoros/">Comoros</a></td>
<td style="font-weight: bold; text-align:right">8,209</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">160 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">7,933</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">116</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">9,049</td>
<td style="font-weight: bold; text-align:right">176</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/comoros-population/">907,185</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>111</td><td>5,670</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">128</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">202</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/sierra-leone/">Sierra Leone</a></td>
<td style="font-weight: bold; text-align:right">7,718</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">125 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">929</td>
<td style="font-weight: bold; text-align:right">15</td>
<td style="font-weight: bold; text-align:right">259,958</td>
<td style="font-weight: bold; text-align:right">31,297</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/sierra-leone-population/">8,306,116</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>1,076</td><td>66,449</td><td>32</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">334</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">203</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/liberia/">Liberia</a></td>
<td style="font-weight: bold; text-align:right">7,504</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">294 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">5,747</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">1,463</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right">1,416</td>
<td style="font-weight: bold; text-align:right">55</td>
<td style="font-weight: bold; text-align:right">139,824</td>
<td style="font-weight: bold; text-align:right">26,388</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/liberia-population/">5,298,865</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>706</td><td>18,023</td><td>38</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">276</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">204</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/chad/">Chad</a></td>
<td style="font-weight: bold; text-align:right">7,427</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">193 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">4,874</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">2,360</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">427</td>
<td style="font-weight: bold; text-align:right">11</td>
<td style="font-weight: bold; text-align:right">191,341</td>
<td style="font-weight: bold; text-align:right">11,008</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/chad-population/">17,382,135</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>2,340</td><td>90,063</td><td>91</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">136</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">205</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/british-virgin-islands/">British Virgin Islands</a></td>
<td style="font-weight: bold; text-align:right">7,131</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">63 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">232,743</td>
<td style="font-weight: bold; text-align:right">2,056</td>
<td style="font-weight: bold; text-align:right">105,790</td>
<td style="font-weight: bold; text-align:right">3,452,789</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/british-virgin-islands-population/">30,639</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>4</td><td>486</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">783</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">206</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saint-vincent-and-the-grenadines/">St. Vincent Grenadines</a></td>
<td style="font-weight: bold; text-align:right">7,035</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">114 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">6,641</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">280</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">63,007</td>
<td style="font-weight: bold; text-align:right">1,021</td>
<td style="font-weight: bold; text-align:right">100,334</td>
<td style="font-weight: bold; text-align:right">898,607</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saint-vincent-and-the-grenadines-population/">111,655</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>16</td><td>979</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,508</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">207</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/nauru/">Nauru</a></td>
<td style="font-weight: bold; text-align:right">6,930</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">3,171</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3,758</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">632,184</td>
<td style="font-weight: bold; text-align:right">91</td>
<td style="font-weight: bold; text-align:right">14,517</td>
<td style="font-weight: bold; text-align:right">1,324,302</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/nauru-population/">10,962</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>2</td><td>10,962</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">342,821</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">208</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saint-kitts-and-nevis/">Saint Kitts and Nevis</a></td>
<td style="font-weight: bold; text-align:right">6,355</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">45 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">6,189</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">121</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">117,768</td>
<td style="font-weight: bold; text-align:right">834</td>
<td style="font-weight: bold; text-align:right">108,021</td>
<td style="font-weight: bold; text-align:right">2,001,798</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saint-kitts-and-nevis-population/">53,962</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>8</td><td>1,199</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">2,242</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">209</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/turks-and-caicos-islands/">Turks and Caicos</a></td>
<td style="font-weight: bold; text-align:right">6,255</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">36 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">6,144</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">75</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">157,240</td>
<td style="font-weight: bold; text-align:right">905</td>
<td style="font-weight: bold; text-align:right">548,537</td>
<td style="font-weight: bold; text-align:right">13,789,266</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/turks-and-caicos-islands-population/">39,780</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>6</td><td>1,105</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,885</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">210</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/sao-tome-and-principe/">Sao Tome and Principe</a></td>
<td style="font-weight: bold; text-align:right">6,079</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">74 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">5,990</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">15</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">26,731</td>
<td style="font-weight: bold; text-align:right">325</td>
<td style="font-weight: bold; text-align:right">29,036</td>
<td style="font-weight: bold; text-align:right">127,678</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/sao-tome-and-principe-population/">227,416</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>37</td><td>3,073</td><td>8</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">66</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">211</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/cook-islands/">Cook Islands</a></td>
<td style="font-weight: bold; text-align:right">5,827</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">5,802</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">24</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">331,136</td>
<td style="font-weight: bold; text-align:right">57</td>
<td style="font-weight: bold; text-align:right">19,690</td>
<td style="font-weight: bold; text-align:right">1,118,941</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/cook-islands-population/">17,597</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>3</td><td>17,597</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,364</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">212</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/palau/">Palau</a></td>
<td style="font-weight: bold; text-align:right">5,308</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">6 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">5,047</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">255</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">290,547</td>
<td style="font-weight: bold; text-align:right">328</td>
<td style="font-weight: bold; text-align:right">62,460</td>
<td style="font-weight: bold; text-align:right">3,418,906</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/palau-population/">18,269</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>3</td><td>3,045</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">13,958</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">213</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saint-barthelemy/">St. Barth</a></td>
<td style="font-weight: bold; text-align:right">4,845</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">6 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">487,523</td>
<td style="font-weight: bold; text-align:right">604</td>
<td style="font-weight: bold; text-align:right">78,646</td>
<td style="font-weight: bold; text-align:right">7,913,665</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saint-barthelemy-population/">9,938</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>2</td><td>1,656</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">440,431</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">214</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/anguilla/">Anguilla</a></td>
<td style="font-weight: bold; text-align:right">3,496</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">9 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">3,464</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">23</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">228,871</td>
<td style="font-weight: bold; text-align:right">589</td>
<td style="font-weight: bold; text-align:right">51,382</td>
<td style="font-weight: bold; text-align:right">3,363,797</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/anguilla-population/">15,275</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>4</td><td>1,697</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,506</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">215</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/kiribati/">Kiribati</a></td>
<td style="font-weight: bold; text-align:right">3,236</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">13 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2,665</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">558</td>
<td style="font-weight: bold; text-align:right">3</td>
<td style="font-weight: bold; text-align:right">26,273</td>
<td style="font-weight: bold; text-align:right">106</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/kiribati-population/">123,167</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>38</td><td>9,474</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">4,530</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">216</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saint-pierre-and-miquelon/">Saint Pierre Miquelon</a></td>
<td style="font-weight: bold; text-align:right">2,970</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2,449</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">520</td>
<td style="font-weight: bold; text-align:right">1</td>
<td style="font-weight: bold; text-align:right">517,692</td>
<td style="font-weight: bold; text-align:right">174</td>
<td style="font-weight: bold; text-align:right">24,521</td>
<td style="font-weight: bold; text-align:right">4,274,185</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saint-pierre-and-miquelon-population/">5,737</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>2</td><td>5,737</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">90,640</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">217</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/falkland-islands-malvinas/">Falkland Islands</a></td>
<td style="font-weight: bold; text-align:right">1,831</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;"> </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">N/A</td>
<td style="font-weight: bold; text-align:right;">N/A</td>
<td style="text-align:right;font-weight:bold;">N/A</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">496,744</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">8,632</td>
<td style="font-weight: bold; text-align:right">2,341,834</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/falkland-islands-malvinas-population/">3,686</a> </td>
<td data-continent="South America" style="display:none">South America</td>
<td>2</td><td></td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">463,104</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">218</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/montserrat/">Montserrat</a></td>
<td style="font-weight: bold; text-align:right">1,025</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">8 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">1,013</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">4</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">205,082</td>
<td style="font-weight: bold; text-align:right">1,601</td>
<td style="font-weight: bold; text-align:right">14,243</td>
<td style="font-weight: bold; text-align:right">2,849,740</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/montserrat-population/">4,998</a> </td>
<td data-continent="North America" style="display:none">North America</td>
<td>5</td><td>625</td><td>0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">800</td>
</tr>
<tr style="background-color:#F0F0F0">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">219</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><span style="color:#00B5F0; font-style:italic; ">Diamond Princess</span></td>
<td style="font-weight: bold; text-align:right">712</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">13 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">699</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"> </td>
<td data-continent="" style="display:none"></td>
<td></td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">220</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/china-macao-sar/">Macao</a></td>
<td style="font-weight: bold; text-align:right">696</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">5 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">181</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">510</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,043</td>
<td style="font-weight: bold; text-align:right">7</td>
<td style="font-weight: bold; text-align:right">7,615</td>
<td style="font-weight: bold; text-align:right">11,412</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/china-macao-sar-population/">667,295</a> </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>959</td><td>133,459</td><td>88</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">764</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">221</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/wallis-and-futuna-islands/">Wallis and Futuna</a></td>
<td style="font-weight: bold; text-align:right">456</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">7 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">438</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">11</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">42,066</td>
<td style="font-weight: bold; text-align:right">646</td>
<td style="font-weight: bold; text-align:right">20,508</td>
<td style="font-weight: bold; text-align:right">1,891,882</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/wallis-and-futuna-islands-population/">10,840</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>24</td><td>1,549</td><td>1</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,015</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">222</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/marshall-islands/">Marshall Islands</a></td>
<td style="font-weight: bold; text-align:right">47</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;"> </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">18</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">29</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">783</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/marshall-islands-population/">60,000</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>1,277</td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">483</td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">223</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/micronesia/">Micronesia</a></td>
<td style="font-weight: bold; text-align:right">38</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;"> </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">33</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">5</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">323</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">21,923</td>
<td style="font-weight: bold; text-align:right">186,628</td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/micronesia-population/">117,469</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>3,091</td><td></td><td>5</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">43</td>
</tr>
<tr style="background-color:#EAF7D5">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">224</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/holy-see/">Vatican City</a></td>
<td style="font-weight: bold; text-align:right">29</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;"> </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">29</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">36,025</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/holy-see-population/">805</a> </td>
<td data-continent="Europe" style="display:none">Europe</td>
<td>28</td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">225</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/niue/">Niue</a></td>
<td style="font-weight: bold; text-align:right">26</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;"> </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">23</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">15,777</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/niue-population/">1,648</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>63</td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">1,820</td>
</tr>
<tr style="background-color:#F0F0F0">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">226</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/western-sahara/">Western Sahara</a></td>
<td style="font-weight: bold; text-align:right">10</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">1 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">9</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">16</td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/western-sahara-population/">627,136</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>62,714</td><td>627,136</td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
</tr>
<tr style="background-color:#F0F0F0">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">227</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><span style="color:#00B5F0; font-style:italic; ">MS Zaandam</span></td>
<td style="font-weight: bold; text-align:right">9</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;">2 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">7</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"> </td>
<td data-continent="" style="display:none"></td>
<td></td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">228</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/tuvalu/">Tuvalu</a></td>
<td style="font-weight: bold; text-align:right">3</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;"> </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">3</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">248</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/tuvalu-population/">12,087</a> </td>
<td data-continent="Australia/Oceania" style="display:none">Australia/Oceania</td>
<td>4,029</td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">248</td>
</tr>
<tr style="background-color:#EAF7D5">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">229</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/saint-helena/">Saint Helena</a></td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="font-weight: bold; text-align:right;"> </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">2</td>
<td style="font-weight: bold; text-align:right;"></td>
<td style="text-align:right;font-weight:bold;">0</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">327</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"><a href="/world-population/saint-helena-population/">6,114</a> </td>
<td data-continent="Africa" style="display:none">Africa</td>
<td>3,057</td><td></td><td></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right"></td>
</tr>
<tr style="">
<td style="font-size:12px;color: grey;text-align:center;vertical-align:middle;">230</td>
<td style="font-weight: bold; font-size:15px; text-align:left;"><a class="mt_a" href="country/china/">China</a></td>
<td style="font-weight: bold; text-align:right">227,143</td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">+113</td>
<td style="font-weight: bold; text-align:right;">5,226 </td>
<td style="font-weight: bold;
text-align:right;"></td>
<td style="font-weight: bold; text-align:right">220,778</td>
<td style="font-weight: bold; text-align:right;background-color:#c8e6c9; color:#000">+93</td>
<td style="text-align:right;font-weight:bold;">1,139</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">158</td>
<td style="font-weight: bold; text-align:right">4</td>
<td style="font-weight: bold; text-align:right">160,000,000</td>
<td style="font-weight: bold; text-align:right">111,163</td>
<td style="font-weight: bold; text-align:right">1,439,323,776 </td>
<td data-continent="Asia" style="display:none">Asia</td>
<td>6,337</td><td>275,416</td><td>9</td>
<td style="font-weight: bold; text-align:right">0.08</td>
<td style="font-weight: bold; text-align:right"></td>
<td style="font-weight: bold; text-align:right">0.8</td>
</tr>
</tbody>, '\n', <tbody class="body_continents">
<tr class="row_continent total_row" data-continent="North America" style="display: none">
<td></td>
<td><strong>Total:</strong></td>
<td>107,794,852</td>
<td style="background-color:#FFEEAA; color:#000;">+34,885</td>
<td>1,494,690</td>
<td style="background-color:red; color:#fff">+74</td>
<td>100,746,314</td>
<td style="background-color:#c8e6c9; color:#000">+19,748</td>
<td>5,553,848</td>
<td>9,502</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="North America" style="display:none;">North America</td>
<td> </td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="row_continent total_row" data-continent="Asia" style="display: none">
<td></td>
<td><strong>Total:</strong></td>
<td>163,765,129</td>
<td style="background-color:#FFEEAA; color:#000;">+41,272</td>
<td>1,442,533</td>
<td style="background-color:red; color:#fff">+39</td>
<td>157,775,292</td>
<td style="background-color:#c8e6c9; color:#000">+6,032</td>
<td>4,547,304</td>
<td>11,043</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Asia" style="display:none;">Asia</td>
<td> </td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="row_continent total_row" data-continent="South America" style="display: none">
<td></td>
<td><strong>Total:</strong></td>
<td>60,877,685</td>
<td style=""></td>
<td>1,309,819</td>
<td style=""></td>
<td>57,886,539</td>
<td style="background-color:#c8e6c9; color:#000"></td>
<td>1,681,327</td>
<td>10,454</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="South America" style="display:none;">South America</td>
<td> </td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="row_continent total_row" data-continent="Europe" style="display: none">
<td></td>
<td><strong>Total:</strong></td>
<td>209,911,879</td>
<td style=""></td>
<td>1,863,623</td>
<td style=""></td>
<td>198,908,016</td>
<td style="background-color:#c8e6c9; color:#000"></td>
<td>9,140,240</td>
<td>6,729</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Europe" style="display:none;">Europe</td>
<td> </td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="row_continent total_row" data-continent="Australia/Oceania" style="display: none">
<td></td>
<td><strong>Total:</strong></td>
<td>10,492,349</td>
<td style="background-color:#FFEEAA; color:#000;">+30,830</td>
<td>14,997</td>
<td style="background-color:red; color:#fff">+55</td>
<td>9,945,183</td>
<td style="">+0</td>
<td>532,169</td>
<td>176</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Australia/Oceania" style="display:none;">Australia/Oceania</td>
<td> </td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="row_continent total_row" data-continent="Africa" style="display: none">
<td></td>
<td><strong>Total:</strong></td>
<td>12,431,054</td>
<td style=""></td>
<td>256,378</td>
<td style=""></td>
<td>11,578,374</td>
<td style=""></td>
<td>596,302</td>
<td>1,005</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="Africa" style="display:none;">Africa</td>
<td> </td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="row_continent total_row" data-continent="" style="display: none">
<td></td>
<td><strong>Total:</strong></td>
<td>721</td>
<td style=""></td>
<td>15</td>
<td style=""></td>
<td>706</td>
<td style=""></td>
<td>0</td>
<td>0</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td data-continent="" style="display:none;"></td>
<td> </td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>, '\n', <tbody class="total_row_body body_world">
<tr class="total_row">
<td></td>
<td><strong>Total:</strong></td>
<td>565,273,669</td>
<td style="background-color:#FFEEAA; color:#000;">+106,987</td>
<td>6,382,055</td>
<td style="background-color:red; color:#fff">+168</td>
<td>536,840,424</td>
<td style="background-color:#c8e6c9; color:#000">+61,318</td>
<td>22,051,190</td>
<td>38,909</td>
<td>72,519.3</td>
<td>818.8</td>
<td></td>
<td></td>
<td></td>
<td data-continent="all" style="display:none">All</td>
<td>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>, '\n']
print(tabela.find_all('tr')[1].find_all('td'))
[<td></td>, <td style="text-align:left;"> <nobr>North America</nobr> </td>, <td>107,794,852</td>, <td>+34,885</td>, <td>1,494,690</td>, <td>+74</td>, <td>100,746,314</td>, <td>+19,748</td>, <td>5,553,848</td>, <td>9,502</td>, <td></td>, <td></td>, <td></td>, <td></td>, <td></td>, <td data-continent="North America" style="display:none;">North America</td>, <td> </td>, <td></td>, <td></td>, <td></td>, <td></td>, <td></td>]
print([i.text for i in tabela.find_all('tr')[1].find_all('td')])
['', '\nNorth America\n', '107,794,852', '+34,885', '1,494,690', '+74', '100,746,314', '+19,748', '5,553,848', '9,502', '', '', '', '', '', 'North America', '\n', '', '', '', '', '']
for j in tabela.find_all('tr')[1:]:
row_data = j.find_all('td')
registros = [i.text for i in row_data]
length = len(df)
df.loc[length] = registros
df.head(20)
| # | Country,Other | TotalCases | NewCases | TotalDeaths | NewDeaths | TotalRecovered | NewRecovered | ActiveCases | Serious,Critical | ... | TotalTests | Tests/1M pop | Population | Continent | 1 Caseevery X ppl | 1 Deathevery X ppl | 1 Testevery X ppl | New Cases/1M pop | New Deaths/1M pop | Active Cases/1M pop | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \nNorth America\n | 107,794,852 | +34,885 | 1,494,690 | +74 | 100,746,314 | +19,748 | 5,553,848 | 9,502 | ... | North America | \n | |||||||||
| 1 | \nAsia\n | 163,765,129 | +41,272 | 1,442,533 | +39 | 157,775,292 | +6,032 | 4,547,304 | 11,043 | ... | Asia | \n | |||||||||
| 2 | \nSouth America\n | 60,877,685 | 1,309,819 | 57,886,539 | +10,093 | 1,681,327 | 10,454 | ... | South America | \n | |||||||||||
| 3 | \nEurope\n | 209,911,879 | 1,863,623 | 198,908,016 | +25,445 | 9,140,240 | 6,729 | ... | Europe | \n | |||||||||||
| 4 | \nOceania\n | 10,492,349 | +30,830 | 14,997 | +55 | 9,945,183 | 532,169 | 176 | ... | Australia/Oceania | \n | ||||||||||
| 5 | \nAfrica\n | 12,431,054 | 256,378 | 11,578,374 | 596,302 | 1,005 | ... | Africa | \n | ||||||||||||
| 6 | \n\n | 721 | 15 | 706 | 0 | 0 | ... | \n | |||||||||||||
| 7 | World | 565,273,669 | +106,987 | 6,382,055 | +168 | 536,840,424 | +61,318 | 22,051,190 | 38,909 | ... | All | \n | |||||||||
| 8 | 1 | USA | 91,060,225 | 1,048,232 | 86,371,941 | 3,640,052 | 4,180 | ... | 1,059,620,672 | North America | |||||||||||
| 9 | 2 | India | 43,704,925 | 525,557 | 43,028,356 | 151,012 | 698 | ... | 867,769,574 | 616,518 | 1,407,532,492 | Asia | 32 | 2,678 | 2 | 107 | |||||
| 10 | 3 | Brazil | 33,142,158 | 674,846 | 31,451,590 | 1,015,722 | 8,318 | ... | 63,776,166 | 295,774 | 215,624,945 | South America | 7 | 320 | 3 | 4,711 | |||||
| 11 | 4 | France | 32,795,874 | 150,468 | 30,363,245 | 2,282,161 | 869 | ... | 271,490,188 | 4,140,684 | 65,566,505 | Europe | 2 | 436 | 0 | 34,807 | |||||
| 12 | 5 | Germany | 29,460,249 | 142,284 | 27,548,900 | 1,769,065 | 1,238 | ... | 122,332,384 | 1,450,683 | 84,327,414 | Europe | 3 | 593 | 1 | 20,979 | |||||
| 13 | 6 | UK | 23,075,360 | 181,580 | 22,325,335 | 568,445 | 146 | ... | 522,526,476 | 7,615,952 | 68,609,479 | Europe | 3 | 378 | 0 | 8,285 | |||||
| 14 | 7 | Italy | 19,887,543 | 169,601 | 18,294,517 | 1,423,425 | 388 | ... | 231,776,628 | 3,844,904 | 60,281,506 | Europe | 3 | 355 | 0 | 23,613 | |||||
| 15 | 8 | S. Korea | 18,680,142 | +38,864 | 24,712 | +16 | 18,304,752 | +3,413 | 350,678 | 65 | ... | 15,804,065 | 307,719 | 51,358,685 | Asia | 3 | 2,078 | 3 | 757 | 0.3 | 6,828 |
| 16 | 9 | Russia | 18,476,477 | 381,754 | 17,900,518 | 194,205 | 2,300 | ... | 273,400,000 | 1,871,816 | 146,061,390 | Europe | 8 | 383 | 1 | 1,330 | |||||
| 17 | 10 | Turkey | 15,297,539 | 99,088 | 15,096,774 | 101,677 | 975 | ... | 162,743,369 | 1,888,403 | 86,180,421 | Asia | 6 | 870 | 1 | 1,180 | |||||
| 18 | 11 | Spain | 13,032,841 | 108,948 | 12,370,046 | 553,847 | 339 | ... | 471,036,328 | 10,066,705 | 46,791,511 | Europe | 4 | 429 | 0 | 11,836 | |||||
| 19 | 12 | Vietnam | 10,758,189 | 43,090 | 9,793,800 | 921,299 | 36 | ... | 85,826,548 | 865,924 | 99,115,541 | Asia | 9 | 2,300 | 1 | 9,295 |
20 rows × 22 columns
df.drop(df.index[0:7], inplace=True) # Deleta as primeiras linhas
df.drop(df.index[222:229], inplace=True) # Deleta as últimas linhas
df.reset_index(inplace=True, drop=True) # Deleta a coluna #
df.drop('#', inplace=True, axis=1)
df.head(20)
| Country,Other | TotalCases | NewCases | TotalDeaths | NewDeaths | TotalRecovered | NewRecovered | ActiveCases | Serious,Critical | Tot Cases/1M pop | ... | TotalTests | Tests/1M pop | Population | Continent | 1 Caseevery X ppl | 1 Deathevery X ppl | 1 Testevery X ppl | New Cases/1M pop | New Deaths/1M pop | Active Cases/1M pop | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | World | 565,273,669 | +106,987 | 6,382,055 | +168 | 536,840,424 | +61,318 | 22,051,190 | 38,909 | 72,519 | ... | All | \n | ||||||||
| 1 | USA | 91,060,225 | 1,048,232 | 86,371,941 | 3,640,052 | 4,180 | ... | 1,059,620,672 | North America | ||||||||||||
| 2 | India | 43,704,925 | 525,557 | 43,028,356 | 151,012 | 698 | 31,051 | ... | 867,769,574 | 616,518 | 1,407,532,492 | Asia | 32 | 2,678 | 2 | 107 | |||||
| 3 | Brazil | 33,142,158 | 674,846 | 31,451,590 | 1,015,722 | 8,318 | 153,703 | ... | 63,776,166 | 295,774 | 215,624,945 | South America | 7 | 320 | 3 | 4,711 | |||||
| 4 | France | 32,795,874 | 150,468 | 30,363,245 | 2,282,161 | 869 | 500,192 | ... | 271,490,188 | 4,140,684 | 65,566,505 | Europe | 2 | 436 | 0 | 34,807 | |||||
| 5 | Germany | 29,460,249 | 142,284 | 27,548,900 | 1,769,065 | 1,238 | 349,356 | ... | 122,332,384 | 1,450,683 | 84,327,414 | Europe | 3 | 593 | 1 | 20,979 | |||||
| 6 | UK | 23,075,360 | 181,580 | 22,325,335 | 568,445 | 146 | 336,329 | ... | 522,526,476 | 7,615,952 | 68,609,479 | Europe | 3 | 378 | 0 | 8,285 | |||||
| 7 | Italy | 19,887,543 | 169,601 | 18,294,517 | 1,423,425 | 388 | 329,911 | ... | 231,776,628 | 3,844,904 | 60,281,506 | Europe | 3 | 355 | 0 | 23,613 | |||||
| 8 | S. Korea | 18,680,142 | +38,864 | 24,712 | +16 | 18,304,752 | +3,413 | 350,678 | 65 | 363,719 | ... | 15,804,065 | 307,719 | 51,358,685 | Asia | 3 | 2,078 | 3 | 757 | 0.3 | 6,828 |
| 9 | Russia | 18,476,477 | 381,754 | 17,900,518 | 194,205 | 2,300 | 126,498 | ... | 273,400,000 | 1,871,816 | 146,061,390 | Europe | 8 | 383 | 1 | 1,330 | |||||
| 10 | Turkey | 15,297,539 | 99,088 | 15,096,774 | 101,677 | 975 | 177,506 | ... | 162,743,369 | 1,888,403 | 86,180,421 | Asia | 6 | 870 | 1 | 1,180 | |||||
| 11 | Spain | 13,032,841 | 108,948 | 12,370,046 | 553,847 | 339 | 278,530 | ... | 471,036,328 | 10,066,705 | 46,791,511 | Europe | 4 | 429 | 0 | 11,836 | |||||
| 12 | Vietnam | 10,758,189 | 43,090 | 9,793,800 | 921,299 | 36 | 108,542 | ... | 85,826,548 | 865,924 | 99,115,541 | Asia | 9 | 2,300 | 1 | 9,295 | |||||
| 13 | Japan | 9,903,381 | 31,494 | 9,389,831 | 482,056 | 100 | 78,791 | ... | 58,169,163 | 462,794 | 125,691,242 | Asia | 13 | 3,991 | 2 | 3,835 | |||||
| 14 | Argentina | 9,426,171 | 129,145 | 9,223,351 | +3,668 | 73,675 | 393 | 204,751 | ... | 35,716,069 | 775,808 | 46,037,228 | South America | 5 | 356 | 1 | 1,600 | ||||
| 15 | Australia | 8,683,848 | +30,830 | 10,570 | +55 | 8,278,603 | 394,675 | 144 | 332,712 | ... | 75,046,362 | 2,875,318 | 26,100,194 | Australia/Oceania | 3 | 2,469 | 0 | 1,181 | 2 | 15,122 | |
| 16 | Netherlands | 8,267,718 | 22,417 | 8,088,398 | 156,903 | 60 | 480,352 | ... | 21,107,399 | 1,226,334 | 17,211,781 | Europe | 2 | 768 | 1 | 9,116 | |||||
| 17 | Iran | 7,265,251 | 141,464 | 7,066,475 | 57,312 | 413 | 84,309 | ... | 52,690,831 | 611,445 | 86,174,268 | Asia | 12 | 609 | 2 | 665 | |||||
| 18 | Mexico | 6,373,876 | +34,885 | 326,335 | +74 | 5,435,342 | +19,748 | 612,199 | 4,798 | 48,404 | ... | 17,084,916 | 129,744 | 131,681,236 | North America | 21 | 404 | 8 | 265 | 0.6 | 4,649 |
| 19 | Colombia | 6,198,848 | 140,202 | 6,008,044 | 50,602 | 342 | 119,247 | ... | 35,662,857 | 686,045 | 51,983,287 | South America | 8 | 371 | 1 | 973 |
20 rows × 21 columns
# Exportando para csv
df.to_csv('dados_covid.csv', index = False)
# Lendo o arquivo csv
dados = pd.read_csv('dados_covid.csv')
dados
| Country,Other | TotalCases | NewCases | TotalDeaths | NewDeaths | TotalRecovered | NewRecovered | ActiveCases | Serious,Critical | Tot Cases/1M pop | ... | TotalTests | Tests/1M pop | Population | Continent | 1 Caseevery X ppl | 1 Deathevery X ppl | 1 Testevery X ppl | New Cases/1M pop | New Deaths/1M pop | Active Cases/1M pop | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | World | 565,273,669 | +106,987 | 6,382,055 | 168.0 | 536,840,424 | +61,318 | 22,051,190 | 38,909 | 72,519 | ... | NaN | NaN | NaN | All | \n | NaN | NaN | NaN | NaN | NaN |
| 1 | USA | 91,060,225 | NaN | 1,048,232 | NaN | 86,371,941 | NaN | 3,640,052 | 4,180 | NaN | ... | 1,059,620,672 | NaN | North America | NaN | NaN | NaN | NaN | NaN | NaN | |
| 2 | India | 43,704,925 | NaN | 525,557 | NaN | 43,028,356 | NaN | 151,012 | 698 | 31,051 | ... | 867,769,574 | 616,518 | 1,407,532,492 | Asia | 32 | 2,678 | 2.0 | NaN | NaN | 107 |
| 3 | Brazil | 33,142,158 | NaN | 674,846 | NaN | 31,451,590 | NaN | 1,015,722 | 8,318 | 153,703 | ... | 63,776,166 | 295,774 | 215,624,945 | South America | 7 | 320 | 3.0 | NaN | NaN | 4,711 |
| 4 | France | 32,795,874 | NaN | 150,468 | NaN | 30,363,245 | NaN | 2,282,161 | 869 | 500,192 | ... | 271,490,188 | 4,140,684 | 65,566,505 | Europe | 2 | 436 | 0.0 | NaN | NaN | 34,807 |
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 227 | Total: | 209,911,879 | NaN | 1,863,623 | NaN | 198,908,016 | NaN | 9,140,240 | 6,729 | NaN | ... | NaN | NaN | NaN | Europe | NaN | NaN | NaN | NaN | NaN | |
| 228 | Total: | 10,492,349 | +30,830 | 14,997 | 55.0 | 9,945,183 | +0 | 532,169 | 176 | NaN | ... | NaN | NaN | NaN | Australia/Oceania | NaN | NaN | NaN | NaN | NaN | |
| 229 | Total: | 12,431,054 | NaN | 256,378 | NaN | 11,578,374 | NaN | 596,302 | 1,005 | NaN | ... | NaN | NaN | NaN | Africa | NaN | NaN | NaN | NaN | NaN | |
| 230 | Total: | 721 | NaN | 15 | NaN | 706 | NaN | 0 | 0 | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | |
| 231 | Total: | 565,273,669 | +106,987 | 6,382,055 | 168.0 | 536,840,424 | +61,318 | 22,051,190 | 38,909 | 72,519.3 | ... | NaN | NaN | NaN | All | \n | NaN | NaN | NaN | NaN | NaN |
232 rows × 21 columns
import requests
import pandas as pd
url = 'http://www.ffiec.gov/census/report.aspx?year=2011&state=01&report=demographic&msa=11500'
# 'http://www.ffiec.gov/census/report.aspx?year=2011&state=01&report=
# demographic&msa=11500'
html = requests.get(url).content
df_list = pd.read_html(html)
df = df_list[-1]
print(df)
df.to_csv('tabela_ffiec.csv')
County Code Tract Code Tract Income Level \
0 15 1.00 Moderate
1 15 2.00 Middle
2 15 3.00 Moderate
3 15 4.00 Moderate
4 15 5.00 Low
5 15 6.00 Low
6 15 8.00 Moderate
7 15 9.00 Upper
8 15 10.00 Upper
9 15 11.00 Upper
10 15 12.00 Middle
11 15 13.00 Moderate
12 15 14.00 Middle
13 15 15.00 Middle
14 15 16.00 Middle
15 15 17.00 Upper
16 15 18.00 Middle
17 15 19.00 Middle
18 15 20.00 Middle
19 15 21.01 Low
20 15 21.02 Upper
21 15 21.03 Middle
22 15 22.00 Middle
23 15 23.00 Moderate
24 15 24.00 Middle
25 15 25.01 Middle
26 15 25.02 Middle
27 15 26.00 Middle
Distressed or Under -served Tract Tract Median Family Income % \
0 No 74.23
1 No 86.40
2 No 59.27
3 No 76.24
4 No 40.54
5 No 30.36
6 No 72.62
7 No 147.52
8 No 142.34
9 No 122.20
10 No 101.99
11 No 71.07
12 No 92.76
13 No 100.88
14 No 92.93
15 No 121.62
16 No 101.16
17 No 97.13
18 No 101.02
19 No 42.57
20 No 167.87
21 No 92.01
22 No 94.29
23 No 75.40
24 No 103.82
25 No 114.30
26 No 95.27
27 No 100.75
2011 HUD Est. MSA/MD non-MSA/MD Median Family Income \
0 $51,500
1 $51,500
2 $51,500
3 $51,500
4 $51,500
5 $51,500
6 $51,500
7 $51,500
8 $51,500
9 $51,500
10 $51,500
11 $51,500
12 $51,500
13 $51,500
14 $51,500
15 $51,500
16 $51,500
17 $51,500
18 $51,500
19 $51,500
20 $51,500
21 $51,500
22 $51,500
23 $51,500
24 $51,500
25 $51,500
26 $51,500
27 $51,500
2011 Est. Tract Median Family Income 2000 Tract Median Family Income \
0 $38,228 $29,615
1 $44,496 $34,468
2 $30,524 $23,644
3 $39,264 $30,417
4 $20,878 $16,172
5 $15,635 $12,113
6 $37,399 $28,971
7 $75,973 $58,854
8 $73,305 $56,786
9 $62,933 $48,750
10 $52,525 $40,688
11 $36,601 $28,355
12 $47,771 $37,005
13 $51,953 $40,247
14 $47,859 $37,074
15 $62,634 $48,520
16 $52,097 $40,359
17 $50,022 $38,750
18 $52,025 $40,302
19 $21,924 $16,985
20 $86,453 $66,970
21 $47,385 $36,708
22 $48,559 $37,618
23 $38,831 $30,081
24 $53,467 $41,417
25 $58,865 $45,600
26 $49,064 $38,008
27 $51,886 $40,194
Tract Population Tract Minority % Minority Population \
0 2279 45.77 1043
1 3084 42.44 1309
2 3545 78.87 2796
3 2777 59.42 1650
4 2372 93.55 2219
5 2439 77.74 1896
6 1475 55.05 812
7 3705 16.22 601
8 5538 15.98 885
9 6096 16.44 1002
10 7545 22.29 1682
11 2481 4.51 112
12 3545 23.30 826
13 5471 8.59 470
14 3822 11.09 424
15 6530 19.91 1300
16 6653 12.63 840
17 19 15.79 3
18 5539 6.32 350
19 2637 30.94 816
20 2651 13.43 356
21 4569 25.52 1166
22 3784 4.97 188
23 4043 15.38 622
24 4357 4.50 196
25 6635 9.25 614
26 4395 3.89 171
27 4263 7.08 302
Owner Occupied Units 1- to 4- Family Units
0 431 894
1 881 1543
2 637 1562
3 908 1335
4 597 1306
5 363 736
6 293 674
7 1214 1606
8 1660 2226
9 1667 2398
10 2219 3155
11 763 1187
12 1166 1581
13 1839 2311
14 1199 1756
15 2091 2651
16 2087 2894
17 5 446
18 1815 2321
19 199 570
20 868 1145
21 947 1759
22 1286 1752
23 1206 1877
24 1447 1807
25 2132 2684
26 1462 1844
27 1463 1918
import requests
# Site Wikipedia
url = 'https://pt.wikipedia.org/wiki/Lista_de_munic%C3%ADpios_do_Esp%C3%ADrito_Santo_por_popula%C3%A7%C3%A3o'
site = requests.get(url)
print(site)
<Response [200]>
# Forma 1. Usando pandas
import pandas as pd
html = site.content
df = pd.read_html(html)[0]
df
| Posição | Município | População | |
|---|---|---|---|
| 0 | 1 | Serra | 527.240 |
| 1 | 2 | Vila Velha | 501.325 |
| 2 | 3 | Cariacica | 383.917 |
| 3 | 4 | Vitória | 365.855 |
| 4 | 5 | Cachoeiro de Itapemirim | 210.589 |
| ... | ... | ... | ... |
| 73 | 74 | Alto Rio Novo | 7 836 |
| 74 | 75 | Apiacá | 7 567 |
| 75 | 76 | Dores do Rio Preto | 6 749 |
| 76 | 77 | Mucurici | 5 524 |
| 77 | 78 | Divino de São Lourenço | 4 304 |
78 rows × 3 columns
# Forma 2. Usando Beautiful Soup
from bs4 import BeautifulSoup
soup = BeautifulSoup(site.text, 'html.parser')
tabela = soup.find_all('table', {'class': 'wikitable sortable'})[0]
print(tabela)
<table class="wikitable sortable"> <tbody><tr> <th>Posição</th> <th>Município</th> <th>População </th></tr> <tr> <td>1</td> <td><a class="image" href="/wiki/Ficheiro:Bandeiradaserra.JPG"><img alt="Bandeiradaserra.JPG" data-file-height="533" data-file-width="800" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/84/Bandeiradaserra.JPG/20px-Bandeiradaserra.JPG" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/84/Bandeiradaserra.JPG/30px-Bandeiradaserra.JPG 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/84/Bandeiradaserra.JPG/40px-Bandeiradaserra.JPG 2x" width="20"/></a> <a href="/wiki/Serra_(Esp%C3%ADrito_Santo)" title="Serra (Espírito Santo)">Serra</a></td> <td>527.240 </td></tr> <tr> <td>2</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Vila_Velha_(Esp%C3%ADrito_Santo).svg"><img alt="Bandeira de Vila Velha (Espírito Santo).svg" data-file-height="657" data-file-width="956" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c9/Bandeira_de_Vila_Velha_%28Esp%C3%ADrito_Santo%29.svg/20px-Bandeira_de_Vila_Velha_%28Esp%C3%ADrito_Santo%29.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c9/Bandeira_de_Vila_Velha_%28Esp%C3%ADrito_Santo%29.svg/30px-Bandeira_de_Vila_Velha_%28Esp%C3%ADrito_Santo%29.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/c/c9/Bandeira_de_Vila_Velha_%28Esp%C3%ADrito_Santo%29.svg/40px-Bandeira_de_Vila_Velha_%28Esp%C3%ADrito_Santo%29.svg.png 2x" width="20"/></a> <a href="/wiki/Vila_Velha" title="Vila Velha">Vila Velha</a></td> <td>501.325 </td></tr> <tr> <td>3</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira-cariacica.jpg"><img alt="Bandeira-cariacica.jpg" data-file-height="1147" data-file-width="1654" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/e/ea/Bandeira-cariacica.jpg/20px-Bandeira-cariacica.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/e/ea/Bandeira-cariacica.jpg/30px-Bandeira-cariacica.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/ea/Bandeira-cariacica.jpg/40px-Bandeira-cariacica.jpg 2x" width="20"/></a> <a href="/wiki/Cariacica" title="Cariacica">Cariacica</a></td> <td>383.917 </td></tr> <tr> <td>4</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Vit%C3%B3ria.svg"><img alt="Bandeira de Vitória.svg" data-file-height="700" data-file-width="1000" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Bandeira_de_Vit%C3%B3ria.svg/20px-Bandeira_de_Vit%C3%B3ria.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Bandeira_de_Vit%C3%B3ria.svg/30px-Bandeira_de_Vit%C3%B3ria.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Bandeira_de_Vit%C3%B3ria.svg/40px-Bandeira_de_Vit%C3%B3ria.svg.png 2x" width="20"/></a> <a href="/wiki/Vit%C3%B3ria_(Esp%C3%ADrito_Santo)" title="Vitória (Espírito Santo)">Vitória</a></td> <td>365.855 </td></tr> <tr> <td>5</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Cachoeiro_de_Itapemirim.svg"><img alt="Bandeira de Cachoeiro de Itapemirim.svg" data-file-height="358" data-file-width="512" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/83/Bandeira_de_Cachoeiro_de_Itapemirim.svg/20px-Bandeira_de_Cachoeiro_de_Itapemirim.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/83/Bandeira_de_Cachoeiro_de_Itapemirim.svg/30px-Bandeira_de_Cachoeiro_de_Itapemirim.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/83/Bandeira_de_Cachoeiro_de_Itapemirim.svg/40px-Bandeira_de_Cachoeiro_de_Itapemirim.svg.png 2x" width="20"/></a> <a href="/wiki/Cachoeiro_de_Itapemirim" title="Cachoeiro de Itapemirim">Cachoeiro de Itapemirim</a></td> <td>210.589 </td></tr> <tr> <td>6</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira-linhares.png"><img alt="Bandeira-linhares.png" data-file-height="266" data-file-width="383" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Bandeira-linhares.png/20px-Bandeira-linhares.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Bandeira-linhares.png/30px-Bandeira-linhares.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Bandeira-linhares.png/40px-Bandeira-linhares.png 2x" width="20"/></a> <a href="/wiki/Linhares_(Esp%C3%ADrito_Santo)" title="Linhares (Espírito Santo)">Linhares</a></td> <td>176.688 </td></tr> <tr> <td>7</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira-saomateus-es.jpg"><img alt="Bandeira-saomateus-es.jpg" data-file-height="1891" data-file-width="2721" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c4/Bandeira-saomateus-es.jpg/20px-Bandeira-saomateus-es.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c4/Bandeira-saomateus-es.jpg/30px-Bandeira-saomateus-es.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/c/c4/Bandeira-saomateus-es.jpg/40px-Bandeira-saomateus-es.jpg 2x" width="20"/></a> <a href="/wiki/S%C3%A3o_Mateus_(Esp%C3%ADrito_Santo)" title="São Mateus (Espírito Santo)">São Mateus</a></td> <td>132.642 </td></tr> <tr> <td>8</td> <td><a class="image" href="/wiki/Ficheiro:BandeiraGuarapari.jpg"><img alt="BandeiraGuarapari.jpg" data-file-height="299" data-file-width="500" decoding="async" height="12" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/2f/BandeiraGuarapari.jpg/20px-BandeiraGuarapari.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/2f/BandeiraGuarapari.jpg/30px-BandeiraGuarapari.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/2f/BandeiraGuarapari.jpg/40px-BandeiraGuarapari.jpg 2x" width="20"/></a> <a href="/wiki/Guarapari" title="Guarapari">Guarapari</a></td> <td>126.701 </td></tr> <tr> <td>9</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira-colatina.png"><img alt="Bandeira-colatina.png" data-file-height="654" data-file-width="967" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/07/Bandeira-colatina.png/20px-Bandeira-colatina.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/07/Bandeira-colatina.png/30px-Bandeira-colatina.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/07/Bandeira-colatina.png/40px-Bandeira-colatina.png 2x" width="20"/></a> <a href="/wiki/Colatina" title="Colatina">Colatina</a></td> <td>123.400 </td></tr> <tr> <td>10</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_aracruz_es.png"><img alt="Bandeira aracruz es.png" data-file-height="216" data-file-width="309" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c7/Bandeira_aracruz_es.png/20px-Bandeira_aracruz_es.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c7/Bandeira_aracruz_es.png/30px-Bandeira_aracruz_es.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/c/c7/Bandeira_aracruz_es.png/40px-Bandeira_aracruz_es.png 2x" width="20"/></a> <a href="/wiki/Aracruz" title="Aracruz">Aracruz</a></td> <td>103.101 </td></tr> <tr> <td>11</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira-viana-es.jpg"><img alt="Bandeira-viana-es.jpg" data-file-height="141" data-file-width="213" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/7d/Bandeira-viana-es.jpg/20px-Bandeira-viana-es.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/7d/Bandeira-viana-es.jpg/30px-Bandeira-viana-es.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/7d/Bandeira-viana-es.jpg/40px-Bandeira-viana-es.jpg 2x" width="20"/></a> <a href="/wiki/Viana_(Esp%C3%ADrito_Santo)" title="Viana (Espírito Santo)">Viana</a></td> <td>79.500 </td></tr> <tr> <td>12</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Nova_Ven%C3%A9cia.png"><img alt="Bandeira de Nova Venécia.png" data-file-height="898" data-file-width="1245" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Bandeira_de_Nova_Ven%C3%A9cia.png/20px-Bandeira_de_Nova_Ven%C3%A9cia.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Bandeira_de_Nova_Ven%C3%A9cia.png/30px-Bandeira_de_Nova_Ven%C3%A9cia.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Bandeira_de_Nova_Ven%C3%A9cia.png/40px-Bandeira_de_Nova_Ven%C3%A9cia.png 2x" width="20"/></a> <a href="/wiki/Nova_Ven%C3%A9cia" title="Nova Venécia">Nova Venécia</a></td> <td>50.434 </td></tr> <tr> <td>13</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Barra_de_S%C3%A3o_Francisco.jpg"><img alt="Bandeira de Barra de São Francisco.jpg" data-file-height="867" data-file-width="1418" decoding="async" height="12" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/29/Bandeira_de_Barra_de_S%C3%A3o_Francisco.jpg/20px-Bandeira_de_Barra_de_S%C3%A3o_Francisco.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/29/Bandeira_de_Barra_de_S%C3%A3o_Francisco.jpg/30px-Bandeira_de_Barra_de_S%C3%A3o_Francisco.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/29/Bandeira_de_Barra_de_S%C3%A3o_Francisco.jpg/40px-Bandeira_de_Barra_de_S%C3%A3o_Francisco.jpg 2x" width="20"/></a> <a href="/wiki/Barra_de_S%C3%A3o_Francisco" title="Barra de São Francisco">Barra de São Francisco</a></td> <td>44.979 </td></tr> <tr> <td>14</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Santa_Maria_de_Jetib%C3%A1_-_ES.svg"><img alt="Bandeira de Santa Maria de Jetibá - ES.svg" data-file-height="500" data-file-width="750" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/d/d6/Bandeira_de_Santa_Maria_de_Jetib%C3%A1_-_ES.svg/20px-Bandeira_de_Santa_Maria_de_Jetib%C3%A1_-_ES.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/d6/Bandeira_de_Santa_Maria_de_Jetib%C3%A1_-_ES.svg/30px-Bandeira_de_Santa_Maria_de_Jetib%C3%A1_-_ES.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/d6/Bandeira_de_Santa_Maria_de_Jetib%C3%A1_-_ES.svg/40px-Bandeira_de_Santa_Maria_de_Jetib%C3%A1_-_ES.svg.png 2x" width="20"/></a> <a href="/wiki/Santa_Maria_de_Jetib%C3%A1" title="Santa Maria de Jetibá">Santa Maria de Jetibá</a></td> <td>41.015 </td></tr> <tr> <td>15</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira-marataizes.jpg"><img alt="Bandeira-marataizes.jpg" data-file-height="149" data-file-width="250" decoding="async" height="12" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/03/Bandeira-marataizes.jpg/20px-Bandeira-marataizes.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/03/Bandeira-marataizes.jpg/30px-Bandeira-marataizes.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/03/Bandeira-marataizes.jpg/40px-Bandeira-marataizes.jpg 2x" width="20"/></a> <a href="/wiki/Marata%C3%ADzes" title="Marataízes">Marataízes</a></td> <td>38.883 </td></tr> <tr> <td>16</td> <td><a href="/wiki/S%C3%A3o_Gabriel_da_Palha" title="São Gabriel da Palha">São Gabriel da Palha</a></td> <td>38.522 </td></tr> <tr> <td>17</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_castelo_es.png"><img alt="Bandeira de castelo es.png" data-file-height="1000" data-file-width="1500" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/12/Bandeira_de_castelo_es.png/20px-Bandeira_de_castelo_es.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/12/Bandeira_de_castelo_es.png/30px-Bandeira_de_castelo_es.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/12/Bandeira_de_castelo_es.png/40px-Bandeira_de_castelo_es.png 2x" width="20"/></a> <a href="/wiki/Castelo_(Esp%C3%ADrito_Santo)" title="Castelo (Espírito Santo)">Castelo</a></td> <td>38.070 <sup class="reference" id="cite_ref-2"><a href="#cite_note-2"><span>[</span>2<span>]</span></a></sup> </td></tr> <tr> <td>18</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_Itapemirim.png"><img alt="Bandeira Itapemirim.png" data-file-height="553" data-file-width="898" decoding="async" height="12" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Bandeira_Itapemirim.png/20px-Bandeira_Itapemirim.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Bandeira_Itapemirim.png/30px-Bandeira_Itapemirim.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Bandeira_Itapemirim.png/40px-Bandeira_Itapemirim.png 2x" width="20"/></a> <a href="/wiki/Itapemirim" title="Itapemirim">Itapemirim</a></td> <td>34.656 </td></tr> <tr> <td>19</td> <td><a class="image" href="/wiki/Ficheiro:BandeiraDomingosMartinsES.jpg"><img alt="BandeiraDomingosMartinsES.jpg" data-file-height="126" data-file-width="171" decoding="async" height="15" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/a1/BandeiraDomingosMartinsES.jpg/20px-BandeiraDomingosMartinsES.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/a1/BandeiraDomingosMartinsES.jpg/30px-BandeiraDomingosMartinsES.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/a1/BandeiraDomingosMartinsES.jpg/40px-BandeiraDomingosMartinsES.jpg 2x" width="20"/></a> <a href="/wiki/Domingos_Martins" title="Domingos Martins">Domingos Martins</a></td> <td>33.986 </td></tr> <tr> <td>20</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Concei%C3%A7%C3%A3o_da_Barra_-_ES.svg"><img alt="Bandeira de Conceição da Barra - ES.svg" data-file-height="500" data-file-width="750" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/88/Bandeira_de_Concei%C3%A7%C3%A3o_da_Barra_-_ES.svg/20px-Bandeira_de_Concei%C3%A7%C3%A3o_da_Barra_-_ES.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/88/Bandeira_de_Concei%C3%A7%C3%A3o_da_Barra_-_ES.svg/30px-Bandeira_de_Concei%C3%A7%C3%A3o_da_Barra_-_ES.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/88/Bandeira_de_Concei%C3%A7%C3%A3o_da_Barra_-_ES.svg/40px-Bandeira_de_Concei%C3%A7%C3%A3o_da_Barra_-_ES.svg.png 2x" width="20"/></a> <a href="/wiki/Concei%C3%A7%C3%A3o_da_Barra" title="Conceição da Barra">Conceição da Barra</a></td> <td>31.273 </td></tr> <tr> <td>21</td> <td><a class="image" href="/wiki/Ficheiro:Flag_of_Baixo_Guandu_ES.png"><img alt="Flag of Baixo Guandu ES.png" data-file-height="412" data-file-width="579" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Flag_of_Baixo_Guandu_ES.png/20px-Flag_of_Baixo_Guandu_ES.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Flag_of_Baixo_Guandu_ES.png/30px-Flag_of_Baixo_Guandu_ES.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Flag_of_Baixo_Guandu_ES.png/40px-Flag_of_Baixo_Guandu_ES.png 2x" width="20"/></a> <a href="/wiki/Baixo_Guandu" title="Baixo Guandu">Baixo Guandu</a></td> <td>31.132 </td></tr> <tr> <td>22</td> <td><a class="image" href="/wiki/Ficheiro:BandeiraGuacuiES.jpg"><img alt="BandeiraGuacuiES.jpg" data-file-height="135" data-file-width="220" decoding="async" height="12" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b6/BandeiraGuacuiES.jpg/20px-BandeiraGuacuiES.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b6/BandeiraGuacuiES.jpg/30px-BandeiraGuacuiES.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b6/BandeiraGuacuiES.jpg/40px-BandeiraGuacuiES.jpg 2x" width="20"/></a> <a href="/wiki/Gua%C3%A7u%C3%AD" title="Guaçuí">Guaçuí</a></td> <td>31.122 </td></tr> <tr> <td>23</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Jaguar%C3%A9.jpg"><img alt="Bandeira de Jaguaré.jpg" data-file-height="792" data-file-width="1200" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/72/Bandeira_de_Jaguar%C3%A9.jpg/20px-Bandeira_de_Jaguar%C3%A9.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/72/Bandeira_de_Jaguar%C3%A9.jpg/30px-Bandeira_de_Jaguar%C3%A9.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/72/Bandeira_de_Jaguar%C3%A9.jpg/40px-Bandeira_de_Jaguar%C3%A9.jpg 2x" width="20"/></a> <a href="/wiki/Jaguar%C3%A9" title="Jaguaré">Jaguaré</a></td> <td>31.039 </td></tr> <tr> <td>24</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Sooretama_Esp%C3%ADrito_Santo.png"><img alt="Bandeira de Sooretama Espírito Santo.png" data-file-height="657" data-file-width="956" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Bandeira_de_Sooretama_Esp%C3%ADrito_Santo.png/20px-Bandeira_de_Sooretama_Esp%C3%ADrito_Santo.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Bandeira_de_Sooretama_Esp%C3%ADrito_Santo.png/30px-Bandeira_de_Sooretama_Esp%C3%ADrito_Santo.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Bandeira_de_Sooretama_Esp%C3%ADrito_Santo.png/40px-Bandeira_de_Sooretama_Esp%C3%ADrito_Santo.png 2x" width="20"/></a> <a href="/wiki/Sooretama" title="Sooretama">Sooretama</a></td> <td>30.680 </td></tr> <tr> <td>25</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_afonso_claudio.svg"><img alt="Bandeira afonso claudio.svg" data-file-height="540" data-file-width="772" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Bandeira_afonso_claudio.svg/20px-Bandeira_afonso_claudio.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Bandeira_afonso_claudio.svg/30px-Bandeira_afonso_claudio.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Bandeira_afonso_claudio.svg/40px-Bandeira_afonso_claudio.svg.png 2x" width="20"/></a> <a href="/wiki/Afonso_Cl%C3%A1udio" title="Afonso Cláudio">Afonso Cláudio</a></td> <td>30.455 </td></tr> <tr> <td>26</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Alegre_(Esp%C3%ADrito_Santo).png"><img alt="Bandeira de Alegre (Espírito Santo).png" data-file-height="646" data-file-width="988" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/6/63/Bandeira_de_Alegre_%28Esp%C3%ADrito_Santo%29.png/20px-Bandeira_de_Alegre_%28Esp%C3%ADrito_Santo%29.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/6/63/Bandeira_de_Alegre_%28Esp%C3%ADrito_Santo%29.png/30px-Bandeira_de_Alegre_%28Esp%C3%ADrito_Santo%29.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/6/63/Bandeira_de_Alegre_%28Esp%C3%ADrito_Santo%29.png/40px-Bandeira_de_Alegre_%28Esp%C3%ADrito_Santo%29.png 2x" width="20"/></a> <a href="/wiki/Alegre_(Esp%C3%ADrito_Santo)" title="Alegre (Espírito Santo)">Alegre</a></td> <td>29.975 </td></tr> <tr> <td>27</td> <td><a class="image" href="/wiki/Ficheiro:Flag_of_None.svg"><img alt="Flag of none.svg" data-file-height="150" data-file-width="225" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Flag_of_None.svg/20px-Flag_of_None.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Flag_of_None.svg/30px-Flag_of_None.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Flag_of_None.svg/40px-Flag_of_None.svg.png 2x" width="20"/></a> <a href="/wiki/Anchieta_(Esp%C3%ADrito_Santo)" title="Anchieta (Espírito Santo)">Anchieta</a></td> <td>29.779 </td></tr> <tr> <td>28</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_I%C3%BAna_(Esp%C3%ADrito_Santo).jpg"><img alt="Bandeira de Iúna (Espírito Santo).jpg" data-file-height="218" data-file-width="324" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/73/Bandeira_de_I%C3%BAna_%28Esp%C3%ADrito_Santo%29.jpg/20px-Bandeira_de_I%C3%BAna_%28Esp%C3%ADrito_Santo%29.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/73/Bandeira_de_I%C3%BAna_%28Esp%C3%ADrito_Santo%29.jpg/30px-Bandeira_de_I%C3%BAna_%28Esp%C3%ADrito_Santo%29.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/73/Bandeira_de_I%C3%BAna_%28Esp%C3%ADrito_Santo%29.jpg/40px-Bandeira_de_I%C3%BAna_%28Esp%C3%ADrito_Santo%29.jpg 2x" width="20"/></a> <a href="/wiki/I%C3%BAna" title="Iúna">Iúna</a></td> <td>29.290 </td></tr> <tr> <td>29</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Pinheiros_Esp%C3%ADrito_Santo.png"><img alt="Bandeira de Pinheiros Espírito Santo.png" data-file-height="657" data-file-width="956" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/5b/Bandeira_de_Pinheiros_Esp%C3%ADrito_Santo.png/20px-Bandeira_de_Pinheiros_Esp%C3%ADrito_Santo.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/5b/Bandeira_de_Pinheiros_Esp%C3%ADrito_Santo.png/30px-Bandeira_de_Pinheiros_Esp%C3%ADrito_Santo.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/5b/Bandeira_de_Pinheiros_Esp%C3%ADrito_Santo.png/40px-Bandeira_de_Pinheiros_Esp%C3%ADrito_Santo.png 2x" width="20"/></a> <a href="/wiki/Pinheiros_(Esp%C3%ADrito_Santo)" title="Pinheiros (Espírito Santo)">Pinheiros</a></td> <td>27.327 </td></tr> <tr> <td>30</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Ibatiba.svg"><img alt="Bandeira de Ibatiba.svg" data-file-height="803" data-file-width="1131" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Bandeira_de_Ibatiba.svg/20px-Bandeira_de_Ibatiba.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Bandeira_de_Ibatiba.svg/30px-Bandeira_de_Ibatiba.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Bandeira_de_Ibatiba.svg/40px-Bandeira_de_Ibatiba.svg.png 2x" width="20"/></a> <a href="/wiki/Ibatiba" title="Ibatiba">Ibatiba</a></td> <td>26.426 </td></tr> <tr> <td>31</td> <td><a class="image" href="/wiki/Ficheiro:Pedro_Can%C3%A1rio.gif"><img alt="Pedro Canário.gif" data-file-height="702" data-file-width="1006" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/94/Pedro_Can%C3%A1rio.gif/20px-Pedro_Can%C3%A1rio.gif" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/94/Pedro_Can%C3%A1rio.gif/30px-Pedro_Can%C3%A1rio.gif 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/94/Pedro_Can%C3%A1rio.gif/40px-Pedro_Can%C3%A1rio.gif 2x" width="20"/></a> <a href="/wiki/Pedro_Can%C3%A1rio" title="Pedro Canário">Pedro Canário</a></td> <td>26.381 </td></tr> <tr> <td>32</td> <td><a class="image" href="/wiki/Ficheiro:Flag_of_Mimoso_do_Sul_-_ES_-_Brazil.png"><img alt="Flag of Mimoso do Sul - ES - Brazil.png" data-file-height="587" data-file-width="722" decoding="async" height="16" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/59/Flag_of_Mimoso_do_Sul_-_ES_-_Brazil.png/20px-Flag_of_Mimoso_do_Sul_-_ES_-_Brazil.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/59/Flag_of_Mimoso_do_Sul_-_ES_-_Brazil.png/30px-Flag_of_Mimoso_do_Sul_-_ES_-_Brazil.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/59/Flag_of_Mimoso_do_Sul_-_ES_-_Brazil.png/40px-Flag_of_Mimoso_do_Sul_-_ES_-_Brazil.png 2x" width="20"/></a> <a href="/wiki/Mimoso_do_Sul" title="Mimoso do Sul">Mimoso do Sul</a></td> <td>26.115 </td></tr> <tr> <td>33</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Venda_Nova_do_Imigrante_(Esp%C3%ADrito_Santo).png"><img alt="Bandeira de Venda Nova do Imigrante (Espírito Santo).png" data-file-height="96" data-file-width="150" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/16/Bandeira_de_Venda_Nova_do_Imigrante_%28Esp%C3%ADrito_Santo%29.png/20px-Bandeira_de_Venda_Nova_do_Imigrante_%28Esp%C3%ADrito_Santo%29.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/16/Bandeira_de_Venda_Nova_do_Imigrante_%28Esp%C3%ADrito_Santo%29.png/30px-Bandeira_de_Venda_Nova_do_Imigrante_%28Esp%C3%ADrito_Santo%29.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/16/Bandeira_de_Venda_Nova_do_Imigrante_%28Esp%C3%ADrito_Santo%29.png/40px-Bandeira_de_Venda_Nova_do_Imigrante_%28Esp%C3%ADrito_Santo%29.png 2x" width="20"/></a> <a href="/wiki/Venda_Nova_do_Imigrante" title="Venda Nova do Imigrante">Venda Nova do Imigrante</a></td> <td>25.745 </td></tr> <tr> <td>34</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Santa_Teresa_(Esp%C3%ADrito_Santo).jpg"><img alt="Bandeira de Santa Teresa (Espírito Santo).jpg" data-file-height="216" data-file-width="347" decoding="async" height="12" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/a8/Bandeira_de_Santa_Teresa_%28Esp%C3%ADrito_Santo%29.jpg/20px-Bandeira_de_Santa_Teresa_%28Esp%C3%ADrito_Santo%29.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/a8/Bandeira_de_Santa_Teresa_%28Esp%C3%ADrito_Santo%29.jpg/30px-Bandeira_de_Santa_Teresa_%28Esp%C3%ADrito_Santo%29.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/a8/Bandeira_de_Santa_Teresa_%28Esp%C3%ADrito_Santo%29.jpg/40px-Bandeira_de_Santa_Teresa_%28Esp%C3%ADrito_Santo%29.jpg 2x" width="20"/></a> <a href="/wiki/Santa_Teresa_(Esp%C3%ADrito_Santo)" title="Santa Teresa (Espírito Santo)">Santa Teresa</a></td> <td>23.724 </td></tr> <tr> <td>35</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira-pancas.JPG"><img alt="Bandeira-pancas.JPG" data-file-height="395" data-file-width="689" decoding="async" height="11" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Bandeira-pancas.JPG/20px-Bandeira-pancas.JPG" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Bandeira-pancas.JPG/30px-Bandeira-pancas.JPG 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Bandeira-pancas.JPG/40px-Bandeira-pancas.JPG 2x" width="20"/></a> <a href="/wiki/Pancas" title="Pancas">Pancas</a></td> <td>23.306 </td></tr> <tr> <td>36</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira-ecoporanga.png"><img alt="Bandeira-ecoporanga.png" data-file-height="603" data-file-width="860" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Bandeira-ecoporanga.png/20px-Bandeira-ecoporanga.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Bandeira-ecoporanga.png/30px-Bandeira-ecoporanga.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Bandeira-ecoporanga.png/40px-Bandeira-ecoporanga.png 2x" width="20"/></a> <a href="/wiki/Ecoporanga" title="Ecoporanga">Ecoporanga</a></td> <td>22.835 </td></tr> <tr> <td>37</td> <td><a class="image" href="/wiki/Ficheiro:Flag_of_Pi%C3%BAma_ES.png"><img alt="Flag of Piúma ES.png" data-file-height="424" data-file-width="730" decoding="async" height="12" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/86/Flag_of_Pi%C3%BAma_ES.png/20px-Flag_of_Pi%C3%BAma_ES.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/86/Flag_of_Pi%C3%BAma_ES.png/30px-Flag_of_Pi%C3%BAma_ES.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/86/Flag_of_Pi%C3%BAma_ES.png/40px-Flag_of_Pi%C3%BAma_ES.png 2x" width="20"/></a> <a href="/wiki/Pi%C3%BAma" title="Piúma">Piúma</a></td> <td>22.388 </td></tr> <tr> <td>38</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Fund%C3%A3o.svg"><img alt="Bandeira de Fundão.svg" data-file-height="397" data-file-width="567" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Bandeira_de_Fund%C3%A3o.svg/20px-Bandeira_de_Fund%C3%A3o.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Bandeira_de_Fund%C3%A3o.svg/30px-Bandeira_de_Fund%C3%A3o.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Bandeira_de_Fund%C3%A3o.svg/40px-Bandeira_de_Fund%C3%A3o.svg.png 2x" width="20"/></a> <a href="/wiki/Fund%C3%A3o_(Esp%C3%ADrito_Santo)" title="Fundão (Espírito Santo)">Fundão</a></td> <td>21.948 </td></tr> <tr> <td>39</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Vargem_Alta.svg"><img alt="Bandeira de Vargem Alta.svg" data-file-height="1240" data-file-width="1754" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Bandeira_de_Vargem_Alta.svg/20px-Bandeira_de_Vargem_Alta.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Bandeira_de_Vargem_Alta.svg/30px-Bandeira_de_Vargem_Alta.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Bandeira_de_Vargem_Alta.svg/40px-Bandeira_de_Vargem_Alta.svg.png 2x" width="20"/></a> <a href="/wiki/Vargem_Alta" title="Vargem Alta">Vargem Alta</a></td> <td>21.591 </td></tr> <tr> <td>40</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira-riobananal.jpg"><img alt="Bandeira-riobananal.jpg" data-file-height="235" data-file-width="336" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/bc/Bandeira-riobananal.jpg/20px-Bandeira-riobananal.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/bc/Bandeira-riobananal.jpg/30px-Bandeira-riobananal.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/bc/Bandeira-riobananal.jpg/40px-Bandeira-riobananal.jpg 2x" width="20"/></a> <a class="mw-redirect" href="/wiki/Rio_Bananal_(munic%C3%ADpio)" title="Rio Bananal (município)">Rio Bananal</a></td> <td>19.271 </td></tr> <tr> <td>41</td> <td><a class="image" href="/wiki/Ficheiro:BANDEIRA_DE_MONTANHA.jpg"><img alt="BANDEIRA DE MONTANHA.jpg" data-file-height="1502" data-file-width="2103" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/d/da/BANDEIRA_DE_MONTANHA.jpg/20px-BANDEIRA_DE_MONTANHA.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/da/BANDEIRA_DE_MONTANHA.jpg/30px-BANDEIRA_DE_MONTANHA.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/da/BANDEIRA_DE_MONTANHA.jpg/40px-BANDEIRA_DE_MONTANHA.jpg 2x" width="20"/></a> <a href="/wiki/Montanha_(Esp%C3%ADrito_Santo)" title="Montanha (Espírito Santo)">Montanha</a></td> <td>18.894 </td></tr> <tr> <td>42</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Muniz_Freire_(Esp%C3%ADrito_Santo).png"><img alt="Bandeira de Muniz Freire (Espírito Santo).png" data-file-height="577" data-file-width="944" decoding="async" height="12" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Bandeira_de_Muniz_Freire_%28Esp%C3%ADrito_Santo%29.png/20px-Bandeira_de_Muniz_Freire_%28Esp%C3%ADrito_Santo%29.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Bandeira_de_Muniz_Freire_%28Esp%C3%ADrito_Santo%29.png/30px-Bandeira_de_Muniz_Freire_%28Esp%C3%ADrito_Santo%29.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Bandeira_de_Muniz_Freire_%28Esp%C3%ADrito_Santo%29.png/40px-Bandeira_de_Muniz_Freire_%28Esp%C3%ADrito_Santo%29.png 2x" width="20"/></a> <a href="/wiki/Muniz_Freire" title="Muniz Freire">Muniz Freire</a></td> <td>17.319 </td></tr> <tr> <td>43</td> <td><a class="image" href="/wiki/Ficheiro:BandeiradeMarechalFlorianoES.jpg"><img alt="BandeiradeMarechalFlorianoES.jpg" data-file-height="140" data-file-width="228" decoding="async" height="12" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/BandeiradeMarechalFlorianoES.jpg/20px-BandeiradeMarechalFlorianoES.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/BandeiradeMarechalFlorianoES.jpg/30px-BandeiradeMarechalFlorianoES.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/c/c3/BandeiradeMarechalFlorianoES.jpg/40px-BandeiradeMarechalFlorianoES.jpg 2x" width="20"/></a> <a href="/wiki/Marechal_Floriano" title="Marechal Floriano">Marechal Floriano</a></td> <td>16.920 </td></tr> <tr> <td>44</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_joaoneiva.jpg"><img alt="Bandeira joaoneiva.jpg" data-file-height="1366" data-file-width="1946" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Bandeira_joaoneiva.jpg/20px-Bandeira_joaoneiva.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Bandeira_joaoneiva.jpg/30px-Bandeira_joaoneiva.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Bandeira_joaoneiva.jpg/40px-Bandeira_joaoneiva.jpg 2x" width="20"/></a> <a href="/wiki/Jo%C3%A3o_Neiva" title="João Neiva">João Neiva</a></td> <td>16.722 </td></tr> <tr> <td>45</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Muqui_(Esp%C3%ADrito_Santo).gif"><img alt="Bandeira de Muqui (Espírito Santo).gif" data-file-height="718" data-file-width="1064" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Bandeira_de_Muqui_%28Esp%C3%ADrito_Santo%29.gif/20px-Bandeira_de_Muqui_%28Esp%C3%ADrito_Santo%29.gif" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Bandeira_de_Muqui_%28Esp%C3%ADrito_Santo%29.gif/30px-Bandeira_de_Muqui_%28Esp%C3%ADrito_Santo%29.gif 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Bandeira_de_Muqui_%28Esp%C3%ADrito_Santo%29.gif/40px-Bandeira_de_Muqui_%28Esp%C3%ADrito_Santo%29.gif 2x" width="20"/></a> <a href="/wiki/Muqui" title="Muqui">Muqui</a></td> <td>15.526 </td></tr> <tr> <td>46</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira-Manten%C3%B3polis.png"><img alt="Bandeira-Mantenópolis.png" data-file-height="533" data-file-width="800" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/fe/Bandeira-Manten%C3%B3polis.png/20px-Bandeira-Manten%C3%B3polis.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/fe/Bandeira-Manten%C3%B3polis.png/30px-Bandeira-Manten%C3%B3polis.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/fe/Bandeira-Manten%C3%B3polis.png/40px-Bandeira-Manten%C3%B3polis.png 2x" width="20"/></a> <a href="/wiki/Manten%C3%B3polis" title="Mantenópolis">Mantenópolis</a></td> <td>15.503 </td></tr> <tr> <td>47</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Boa_Esperan%C3%A7a_Esp%C3%ADrito_Santo.png"><img alt="Bandeira de Boa Esperança Espírito Santo.png" data-file-height="657" data-file-width="956" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/72/Bandeira_de_Boa_Esperan%C3%A7a_Esp%C3%ADrito_Santo.png/20px-Bandeira_de_Boa_Esperan%C3%A7a_Esp%C3%ADrito_Santo.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/72/Bandeira_de_Boa_Esperan%C3%A7a_Esp%C3%ADrito_Santo.png/30px-Bandeira_de_Boa_Esperan%C3%A7a_Esp%C3%ADrito_Santo.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/72/Bandeira_de_Boa_Esperan%C3%A7a_Esp%C3%ADrito_Santo.png/40px-Bandeira_de_Boa_Esperan%C3%A7a_Esp%C3%ADrito_Santo.png 2x" width="20"/></a> <a href="/wiki/Boa_Esperan%C3%A7a_(Esp%C3%ADrito_Santo)" title="Boa Esperança (Espírito Santo)">Boa Esperança</a></td> <td>15.092 </td></tr> <tr> <td>48</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Itagua%C3%A7u_(Esp%C3%ADrito_Santo).jpg"><img alt="Bandeira de Itaguaçu (Espírito Santo).jpg" data-file-height="208" data-file-width="315" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/1e/Bandeira_de_Itagua%C3%A7u_%28Esp%C3%ADrito_Santo%29.jpg/20px-Bandeira_de_Itagua%C3%A7u_%28Esp%C3%ADrito_Santo%29.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/1e/Bandeira_de_Itagua%C3%A7u_%28Esp%C3%ADrito_Santo%29.jpg/30px-Bandeira_de_Itagua%C3%A7u_%28Esp%C3%ADrito_Santo%29.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/1e/Bandeira_de_Itagua%C3%A7u_%28Esp%C3%ADrito_Santo%29.jpg/40px-Bandeira_de_Itagua%C3%A7u_%28Esp%C3%ADrito_Santo%29.jpg 2x" width="20"/></a> <a href="/wiki/Itagua%C3%A7u" title="Itaguaçu">Itaguaçu</a></td> <td>14 728 </td></tr> <tr> <td>49</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Alfredo_Chaves_(Esp%C3%ADrito_Santo).gif"><img alt="Bandeira de Alfredo Chaves (Espírito Santo).gif" data-file-height="500" data-file-width="701" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/6/65/Bandeira_de_Alfredo_Chaves_%28Esp%C3%ADrito_Santo%29.gif/20px-Bandeira_de_Alfredo_Chaves_%28Esp%C3%ADrito_Santo%29.gif" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/6/65/Bandeira_de_Alfredo_Chaves_%28Esp%C3%ADrito_Santo%29.gif/30px-Bandeira_de_Alfredo_Chaves_%28Esp%C3%ADrito_Santo%29.gif 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/6/65/Bandeira_de_Alfredo_Chaves_%28Esp%C3%ADrito_Santo%29.gif/40px-Bandeira_de_Alfredo_Chaves_%28Esp%C3%ADrito_Santo%29.gif 2x" width="20"/></a> <a class="mw-redirect" href="/wiki/Alfredo_Chaves_(Esp%C3%ADrito_Santo)" title="Alfredo Chaves (Espírito Santo)">Alfredo Chaves</a></td> <td>14 396 </td></tr> <tr> <td>50</td> <td><a class="image" href="/wiki/Ficheiro:Es-vila-valerio-bandeira.jpg"><img alt="Es-vila-valerio-bandeira.jpg" data-file-height="218" data-file-width="324" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Es-vila-valerio-bandeira.jpg/20px-Es-vila-valerio-bandeira.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Es-vila-valerio-bandeira.jpg/30px-Es-vila-valerio-bandeira.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Es-vila-valerio-bandeira.jpg/40px-Es-vila-valerio-bandeira.jpg 2x" width="20"/></a> <a href="/wiki/Vila_Val%C3%A9rio" title="Vila Valério">Vila Valério</a></td> <td>14 107 </td></tr> <tr> <td>51</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira-iconha.jpg"><img alt="Bandeira-iconha.jpg" data-file-height="96" data-file-width="150" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/40/Bandeira-iconha.jpg/20px-Bandeira-iconha.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/40/Bandeira-iconha.jpg/30px-Bandeira-iconha.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/40/Bandeira-iconha.jpg/40px-Bandeira-iconha.jpg 2x" width="20"/></a> <a href="/wiki/Iconha" title="Iconha">Iconha</a></td> <td>13 937 </td></tr> <tr> <td>52</td> <td><a class="image" href="/wiki/Ficheiro:Irupi_flag.png"><img alt="Irupi flag.png" data-file-height="218" data-file-width="324" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/07/Irupi_flag.png/20px-Irupi_flag.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/07/Irupi_flag.png/30px-Irupi_flag.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/07/Irupi_flag.png/40px-Irupi_flag.png 2x" width="20"/></a> <a href="/wiki/Irupi" title="Irupi">Irupi</a></td> <td>13 226 </td></tr> <tr> <td>53</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_concei%C3%A7%C3%A3o_do_castelo.jpg"><img alt="Bandeira conceição do castelo.jpg" data-file-height="1254" data-file-width="1121" decoding="async" height="22" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Bandeira_concei%C3%A7%C3%A3o_do_castelo.jpg/20px-Bandeira_concei%C3%A7%C3%A3o_do_castelo.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Bandeira_concei%C3%A7%C3%A3o_do_castelo.jpg/30px-Bandeira_concei%C3%A7%C3%A3o_do_castelo.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Bandeira_concei%C3%A7%C3%A3o_do_castelo.jpg/40px-Bandeira_concei%C3%A7%C3%A3o_do_castelo.jpg 2x" width="20"/></a> <a href="/wiki/Concei%C3%A7%C3%A3o_do_Castelo" title="Conceição do Castelo">Conceição do Castelo</a></td> <td>12 958 </td></tr> <tr> <td>54</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira-maril%C3%A2ndia.png"><img alt="Bandeira-marilândia.png" data-file-height="216" data-file-width="376" decoding="async" height="11" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/48/Bandeira-maril%C3%A2ndia.png/20px-Bandeira-maril%C3%A2ndia.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/48/Bandeira-maril%C3%A2ndia.png/30px-Bandeira-maril%C3%A2ndia.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/48/Bandeira-maril%C3%A2ndia.png/40px-Bandeira-maril%C3%A2ndia.png 2x" width="20"/></a> <a href="/wiki/Maril%C3%A2ndia" title="Marilândia">Marilândia</a></td> <td>12 520 </td></tr> <tr> <td>55</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Governador_Lindenberg_Esp%C3%ADrito_Santo.png"><img alt="Bandeira de Governador Lindenberg Espírito Santo.png" data-file-height="657" data-file-width="956" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/5d/Bandeira_de_Governador_Lindenberg_Esp%C3%ADrito_Santo.png/20px-Bandeira_de_Governador_Lindenberg_Esp%C3%ADrito_Santo.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/5d/Bandeira_de_Governador_Lindenberg_Esp%C3%ADrito_Santo.png/30px-Bandeira_de_Governador_Lindenberg_Esp%C3%ADrito_Santo.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/5d/Bandeira_de_Governador_Lindenberg_Esp%C3%ADrito_Santo.png/40px-Bandeira_de_Governador_Lindenberg_Esp%C3%ADrito_Santo.png 2x" width="20"/></a> <a href="/wiki/Governador_Lindenberg" title="Governador Lindenberg">Governador Lindenberg</a></td> <td>12 607 </td></tr> <tr> <td>56</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Brejetuba.svg"><img alt="Bandeira de Brejetuba.svg" data-file-height="247" data-file-width="400" decoding="async" height="12" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b8/Bandeira_de_Brejetuba.svg/20px-Bandeira_de_Brejetuba.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b8/Bandeira_de_Brejetuba.svg/30px-Bandeira_de_Brejetuba.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b8/Bandeira_de_Brejetuba.svg/40px-Bandeira_de_Brejetuba.svg.png 2x" width="20"/></a> <a href="/wiki/Brejetuba" title="Brejetuba">Brejetuba</a></td> <td>12 360 </td></tr> <tr> <td>57</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Ibira%C3%A7u.svg"><img alt="Bandeira de Ibiraçu.svg" data-file-height="1000" data-file-width="1500" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Bandeira_de_Ibira%C3%A7u.svg/20px-Bandeira_de_Ibira%C3%A7u.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Bandeira_de_Ibira%C3%A7u.svg/30px-Bandeira_de_Ibira%C3%A7u.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Bandeira_de_Ibira%C3%A7u.svg/40px-Bandeira_de_Ibira%C3%A7u.svg.png 2x" width="20"/></a> <a href="/wiki/Ibira%C3%A7u" title="Ibiraçu">Ibiraçu</a></td> <td>12 348 </td></tr> <tr> <td>58</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_S%C3%A3o_Roque_do_Cana%C3%A3.svg"><img alt="Bandeira de São Roque do Canaã.svg" data-file-height="1692" data-file-width="2798" decoding="async" height="12" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b8/Bandeira_de_S%C3%A3o_Roque_do_Cana%C3%A3.svg/20px-Bandeira_de_S%C3%A3o_Roque_do_Cana%C3%A3.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b8/Bandeira_de_S%C3%A3o_Roque_do_Cana%C3%A3.svg/30px-Bandeira_de_S%C3%A3o_Roque_do_Cana%C3%A3.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b8/Bandeira_de_S%C3%A3o_Roque_do_Cana%C3%A3.svg/40px-Bandeira_de_S%C3%A3o_Roque_do_Cana%C3%A3.svg.png 2x" width="20"/></a> <a href="/wiki/S%C3%A3o_Roque_do_Cana%C3%A3" title="São Roque do Canaã">São Roque do Canaã</a></td> <td>12 333 </td></tr> <tr> <td>59</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_do_munic%C3%ADpio_de_Santa_Leopoldina.jpg"><img alt="Bandeira do município de Santa Leopoldina.jpg" data-file-height="2086" data-file-width="3162" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/be/Bandeira_do_munic%C3%ADpio_de_Santa_Leopoldina.jpg/20px-Bandeira_do_munic%C3%ADpio_de_Santa_Leopoldina.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/be/Bandeira_do_munic%C3%ADpio_de_Santa_Leopoldina.jpg/30px-Bandeira_do_munic%C3%ADpio_de_Santa_Leopoldina.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/be/Bandeira_do_munic%C3%ADpio_de_Santa_Leopoldina.jpg/40px-Bandeira_do_munic%C3%ADpio_de_Santa_Leopoldina.jpg 2x" width="20"/></a> <a href="/wiki/Santa_Leopoldina" title="Santa Leopoldina">Santa Leopoldina</a></td> <td>12 305 </td></tr> <tr> <td>60</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Jer%C3%B4nimo_Monteiro_(Esp%C3%ADrito_Santo).jpg"><img alt="Bandeira de Jerônimo Monteiro (Espírito Santo).jpg" data-file-height="96" data-file-width="150" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/73/Bandeira_de_Jer%C3%B4nimo_Monteiro_%28Esp%C3%ADrito_Santo%29.jpg/20px-Bandeira_de_Jer%C3%B4nimo_Monteiro_%28Esp%C3%ADrito_Santo%29.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/73/Bandeira_de_Jer%C3%B4nimo_Monteiro_%28Esp%C3%ADrito_Santo%29.jpg/30px-Bandeira_de_Jer%C3%B4nimo_Monteiro_%28Esp%C3%ADrito_Santo%29.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/73/Bandeira_de_Jer%C3%B4nimo_Monteiro_%28Esp%C3%ADrito_Santo%29.jpg/40px-Bandeira_de_Jer%C3%B4nimo_Monteiro_%28Esp%C3%ADrito_Santo%29.jpg 2x" width="20"/></a> <a href="/wiki/Jer%C3%B4nimo_Monteiro" title="Jerônimo Monteiro">Jerônimo Monteiro</a></td> <td>11 628 </td></tr> <tr> <td>61</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Presidente_Kennedy.svg"><img alt="Bandeira de Presidente Kennedy.svg" data-file-height="512" data-file-width="800" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/42/Bandeira_de_Presidente_Kennedy.svg/20px-Bandeira_de_Presidente_Kennedy.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/42/Bandeira_de_Presidente_Kennedy.svg/30px-Bandeira_de_Presidente_Kennedy.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/42/Bandeira_de_Presidente_Kennedy.svg/40px-Bandeira_de_Presidente_Kennedy.svg.png 2x" width="20"/></a> <a href="/wiki/Presidente_Kennedy_(Esp%C3%ADrito_Santo)" title="Presidente Kennedy (Espírito Santo)">Presidente Kennedy</a></td> <td>11 615 </td></tr> <tr> <td>62</td> <td><a class="image" href="/wiki/Ficheiro:At%C3%ADlio_Vivacqua.jpg"><img alt="Atílio Vivacqua.jpg" data-file-height="350" data-file-width="525" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/1d/At%C3%ADlio_Vivacqua.jpg/20px-At%C3%ADlio_Vivacqua.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/1d/At%C3%ADlio_Vivacqua.jpg/30px-At%C3%ADlio_Vivacqua.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/1d/At%C3%ADlio_Vivacqua.jpg/40px-At%C3%ADlio_Vivacqua.jpg 2x" width="20"/></a> <a href="/wiki/At%C3%ADlio_Viv%C3%A1cqua_(Esp%C3%ADrito_Santo)" title="Atílio Vivácqua (Espírito Santo)">Atílio Vivácqua</a></td> <td>11 487 </td></tr> <tr> <td>63</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira-rionovodoul.jpg"><img alt="Bandeira-rionovodoul.jpg" data-file-height="98" data-file-width="150" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/38/Bandeira-rionovodoul.jpg/20px-Bandeira-rionovodoul.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/38/Bandeira-rionovodoul.jpg/30px-Bandeira-rionovodoul.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/38/Bandeira-rionovodoul.jpg/40px-Bandeira-rionovodoul.jpg 2x" width="20"/></a> <a href="/wiki/Rio_Novo_do_Sul" title="Rio Novo do Sul">Rio Novo do Sul</a></td> <td>11 273 </td></tr> <tr> <td>64</td> <td><a class="image" href="/wiki/Ficheiro:Flag_of_None.svg"><img alt="Flag of none.svg" data-file-height="150" data-file-width="225" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Flag_of_None.svg/20px-Flag_of_None.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Flag_of_None.svg/30px-Flag_of_None.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Flag_of_None.svg/40px-Flag_of_None.svg.png 2x" width="20"/></a> <a href="/wiki/%C3%81gua_Doce_do_Norte" title="Água Doce do Norte">Água Doce do Norte</a></td> <td>11 100 </td></tr> <tr> <td>65</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Laranja_da_Terra.svg"><img alt="Bandeira de Laranja da Terra.svg" data-file-height="455" data-file-width="674" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/22/Bandeira_de_Laranja_da_Terra.svg/20px-Bandeira_de_Laranja_da_Terra.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/22/Bandeira_de_Laranja_da_Terra.svg/30px-Bandeira_de_Laranja_da_Terra.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/22/Bandeira_de_Laranja_da_Terra.svg/40px-Bandeira_de_Laranja_da_Terra.svg.png 2x" width="20"/></a> <a href="/wiki/Laranja_da_Terra" title="Laranja da Terra">Laranja da Terra</a></td> <td>11 006 </td></tr> <tr> <td>66</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Itarana.svg"><img alt="Bandeira de Itarana.svg" data-file-height="174" data-file-width="262" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Bandeira_de_Itarana.svg/20px-Bandeira_de_Itarana.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Bandeira_de_Itarana.svg/30px-Bandeira_de_Itarana.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Bandeira_de_Itarana.svg/40px-Bandeira_de_Itarana.svg.png 2x" width="20"/></a> <a href="/wiki/Itarana" title="Itarana">Itarana</a></td> <td>10 591 </td></tr> <tr> <td>67</td> <td><a class="image" href="/wiki/Ficheiro:Flag_of_None.svg"><img alt="Flag of none.svg" data-file-height="150" data-file-width="225" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Flag_of_None.svg/20px-Flag_of_None.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Flag_of_None.svg/30px-Flag_of_None.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Flag_of_None.svg/40px-Flag_of_None.svg.png 2x" width="20"/></a> <a href="/wiki/S%C3%A3o_Jos%C3%A9_do_Cal%C3%A7ado" title="São José do Calçado">São José do Calçado</a></td> <td>10 587 </td></tr> <tr> <td>68</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Bom_Jesus_do_Norte_(Esp%C3%ADrito_Santo).gif"><img alt="Bandeira de Bom Jesus do Norte (Espírito Santo).gif" data-file-height="718" data-file-width="1064" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Bandeira_de_Bom_Jesus_do_Norte_%28Esp%C3%ADrito_Santo%29.gif/20px-Bandeira_de_Bom_Jesus_do_Norte_%28Esp%C3%ADrito_Santo%29.gif" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Bandeira_de_Bom_Jesus_do_Norte_%28Esp%C3%ADrito_Santo%29.gif/30px-Bandeira_de_Bom_Jesus_do_Norte_%28Esp%C3%ADrito_Santo%29.gif 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Bandeira_de_Bom_Jesus_do_Norte_%28Esp%C3%ADrito_Santo%29.gif/40px-Bandeira_de_Bom_Jesus_do_Norte_%28Esp%C3%ADrito_Santo%29.gif 2x" width="20"/></a> <a href="/wiki/Bom_Jesus_do_Norte" title="Bom Jesus do Norte">Bom Jesus do Norte</a></td> <td>9 949 </td></tr> <tr> <td>69</td> <td><a class="image" href="/wiki/Ficheiro:Bandeiraaguiabranca.png"><img alt="Bandeiraaguiabranca.png" data-file-height="392" data-file-width="569" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/43/Bandeiraaguiabranca.png/20px-Bandeiraaguiabranca.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/43/Bandeiraaguiabranca.png/30px-Bandeiraaguiabranca.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/43/Bandeiraaguiabranca.png/40px-Bandeiraaguiabranca.png 2x" width="20"/></a> <a href="/wiki/%C3%81guia_Branca" title="Águia Branca">Águia Branca</a></td> <td>9 519 </td></tr> <tr> <td>70</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_vila_pavao.svg"><img alt="Bandeira vila pavao.svg" data-file-height="744" data-file-width="1052" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/18/Bandeira_vila_pavao.svg/20px-Bandeira_vila_pavao.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/18/Bandeira_vila_pavao.svg/30px-Bandeira_vila_pavao.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/18/Bandeira_vila_pavao.svg/40px-Bandeira_vila_pavao.svg.png 2x" width="20"/></a> <a href="/wiki/Vila_Pav%C3%A3o" title="Vila Pavão">Vila Pavão</a></td> <td>8 672 </td></tr> <tr> <td>71</td> <td><a class="image" href="/wiki/Ficheiro:Flag_of_None.svg"><img alt="Flag of none.svg" data-file-height="150" data-file-width="225" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Flag_of_None.svg/20px-Flag_of_None.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Flag_of_None.svg/30px-Flag_of_None.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Flag_of_None.svg/40px-Flag_of_None.svg.png 2x" width="20"/></a> <a href="/wiki/Ibitirama" title="Ibitirama">Ibitirama</a></td> <td>8 889 </td></tr> <tr> <td>72</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_S%C3%A3o_Domingos_do_Norte_Esp%C3%ADrito_Santo.png"><img alt="Bandeira de São Domingos do Norte Espírito Santo.png" data-file-height="657" data-file-width="956" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/7e/Bandeira_de_S%C3%A3o_Domingos_do_Norte_Esp%C3%ADrito_Santo.png/20px-Bandeira_de_S%C3%A3o_Domingos_do_Norte_Esp%C3%ADrito_Santo.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/7e/Bandeira_de_S%C3%A3o_Domingos_do_Norte_Esp%C3%ADrito_Santo.png/30px-Bandeira_de_S%C3%A3o_Domingos_do_Norte_Esp%C3%ADrito_Santo.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/7e/Bandeira_de_S%C3%A3o_Domingos_do_Norte_Esp%C3%ADrito_Santo.png/40px-Bandeira_de_S%C3%A3o_Domingos_do_Norte_Esp%C3%ADrito_Santo.png 2x" width="20"/></a> <a href="/wiki/S%C3%A3o_Domingos_do_Norte" title="São Domingos do Norte">São Domingos do Norte</a></td> <td>8 001 </td></tr> <tr> <td>73</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_ponto_belo.jpg"><img alt="Bandeira ponto belo.jpg" data-file-height="333" data-file-width="577" decoding="async" height="12" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/94/Bandeira_ponto_belo.jpg/20px-Bandeira_ponto_belo.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/94/Bandeira_ponto_belo.jpg/30px-Bandeira_ponto_belo.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/94/Bandeira_ponto_belo.jpg/40px-Bandeira_ponto_belo.jpg 2x" width="20"/></a> <a href="/wiki/Ponto_Belo" title="Ponto Belo">Ponto Belo</a></td> <td>7 863 </td></tr> <tr> <td>74</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Alto_Rio_Novo.svg"><img alt="Bandeira de Alto Rio Novo.svg" data-file-height="230" data-file-width="350" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Bandeira_de_Alto_Rio_Novo.svg/20px-Bandeira_de_Alto_Rio_Novo.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Bandeira_de_Alto_Rio_Novo.svg/30px-Bandeira_de_Alto_Rio_Novo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Bandeira_de_Alto_Rio_Novo.svg/40px-Bandeira_de_Alto_Rio_Novo.svg.png 2x" width="20"/></a> <a href="/wiki/Alto_Rio_Novo" title="Alto Rio Novo">Alto Rio Novo</a></td> <td>7 836 </td></tr> <tr> <td>75</td> <td><a class="image" href="/wiki/Ficheiro:Flag_of_None.svg"><img alt="Flag of none.svg" data-file-height="150" data-file-width="225" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Flag_of_None.svg/20px-Flag_of_None.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Flag_of_None.svg/30px-Flag_of_None.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Flag_of_None.svg/40px-Flag_of_None.svg.png 2x" width="20"/></a> <a href="/wiki/Apiac%C3%A1" title="Apiacá">Apiacá</a></td> <td>7 567 </td></tr> <tr> <td>76</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Dores_do_Rio_Preto.svg"><img alt="Bandeira de Dores do Rio Preto.svg" data-file-height="289" data-file-width="427" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/6/6c/Bandeira_de_Dores_do_Rio_Preto.svg/20px-Bandeira_de_Dores_do_Rio_Preto.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/6/6c/Bandeira_de_Dores_do_Rio_Preto.svg/30px-Bandeira_de_Dores_do_Rio_Preto.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/6/6c/Bandeira_de_Dores_do_Rio_Preto.svg/40px-Bandeira_de_Dores_do_Rio_Preto.svg.png 2x" width="20"/></a> <a href="/wiki/Dores_do_Rio_Preto" title="Dores do Rio Preto">Dores do Rio Preto</a></td> <td>6 749 </td></tr> <tr> <td>77</td> <td><a class="image" href="/wiki/Ficheiro:Bandeira_de_Mucurici_Esp%C3%ADrito_Santo.png"><img alt="Bandeira de Mucurici Espírito Santo.png" data-file-height="657" data-file-width="956" decoding="async" height="14" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bandeira_de_Mucurici_Esp%C3%ADrito_Santo.png/20px-Bandeira_de_Mucurici_Esp%C3%ADrito_Santo.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bandeira_de_Mucurici_Esp%C3%ADrito_Santo.png/30px-Bandeira_de_Mucurici_Esp%C3%ADrito_Santo.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bandeira_de_Mucurici_Esp%C3%ADrito_Santo.png/40px-Bandeira_de_Mucurici_Esp%C3%ADrito_Santo.png 2x" width="20"/></a> <a href="/wiki/Mucurici" title="Mucurici">Mucurici</a></td> <td>5 524 </td></tr> <tr> <td>78</td> <td><a class="image" href="/wiki/Ficheiro:Flag_of_None.svg"><img alt="Flag of none.svg" data-file-height="150" data-file-width="225" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Flag_of_None.svg/20px-Flag_of_None.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Flag_of_None.svg/30px-Flag_of_None.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Flag_of_None.svg/40px-Flag_of_None.svg.png 2x" width="20"/></a> <a href="/wiki/Divino_de_S%C3%A3o_Louren%C3%A7o" title="Divino de São Lourenço">Divino de São Lourenço</a></td> <td>4 304 </td></tr></tbody></table>
titulos = [i.text for i in tabela.find_all('th')]
titulos[2] = 'População'
print(titulos)
['Posição', 'Município', 'População']
df = pd.DataFrame(columns = titulos)
for j in tabela.find_all('tr')[1:]:
row_data = j.find_all('td')
row = [i.text for i in row_data]
length = len(df)
df.loc[length] = row
df = df.replace({r'[\n\.\s]':''}, regex=True)
df.to_csv('municipios_es.csv', index = False)
| Posição | Município | População | |
|---|---|---|---|
| 0 | 1 | Serra | 527240 |
| 1 | 2 | VilaVelha | 501325 |
| 2 | 3 | Cariacica | 383917 |
| 3 | 4 | Vitória | 365855 |
| 4 | 5 | CachoeirodeItapemirim | 210589 |
| ... | ... | ... | ... |
| 73 | 74 | AltoRioNovo | 7836 |
| 74 | 75 | Apiacá | 7567 |
| 75 | 76 | DoresdoRioPreto | 6749 |
| 76 | 77 | Mucurici | 5524 |
| 77 | 78 | DivinodeSãoLourenço | 4304 |
78 rows × 3 columns
# Forma 3.
import numpy as np
df = pd.DataFrame(np.array([j.text.replace('\n','') for j in tabela.find_all('td')[0:]]).reshape(78,3), columns=['Posição','Município','População'])
# Para limpar espaçamentos, quebras de linha e roda pés
df['Município'] = df['Município'].replace({r'^\s':''}, regex=True)
df['População'] = df['População'].replace({r'[\.\s]':''},
regex=True).replace({r'38070\[2\]':'38070'},
regex=True)
# Mudando os tipos dos dados
df['População'] = df['População'].astype(np.int32)
df['Posição'] = df['Posição'].astype(np.int32)
df.to_csv('municipios_es.csv', index = False)
import pandas as pd
import numpy as np
import requests
from bs4 import BeautifulSoup
from lxml import etree
url = requests.get('https://lista.mercadolivre.com.br/computador')
print(url.status_code)
200
print(url.content)
b'\n<!DOCTYPE html>\n<html lang="pt-BR">\n<head><link rel="preconnect" href="https://www.google-analytics.com"/><link rel="preconnect" href="https://www.google.com"/><link rel="preconnect" href="https://data.mercadolibre.com"/><link rel="preconnect" href="https://http2.mlstatic.com"/><link rel="preconnect" href="https://stats.g.doubleclick.net"/><link rel="preconnect" href="https://analytics.mercadolivre.com.br"/><link rel="preconnect" href="https://analytics.mercadolivre.com"/><link rel="preconnect" href="https://www.google.com.br"/><script type=\'text/javascript\'>window.NREUM||(NREUM={});NREUM.info = {"agent":"","beacon":"bam.nr-data.net","errorBeacon":"bam.nr-data.net","licenseKey":"NRJS-689ffbd95eae88e39ac","applicationID":"1729522169","applicationTime":1179.260114,"transactionName":"YlZQYEVZC0QEV0BZV1scd0xHSgBEFl5HH39wZx0bHQ==","queueTime":0,"ttGuid":"a244d65dd4d8f1e5","agentToken":null}; (window.NREUM||(NREUM={})).init={privacy:{cookies_enabled:true},ajax:{deny_list:["bam.nr-data.net"]},distributed_tracing:{enabled:true}};(window.NREUM||(NREUM={})).loader_config={agentID:"1834861763",accountID:"989586",trustKey:"1709707",xpid:"XQ4OVF5VGwIHVlhXBQMGUF0=",licenseKey:"NRJS-689ffbd95eae88e39ac",applicationID:"1729522169"};window.NREUM||(NREUM={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var o=e[n]={exports:{}};t[n][0].call(o.exports,function(e){var o=t[n][1][e];return r(o||e)},o,o.exports)}return e[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({1:[function(t,e,n){function r(t){try{s.console&&console.log(t)}catch(e){}}var o,i=t("ee"),a=t(31),s={};try{o=localStorage.getItem("__nr_flags").split(","),console&&"function"==typeof console.log&&(s.console=!0,o.indexOf("dev")!==-1&&(s.dev=!0),o.indexOf("nr_dev")!==-1&&(s.nrDev=!0))}catch(c){}s.nrDev&&i.on("internal-error",function(t){r(t.stack)}),s.dev&&i.on("fn-err",function(t,e,n){r(n.stack)}),s.dev&&(r("NR AGENT IN DEVELOPMENT MODE"),r("flags: "+a(s,function(t,e){return t}).join(", ")))},{}],2:[function(t,e,n){function r(t,e,n,r,s){try{l?l-=1:o(s||new UncaughtException(t,e,n),!0)}catch(f){try{i("ierr",[f,c.now(),!0])}catch(d){}}return"function"==typeof u&&u.apply(this,a(arguments))}function UncaughtException(t,e,n){this.message=t||"Uncaught error with no additional information",this.sourceURL=e,this.line=n}function o(t,e){var n=e?null:c.now();i("err",[t,n])}var i=t("handle"),a=t(32),s=t("ee"),c=t("loader"),f=t("gos"),u=window.onerror,d=!1,p="nr@seenError";if(!c.disabled){var l=0;c.features.err=!0,t(1),window.onerror=r;try{throw new Error}catch(h){"stack"in h&&(t(14),t(13),"addEventListener"in window&&t(7),c.xhrWrappable&&t(15),d=!0)}s.on("fn-start",function(t,e,n){d&&(l+=1)}),s.on("fn-err",function(t,e,n){d&&!n[p]&&(f(n,p,function(){return!0}),this.thrown=!0,o(n))}),s.on("fn-end",function(){d&&!this.thrown&&l>0&&(l-=1)}),s.on("internal-error",function(t){i("ierr",[t,c.now(),!0])})}},{}],3:[function(t,e,n){var r=t("loader");r.disabled||(r.features.ins=!0)},{}],4:[function(t,e,n){function r(){U++,L=g.hash,this[u]=y.now()}function o(){U--,g.hash!==L&&i(0,!0);var t=y.now();this[h]=~~this[h]+t-this[u],this[d]=t}function i(t,e){E.emit("newURL",[""+g,e])}function a(t,e){t.on(e,function(){this[e]=y.now()})}var s="-start",c="-end",f="-body",u="fn"+s,d="fn"+c,p="cb"+s,l="cb"+c,h="jsTime",m="fetch",v="addEventListener",w=window,g=w.location,y=t("loader");if(w[v]&&y.xhrWrappable&&!y.disabled){var x=t(11),b=t(12),E=t(9),R=t(7),O=t(14),T=t(8),S=t(15),P=t(10),M=t("ee"),C=M.get("tracer"),N=t(23);t(17),y.features.spa=!0;var L,U=0;M.on(u,r),b.on(p,r),P.on(p,r),M.on(d,o),b.on(l,o),P.on(l,o),M.buffer([u,d,"xhr-resolved"]),R.buffer([u]),O.buffer(["setTimeout"+c,"clearTimeout"+s,u]),S.buffer([u,"new-xhr","send-xhr"+s]),T.buffer([m+s,m+"-done",m+f+s,m+f+c]),E.buffer(["newURL"]),x.buffer([u]),b.buffer(["propagate",p,l,"executor-err","resolve"+s]),C.buffer([u,"no-"+u]),P.buffer(["new-jsonp","cb-start","jsonp-error","jsonp-end"]),a(T,m+s),a(T,m+"-done"),a(P,"new-jsonp"),a(P,"jsonp-end"),a(P,"cb-start"),E.on("pushState-end",i),E.on("replaceState-end",i),w[v]("hashchange",i,N(!0)),w[v]("load",i,N(!0)),w[v]("popstate",function(){i(0,U>1)},N(!0))}},{}],5:[function(t,e,n){function r(){var t=new PerformanceObserver(function(t,e){var n=t.getEntries();s(v,[n])});try{t.observe({entryTypes:["resource"]})}catch(e){}}function o(t){if(s(v,[window.performance.getEntriesByType(w)]),window.performance["c"+p])try{window.performance[h](m,o,!1)}catch(t){}else try{window.performance[h]("webkit"+m,o,!1)}catch(t){}}function i(t){}if(window.performance&&window.performance.timing&&window.performance.getEntriesByType){var a=t("ee"),s=t("handle"),c=t(14),f=t(13),u=t(6),d=t(23),p="learResourceTimings",l="addEventListener",h="removeEventListener",m="resourcetimingbufferfull",v="bstResource",w="resource",g="-start",y="-end",x="fn"+g,b="fn"+y,E="bstTimer",R="pushState",O=t("loader");if(!O.disabled){O.features.stn=!0,t(9),"addEventListener"in window&&t(7);var T=NREUM.o.EV;a.on(x,function(t,e){var n=t[0];n instanceof T&&(this.bstStart=O.now())}),a.on(b,function(t,e){var n=t[0];n instanceof T&&s("bst",[n,e,this.bstStart,O.now()])}),c.on(x,function(t,e,n){this.bstStart=O.now(),this.bstType=n}),c.on(b,function(t,e){s(E,[e,this.bstStart,O.now(),this.bstType])}),f.on(x,function(){this.bstStart=O.now()}),f.on(b,function(t,e){s(E,[e,this.bstStart,O.now(),"requestAnimationFrame"])}),a.on(R+g,function(t){this.time=O.now(),this.startPath=location.pathname+location.hash}),a.on(R+y,function(t){s("bstHist",[location.pathname+location.hash,this.startPath,this.time])}),u()?(s(v,[window.performance.getEntriesByType("resource")]),r()):l in window.performance&&(window.performance["c"+p]?window.performance[l](m,o,d(!1)):window.performance[l]("webkit"+m,o,d(!1))),document[l]("scroll",i,d(!1)),document[l]("keypress",i,d(!1)),document[l]("click",i,d(!1))}}},{}],6:[function(t,e,n){e.exports=function(){return"PerformanceObserver"in window&&"function"==typeof window.PerformanceObserver}},{}],7:[function(t,e,n){function r(t){for(var e=t;e&&!e.hasOwnProperty(u);)e=Object.getPrototypeOf(e);e&&o(e)}function o(t){s.inPlace(t,[u,d],"-",i)}function i(t,e){return t[1]}var a=t("ee").get("events"),s=t("wrap-function")(a,!0),c=t("gos"),f=XMLHttpRequest,u="addEventListener",d="removeEventListener";e.exports=a,"getPrototypeOf"in Object?(r(document),r(window),r(f.prototype)):f.prototype.hasOwnProperty(u)&&(o(window),o(f.prototype)),a.on(u+"-start",function(t,e){var n=t[1];if(null!==n&&("function"==typeof n||"object"==typeof n)){var r=c(n,"nr@wrapped",function(){function t(){if("function"==typeof n.handleEvent)return n.handleEvent.apply(n,arguments)}var e={object:t,"function":n}[typeof n];return e?s(e,"fn-",null,e.name||"anonymous"):n});this.wrapped=t[1]=r}}),a.on(d+"-start",function(t){t[1]=this.wrapped||t[1]})},{}],8:[function(t,e,n){function r(t,e,n){var r=t[e];"function"==typeof r&&(t[e]=function(){var t=i(arguments),e={};o.emit(n+"before-start",[t],e);var a;e[m]&&e[m].dt&&(a=e[m].dt);var s=r.apply(this,t);return o.emit(n+"start",[t,a],s),s.then(function(t){return o.emit(n+"end",[null,t],s),t},function(t){throw o.emit(n+"end",[t],s),t})})}var o=t("ee").get("fetch"),i=t(32),a=t(31);e.exports=o;var s=window,c="fetch-",f=c+"body-",u=["arrayBuffer","blob","json","text","formData"],d=s.Request,p=s.Response,l=s.fetch,h="prototype",m="nr@context";d&&p&&l&&(a(u,function(t,e){r(d[h],e,f),r(p[h],e,f)}),r(s,"fetch",c),o.on(c+"end",function(t,e){var n=this;if(e){var r=e.headers.get("content-length");null!==r&&(n.rxSize=r),o.emit(c+"done",[null,e],n)}else o.emit(c+"done",[t],n)}))},{}],9:[function(t,e,n){var r=t("ee").get("history"),o=t("wrap-function")(r);e.exports=r;var i=window.history&&window.history.constructor&&window.history.constructor.prototype,a=window.history;i&&i.pushState&&i.replaceState&&(a=i),o.inPlace(a,["pushState","replaceState"],"-")},{}],10:[function(t,e,n){function r(t){function e(){f.emit("jsonp-end",[],l),t.removeEventListener("load",e,c(!1)),t.removeEventListener("error",n,c(!1))}function n(){f.emit("jsonp-error",[],l),f.emit("jsonp-end",[],l),t.removeEventListener("load",e,c(!1)),t.removeEventListener("error",n,c(!1))}var r=t&&"string"==typeof t.nodeName&&"script"===t.nodeName.toLowerCase();if(r){var o="function"==typeof t.addEventListener;if(o){var a=i(t.src);if(a){var d=s(a),p="function"==typeof d.parent[d.key];if(p){var l={};u.inPlace(d.parent,[d.key],"cb-",l),t.addEventListener("load",e,c(!1)),t.addEventListener("error",n,c(!1)),f.emit("new-jsonp",[t.src],l)}}}}}function o(){return"addEventListener"in window}function i(t){var e=t.match(d);return e?e[1]:null}function a(t,e){var n=t.match(l),r=n[1],o=n[3];return o?a(o,e[r]):e[r]}function s(t){var e=t.match(p);return e&&e.length>=3?{key:e[2],parent:a(e[1],window)}:{key:t,parent:window}}var c=t(23),f=t("ee").get("jsonp"),u=t("wrap-function")(f);if(e.exports=f,o()){var d=/[?&](?:callback|cb)=([^&#]+)/,p=/(.*)\\.([^.]+)/,l=/^(\\w+)(\\.|$)(.*)$/,h=["appendChild","insertBefore","replaceChild"];Node&&Node.prototype&&Node.prototype.appendChild?u.inPlace(Node.prototype,h,"dom-"):(u.inPlace(HTMLElement.prototype,h,"dom-"),u.inPlace(HTMLHeadElement.prototype,h,"dom-"),u.inPlace(HTMLBodyElement.prototype,h,"dom-")),f.on("dom-start",function(t){r(t[0])})}},{}],11:[function(t,e,n){var r=t("ee").get("mutation"),o=t("wrap-function")(r),i=NREUM.o.MO;e.exports=r,i&&(window.MutationObserver=function(t){return this instanceof i?new i(o(t,"fn-")):i.apply(this,arguments)},MutationObserver.prototype=i.prototype)},{}],12:[function(t,e,n){function r(t){var e=i.context(),n=s(t,"executor-",e,null,!1),r=new f(n);return i.context(r).getCtx=function(){return e},r}var o=t("wrap-function"),i=t("ee").get("promise"),a=t("ee").getOrSetContext,s=o(i),c=t(31),f=NREUM.o.PR;e.exports=i,f&&(window.Promise=r,["all","race"].forEach(function(t){var e=f[t];f[t]=function(n){function r(t){return function(){i.emit("propagate",[null,!o],a,!1,!1),o=o||!t}}var o=!1;c(n,function(e,n){Promise.resolve(n).then(r("all"===t),r(!1))});var a=e.apply(f,arguments),s=f.resolve(a);return s}}),["resolve","reject"].forEach(function(t){var e=f[t];f[t]=function(t){var n=e.apply(f,arguments);return t!==n&&i.emit("propagate",[t,!0],n,!1,!1),n}}),f.prototype["catch"]=function(t){return this.then(null,t)},f.prototype=Object.create(f.prototype,{constructor:{value:r}}),c(Object.getOwnPropertyNames(f),function(t,e){try{r[e]=f[e]}catch(n){}}),o.wrapInPlace(f.prototype,"then",function(t){return function(){var e=this,n=o.argsToArray.apply(this,arguments),r=a(e);r.promise=e,n[0]=s(n[0],"cb-",r,null,!1),n[1]=s(n[1],"cb-",r,null,!1);var c=t.apply(this,n);return r.nextPromise=c,i.emit("propagate",[e,!0],c,!1,!1),c}}),i.on("executor-start",function(t){t[0]=s(t[0],"resolve-",this,null,!1),t[1]=s(t[1],"resolve-",this,null,!1)}),i.on("executor-err",function(t,e,n){t[1](n)}),i.on("cb-end",function(t,e,n){i.emit("propagate",[n,!0],this.nextPromise,!1,!1)}),i.on("propagate",function(t,e,n){this.getCtx&&!e||(this.getCtx=function(){if(t instanceof Promise)var e=i.context(t);return e&&e.getCtx?e.getCtx():this})}),r.toString=function(){return""+f})},{}],13:[function(t,e,n){var r=t("ee").get("raf"),o=t("wrap-function")(r),i="equestAnimationFrame";e.exports=r,o.inPlace(window,["r"+i,"mozR"+i,"webkitR"+i,"msR"+i],"raf-"),r.on("raf-start",function(t){t[0]=o(t[0],"fn-")})},{}],14:[function(t,e,n){function r(t,e,n){t[0]=a(t[0],"fn-",null,n)}function o(t,e,n){this.method=n,this.timerDuration=isNaN(t[1])?0:+t[1],t[0]=a(t[0],"fn-",this,n)}var i=t("ee").get("timer"),a=t("wrap-function")(i),s="setTimeout",c="setInterval",f="clearTimeout",u="-start",d="-";e.exports=i,a.inPlace(window,[s,"setImmediate"],s+d),a.inPlace(window,[c],c+d),a.inPlace(window,[f,"clearImmediate"],f+d),i.on(c+u,r),i.on(s+u,o)},{}],15:[function(t,e,n){function r(t,e){d.inPlace(e,["onreadystatechange"],"fn-",s)}function o(){var t=this,e=u.context(t);t.readyState>3&&!e.resolved&&(e.resolved=!0,u.emit("xhr-resolved",[],t)),d.inPlace(t,y,"fn-",s)}function i(t){x.push(t),m&&(E?E.then(a):w?w(a):(R=-R,O.data=R))}function a(){for(var t=0;t<x.length;t++)r([],x[t]);x.length&&(x=[])}function s(t,e){return e}function c(t,e){for(var n in t)e[n]=t[n];return e}t(7);var f=t("ee"),u=f.get("xhr"),d=t("wrap-function")(u),p=t(23),l=NREUM.o,h=l.XHR,m=l.MO,v=l.PR,w=l.SI,g="readystatechange",y=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"],x=[];e.exports=u;var b=window.XMLHttpRequest=function(t){var e=new h(t);try{u.emit("new-xhr",[e],e),e.addEventListener(g,o,p(!1))}catch(n){try{u.emit("internal-error",[n])}catch(r){}}return e};if(c(h,b),b.prototype=h.prototype,d.inPlace(b.prototype,["open","send"],"-xhr-",s),u.on("send-xhr-start",function(t,e){r(t,e),i(e)}),u.on("open-xhr-start",r),m){var E=v&&v.resolve();if(!w&&!v){var R=1,O=document.createTextNode(R);new m(a).observe(O,{characterData:!0})}}else f.on("fn-end",function(t){t[0]&&t[0].type===g||a()})},{}],16:[function(t,e,n){function r(t){if(!s(t))return null;var e=window.NREUM;if(!e.loader_config)return null;var n=(e.loader_config.accountID||"").toString()||null,r=(e.loader_config.agentID||"").toString()||null,f=(e.loader_config.trustKey||"").toString()||null;if(!n||!r)return null;var h=l.generateSpanId(),m=l.generateTraceId(),v=Date.now(),w={spanId:h,traceId:m,timestamp:v};return(t.sameOrigin||c(t)&&p())&&(w.traceContextParentHeader=o(h,m),w.traceContextStateHeader=i(h,v,n,r,f)),(t.sameOrigin&&!u()||!t.sameOrigin&&c(t)&&d())&&(w.newrelicHeader=a(h,m,v,n,r,f)),w}function o(t,e){return"00-"+e+"-"+t+"-01"}function i(t,e,n,r,o){var i=0,a="",s=1,c="",f="";return o+"@nr="+i+"-"+s+"-"+n+"-"+r+"-"+t+"-"+a+"-"+c+"-"+f+"-"+e}function a(t,e,n,r,o,i){var a="btoa"in window&&"function"==typeof window.btoa;if(!a)return null;var s={v:[0,1],d:{ty:"Browser",ac:r,ap:o,id:t,tr:e,ti:n}};return i&&r!==i&&(s.d.tk=i),btoa(JSON.stringify(s))}function s(t){return f()&&c(t)}function c(t){var e=!1,n={};if("init"in NREUM&&"distributed_tracing"in NREUM.init&&(n=NREUM.init.distributed_tracing),t.sameOrigin)e=!0;else if(n.allowed_origins instanceof Array)for(var r=0;r<n.allowed_origins.length;r++){var o=h(n.allowed_origins[r]);if(t.hostname===o.hostname&&t.protocol===o.protocol&&t.port===o.port){e=!0;break}}return e}function f(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&!!NREUM.init.distributed_tracing.enabled}function u(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&!!NREUM.init.distributed_tracing.exclude_newrelic_header}function d(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&NREUM.init.distributed_tracing.cors_use_newrelic_header!==!1}function p(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&!!NREUM.init.distributed_tracing.cors_use_tracecontext_headers}var l=t(28),h=t(18);e.exports={generateTracePayload:r,shouldGenerateTrace:s}},{}],17:[function(t,e,n){function r(t){var e=this.params,n=this.metrics;if(!this.ended){this.ended=!0;for(var r=0;r<p;r++)t.removeEventListener(d[r],this.listener,!1);return e.protocol&&"data"===e.protocol?void g("Ajax/DataUrl/Excluded"):void(e.aborted||(n.duration=a.now()-this.startTime,this.loadCaptureCalled||4!==t.readyState?null==e.status&&(e.status=0):i(this,t),n.cbTime=this.cbTime,s("xhr",[e,n,this.startTime,this.endTime,"xhr"],this)))}}function o(t,e){var n=c(e),r=t.params;r.hostname=n.hostname,r.port=n.port,r.protocol=n.protocol,r.host=n.hostname+":"+n.port,r.pathname=n.pathname,t.parsedOrigin=n,t.sameOrigin=n.sameOrigin}function i(t,e){t.params.status=e.status;var n=v(e,t.lastSize);if(n&&(t.metrics.rxSize=n),t.sameOrigin){var r=e.getResponseHeader("X-NewRelic-App-Data");r&&(t.params.cat=r.split(", ").pop())}t.loadCaptureCalled=!0}var a=t("loader");if(a.xhrWrappable&&!a.disabled){var s=t("handle"),c=t(18),f=t(16).generateTracePayload,u=t("ee"),d=["load","error","abort","timeout"],p=d.length,l=t("id"),h=t(24),m=t(22),v=t(19),w=t(23),g=t(25).recordSupportability,y=NREUM.o.REQ,x=window.XMLHttpRequest;a.features.xhr=!0,t(15),t(8),u.on("new-xhr",function(t){var e=this;e.totalCbs=0,e.called=0,e.cbTime=0,e.end=r,e.ended=!1,e.xhrGuids={},e.lastSize=null,e.loadCaptureCalled=!1,e.params=this.params||{},e.metrics=this.metrics||{},t.addEventListener("load",function(n){i(e,t)},w(!1)),h&&(h>34||h<10)||t.addEventListener("progress",function(t){e.lastSize=t.loaded},w(!1))}),u.on("open-xhr-start",function(t){this.params={method:t[0]},o(this,t[1]),this.metrics={}}),u.on("open-xhr-end",function(t,e){"loader_config"in NREUM&&"xpid"in NREUM.loader_config&&this.sameOrigin&&e.setRequestHeader("X-NewRelic-ID",NREUM.loader_config.xpid);var n=f(this.parsedOrigin);if(n){var r=!1;n.newrelicHeader&&(e.setRequestHeader("newrelic",n.newrelicHeader),r=!0),n.traceContextParentHeader&&(e.setRequestHeader("traceparent",n.traceContextParentHeader),n.traceContextStateHeader&&e.setRequestHeader("tracestate",n.traceContextStateHeader),r=!0),r&&(this.dt=n)}}),u.on("send-xhr-start",function(t,e){var n=this.metrics,r=t[0],o=this;if(n&&r){var i=m(r);i&&(n.txSize=i)}this.startTime=a.now(),this.listener=function(t){try{"abort"!==t.type||o.loadCaptureCalled||(o.params.aborted=!0),("load"!==t.type||o.called===o.totalCbs&&(o.onloadCalled||"function"!=typeof e.onload))&&o.end(e)}catch(n){try{u.emit("internal-error",[n])}catch(r){}}};for(var s=0;s<p;s++)e.addEventListener(d[s],this.listener,w(!1))}),u.on("xhr-cb-time",function(t,e,n){this.cbTime+=t,e?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof n.onload||this.end(n)}),u.on("xhr-load-added",function(t,e){var n=""+l(t)+!!e;this.xhrGuids&&!this.xhrGuids[n]&&(this.xhrGuids[n]=!0,this.totalCbs+=1)}),u.on("xhr-load-removed",function(t,e){var n=""+l(t)+!!e;this.xhrGuids&&this.xhrGuids[n]&&(delete this.xhrGuids[n],this.totalCbs-=1)}),u.on("xhr-resolved",function(){this.endTime=a.now()}),u.on("addEventListener-end",function(t,e){e instanceof x&&"load"===t[0]&&u.emit("xhr-load-added",[t[1],t[2]],e)}),u.on("removeEventListener-end",function(t,e){e instanceof x&&"load"===t[0]&&u.emit("xhr-load-removed",[t[1],t[2]],e)}),u.on("fn-start",function(t,e,n){e instanceof x&&("onload"===n&&(this.onload=!0),("load"===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart=a.now()))}),u.on("fn-end",function(t,e){this.xhrCbStart&&u.emit("xhr-cb-time",[a.now()-this.xhrCbStart,this.onload,e],e)}),u.on("fetch-before-start",function(t){function e(t,e){var n=!1;return e.newrelicHeader&&(t.set("newrelic",e.newrelicHeader),n=!0),e.traceContextParentHeader&&(t.set("traceparent",e.traceContextParentHeader),e.traceContextStateHeader&&t.set("tracestate",e.traceContextStateHeader),n=!0),n}var n,r=t[1]||{};"string"==typeof t[0]?n=t[0]:t[0]&&t[0].url?n=t[0].url:window.URL&&t[0]&&t[0]instanceof URL&&(n=t[0].href),n&&(this.parsedOrigin=c(n),this.sameOrigin=this.parsedOrigin.sameOrigin);var o=f(this.parsedOrigin);if(o&&(o.newrelicHeader||o.traceContextParentHeader))if("string"==typeof t[0]||window.URL&&t[0]&&t[0]instanceof URL){var i={};for(var a in r)i[a]=r[a];i.headers=new Headers(r.headers||{}),e(i.headers,o)&&(this.dt=o),t.length>1?t[1]=i:t.push(i)}else t[0]&&t[0].headers&&e(t[0].headers,o)&&(this.dt=o)}),u.on("fetch-start",function(t,e){this.params={},this.metrics={},this.startTime=a.now(),this.dt=e,t.length>=1&&(this.target=t[0]),t.length>=2&&(this.opts=t[1]);var n,r=this.opts||{},i=this.target;if("string"==typeof i?n=i:"object"==typeof i&&i instanceof y?n=i.url:window.URL&&"object"==typeof i&&i instanceof URL&&(n=i.href),o(this,n),"data"!==this.params.protocol){var s=(""+(i&&i instanceof y&&i.method||r.method||"GET")).toUpperCase();this.params.method=s,this.txSize=m(r.body)||0}}),u.on("fetch-done",function(t,e){if(this.endTime=a.now(),this.params||(this.params={}),"data"===this.params.protocol)return void g("Ajax/DataUrl/Excluded");this.params.status=e?e.status:0;var n;"string"==typeof this.rxSize&&this.rxSize.length>0&&(n=+this.rxSize);var r={txSize:this.txSize,rxSize:n,duration:a.now()-this.startTime};s("xhr",[this.params,r,this.startTime,this.endTime,"fetch"],this)})}},{}],18:[function(t,e,n){var r={};e.exports=function(t){if(t in r)return r[t];if(0===(t||"").indexOf("data:"))return{protocol:"data"};var e=document.createElement("a"),n=window.location,o={};e.href=t,o.port=e.port;var i=e.href.split("://");!o.port&&i[1]&&(o.port=i[1].split("/")[0].split("@").pop().split(":")[1]),o.port&&"0"!==o.port||(o.port="https"===i[0]?"443":"80"),o.hostname=e.hostname||n.hostname,o.pathname=e.pathname,o.protocol=i[0],"/"!==o.pathname.charAt(0)&&(o.pathname="/"+o.pathname);var a=!e.protocol||":"===e.protocol||e.protocol===n.protocol,s=e.hostname===document.domain&&e.port===n.port;return o.sameOrigin=a&&(!e.hostname||s),"/"===o.pathname&&(r[t]=o),o}},{}],19:[function(t,e,n){function r(t,e){var n=t.responseType;return"json"===n&&null!==e?e:"arraybuffer"===n||"blob"===n||"json"===n?o(t.response):"text"===n||""===n||void 0===n?o(t.responseText):void 0}var o=t(22);e.exports=r},{}],20:[function(t,e,n){function r(){}function o(t,e,n,r){return function(){return u.recordSupportability("API/"+e+"/called"),i(t+e,[f.now()].concat(s(arguments)),n?null:this,r),n?void 0:this}}var i=t("handle"),a=t(31),s=t(32),c=t("ee").get("tracer"),f=t("loader"),u=t(25),d=NREUM;"undefined"==typeof window.newrelic&&(newrelic=d);var p=["setPageViewName","setCustomAttribute","setErrorHandler","finished","addToTrace","inlineHit","addRelease"],l="api-",h=l+"ixn-";a(p,function(t,e){d[e]=o(l,e,!0,"api")}),d.addPageAction=o(l,"addPageAction",!0),d.setCurrentRouteName=o(l,"routeName",!0),e.exports=newrelic,d.interaction=function(){return(new r).get()};var m=r.prototype={createTracer:function(t,e){var n={},r=this,o="function"==typeof e;return i(h+"tracer",[f.now(),t,n],r),function(){if(c.emit((o?"":"no-")+"fn-start",[f.now(),r,o],n),o)try{return e.apply(this,arguments)}catch(t){throw c.emit("fn-err",[arguments,this,t],n),t}finally{c.emit("fn-end",[f.now()],n)}}}};a("actionText,setName,setAttribute,save,ignore,onEnd,getContext,end,get".split(","),function(t,e){m[e]=o(h,e)}),newrelic.noticeError=function(t,e){"string"==typeof t&&(t=new Error(t)),u.recordSupportability("API/noticeError/called"),i("err",[t,f.now(),!1,e])}},{}],21:[function(t,e,n){function r(t){if(NREUM.init){for(var e=NREUM.init,n=t.split("."),r=0;r<n.length-1;r++)if(e=e[n[r]],"object"!=typeof e)return;return e=e[n[n.length-1]]}}e.exports={getConfiguration:r}},{}],22:[function(t,e,n){e.exports=function(t){if("string"==typeof t&&t.length)return t.length;if("object"==typeof t){if("undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if("undefined"!=typeof Blob&&t instanceof Blob&&t.size)return t.size;if(!("undefined"!=typeof FormData&&t instanceof FormData))try{return JSON.stringify(t).length}catch(e){return}}}},{}],23:[function(t,e,n){var r=!1;try{var o=Object.defineProperty({},"passive",{get:function(){r=!0}});window.addEventListener("testPassive",null,o),window.removeEventListener("testPassive",null,o)}catch(i){}e.exports=function(t){return r?{passive:!0,capture:!!t}:!!t}},{}],24:[function(t,e,n){var r=0,o=navigator.userAgent.match(/Firefox[\\/\\s](\\d+\\.\\d+)/);o&&(r=+o[1]),e.exports=r},{}],25:[function(t,e,n){function r(t,e){var n=[a,t,{name:t},e];return i("storeMetric",n,null,"api"),n}function o(t,e){var n=[s,t,{name:t},e];return i("storeEventMetrics",n,null,"api"),n}var i=t("handle"),a="sm",s="cm";e.exports={constants:{SUPPORTABILITY_METRIC:a,CUSTOM_METRIC:s},recordSupportability:r,recordCustom:o}},{}],26:[function(t,e,n){function r(){return s.exists&&performance.now?Math.round(performance.now()):(i=Math.max((new Date).getTime(),i))-a}function o(){return i}var i=(new Date).getTime(),a=i,s=t(33);e.exports=r,e.exports.offset=a,e.exports.getLastTimestamp=o},{}],27:[function(t,e,n){function r(t,e){var n=t.getEntries();n.forEach(function(t){"first-paint"===t.name?l("timing",["fp",Math.floor(t.startTime)]):"first-contentful-paint"===t.name&&l("timing",["fcp",Math.floor(t.startTime)])})}function o(t,e){var n=t.getEntries();if(n.length>0){var r=n[n.length-1];if(f&&f<r.startTime)return;var o=[r],i=a({});i&&o.push(i),l("lcp",o)}}function i(t){t.getEntries().forEach(function(t){t.hadRecentInput||l("cls",[t])})}function a(t){var e=navigator.connection||navigator.mozConnection||navigator.webkitConnection;if(e)return e.type&&(t["net-type"]=e.type),e.effectiveType&&(t["net-etype"]=e.effectiveType),e.rtt&&(t["net-rtt"]=e.rtt),e.downlink&&(t["net-dlink"]=e.downlink),t}function s(t){if(t instanceof w&&!y){var e=Math.round(t.timeStamp),n={type:t.type};a(n),e<=h.now()?n.fid=h.now()-e:e>h.offset&&e<=Date.now()?(e-=h.offset,n.fid=h.now()-e):e=h.now(),y=!0,l("timing",["fi",e,n])}}function c(t){"hidden"===t&&(f=h.now(),l("pageHide",[f]))}if(!("init"in NREUM&&"page_view_timing"in NREUM.init&&"enabled"in NREUM.init.page_view_timing&&NREUM.init.page_view_timing.enabled===!1)){var f,u,d,p,l=t("handle"),h=t("loader"),m=t(30),v=t(23),w=NREUM.o.EV;if("PerformanceObserver"in window&&"function"==typeof window.PerformanceObserver){u=new PerformanceObserver(r);try{u.observe({entryTypes:["paint"]})}catch(g){}d=new PerformanceObserver(o);try{d.observe({entryTypes:["largest-contentful-paint"]})}catch(g){}p=new PerformanceObserver(i);try{p.observe({type:"layout-shift",buffered:!0})}catch(g){}}if("addEventListener"in document){var y=!1,x=["click","keydown","mousedown","pointerdown","touchstart"];x.forEach(function(t){document.addEventListener(t,s,v(!1))})}m(c)}},{}],28:[function(t,e,n){function r(){function t(){return e?15&e[n++]:16*Math.random()|0}var e=null,n=0,r=window.crypto||window.msCrypto;r&&r.getRandomValues&&(e=r.getRandomValues(new Uint8Array(31)));for(var o,i="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx",a="",s=0;s<i.length;s++)o=i[s],"x"===o?a+=t().toString(16):"y"===o?(o=3&t()|8,a+=o.toString(16)):a+=o;return a}function o(){return a(16)}function i(){return a(32)}function a(t){function e(){return n?15&n[r++]:16*Math.random()|0}var n=null,r=0,o=window.crypto||window.msCrypto;o&&o.getRandomValues&&Uint8Array&&(n=o.getRandomValues(new Uint8Array(t)));for(var i=[],a=0;a<t;a++)i.push(e().toString(16));return i.join("")}e.exports={generateUuid:r,generateSpanId:o,generateTraceId:i}},{}],29:[function(t,e,n){function r(t,e){if(!o)return!1;if(t!==o)return!1;if(!e)return!0;if(!i)return!1;for(var n=i.split("."),r=e.split("."),a=0;a<r.length;a++)if(r[a]!==n[a])return!1;return!0}var o=null,i=null,a=/Version\\/(\\S+)\\s+Safari/;if(navigator.userAgent){var s=navigator.userAgent,c=s.match(a);c&&s.indexOf("Chrome")===-1&&s.indexOf("Chromium")===-1&&(o="Safari",i=c[1])}e.exports={agent:o,version:i,match:r}},{}],30:[function(t,e,n){function r(t){function e(){t(s&&document[s]?document[s]:document[i]?"hidden":"visible")}"addEventListener"in document&&a&&document.addEventListener(a,e,o(!1))}var o=t(23);e.exports=r;var i,a,s;"undefined"!=typeof document.hidden?(i="hidden",a="visibilitychange",s="visibilityState"):"undefined"!=typeof document.msHidden?(i="msHidden",a="msvisibilitychange"):"undefined"!=typeof document.webkitHidden&&(i="webkitHidden",a="webkitvisibilitychange",s="webkitVisibilityState")},{}],31:[function(t,e,n){function r(t,e){var n=[],r="",i=0;for(r in t)o.call(t,r)&&(n[i]=e(r,t[r]),i+=1);return n}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],32:[function(t,e,n){function r(t,e,n){e||(e=0),"undefined"==typeof n&&(n=t?t.length:0);for(var r=-1,o=n-e||0,i=Array(o<0?0:o);++r<o;)i[r]=t[e+r];return i}e.exports=r},{}],33:[function(t,e,n){e.exports={exists:"undefined"!=typeof window.performance&&window.performance.timing&&"undefined"!=typeof window.performance.timing.navigationStart}},{}],ee:[function(t,e,n){function r(){}function o(t){function e(t){return t&&t instanceof r?t:t?f(t,c,a):a()}function n(n,r,o,i,a){if(a!==!1&&(a=!0),!l.aborted||i){t&&a&&t(n,r,o);for(var s=e(o),c=m(n),f=c.length,u=0;u<f;u++)c[u].apply(s,r);var p=d[y[n]];return p&&p.push([x,n,r,s]),s}}function i(t,e){g[t]=m(t).concat(e)}function h(t,e){var n=g[t];if(n)for(var r=0;r<n.length;r++)n[r]===e&&n.splice(r,1)}function m(t){return g[t]||[]}function v(t){return p[t]=p[t]||o(n)}function w(t,e){l.aborted||u(t,function(t,n){e=e||"feature",y[n]=e,e in d||(d[e]=[])})}var g={},y={},x={on:i,addEventListener:i,removeEventListener:h,emit:n,get:v,listeners:m,context:e,buffer:w,abort:s,aborted:!1};return x}function i(t){return f(t,c,a)}function a(){return new r}function s(){(d.api||d.feature)&&(l.aborted=!0,d=l.backlog={})}var c="nr@context",f=t("gos"),u=t(31),d={},p={},l=e.exports=o();e.exports.getOrSetContext=i,l.backlog=d},{}],gos:[function(t,e,n){function r(t,e,n){if(o.call(t,e))return t[e];var r=n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,e,{value:r,writable:!0,enumerable:!1}),r}catch(i){}return t[e]=r,r}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],handle:[function(t,e,n){function r(t,e,n,r){o.buffer([t],r),o.emit(t,e,n)}var o=t("ee").get("handle");e.exports=r,r.ee=o},{}],id:[function(t,e,n){function r(t){var e=typeof t;return!t||"object"!==e&&"function"!==e?-1:t===window?0:a(t,i,function(){return o++})}var o=1,i="nr@id",a=t("gos");e.exports=r},{}],loader:[function(t,e,n){function r(){if(!T++){var t=O.info=NREUM.info,e=m.getElementsByTagName("script")[0];if(setTimeout(f.abort,3e4),!(t&&t.licenseKey&&t.applicationID&&e))return f.abort();c(E,function(e,n){t[e]||(t[e]=n)});var n=a();s("mark",["onload",n+O.offset],null,"api"),s("timing",["load",n]);var r=m.createElement("script");0===t.agent.indexOf("http://")||0===t.agent.indexOf("https://")?r.src=t.agent:r.src=l+"://"+t.agent,e.parentNode.insertBefore(r,e)}}function o(){"complete"===m.readyState&&i()}function i(){s("mark",["domContent",a()+O.offset],null,"api")}var a=t(26),s=t("handle"),c=t(31),f=t("ee"),u=t(29),d=t(21),p=t(23),l=d.getConfiguration("ssl")===!1?"http":"https",h=window,m=h.document,v="addEventListener",w="attachEvent",g=h.XMLHttpRequest,y=g&&g.prototype,x=!1;NREUM.o={ST:setTimeout,SI:h.setImmediate,CT:clearTimeout,XHR:g,REQ:h.Request,EV:h.Event,PR:h.Promise,MO:h.MutationObserver};var b=""+location,E={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net",agent:"js-agent.newrelic.com/nr-spa-1216.min.js"},R=g&&y&&y[v]&&!/CriOS/.test(navigator.userAgent),O=e.exports={offset:a.getLastTimestamp(),now:a,origin:b,features:{},xhrWrappable:R,userAgent:u,disabled:x};if(!x){t(20),t(27),m[v]?(m[v]("DOMContentLoaded",i,p(!1)),h[v]("load",r,p(!1))):(m[w]("onreadystatechange",o),h[w]("onload",r)),s("mark",["firstbyte",a.getLastTimestamp()],null,"api");var T=0}},{}],"wrap-function":[function(t,e,n){function r(t,e){function n(e,n,r,c,f){function nrWrapper(){var i,a,u,p;try{a=this,i=d(arguments),u="function"==typeof r?r(i,a):r||{}}catch(l){o([l,"",[i,a,c],u],t)}s(n+"start",[i,a,c],u,f);try{return p=e.apply(a,i)}catch(h){throw s(n+"err",[i,a,h],u,f),h}finally{s(n+"end",[i,a,p],u,f)}}return a(e)?e:(n||(n=""),nrWrapper[p]=e,i(e,nrWrapper,t),nrWrapper)}function r(t,e,r,o,i){r||(r="");var s,c,f,u="-"===r.charAt(0);for(f=0;f<e.length;f++)c=e[f],s=t[c],a(s)||(t[c]=n(s,u?c+r:r,o,c,i))}function s(n,r,i,a){if(!h||e){var s=h;h=!0;try{t.emit(n,r,i,e,a)}catch(c){o([c,n,r,i],t)}h=s}}return t||(t=u),n.inPlace=r,n.flag=p,n}function o(t,e){e||(e=u);try{e.emit("internal-error",t)}catch(n){}}function i(t,e,n){if(Object.defineProperty&&Object.keys)try{var r=Object.keys(t);return r.forEach(function(n){Object.defineProperty(e,n,{get:function(){return t[n]},set:function(e){return t[n]=e,e}})}),e}catch(i){o([i],n)}for(var a in t)l.call(t,a)&&(e[a]=t[a]);return e}function a(t){return!(t&&t instanceof Function&&t.apply&&!t[p])}function s(t,e){var n=e(t);return n[p]=t,i(t,n,u),n}function c(t,e,n){var r=t[e];t[e]=s(r,n)}function f(){for(var t=arguments.length,e=new Array(t),n=0;n<t;++n)e[n]=arguments[n];return e}var u=t("ee"),d=t(32),p="nr@original",l=Object.prototype.hasOwnProperty,h=!1;e.exports=r,e.exports.wrapFunction=s,e.exports.wrapInPlace=c,e.exports.argsToArray=f},{}]},{},["loader",2,17,5,3,4]);</script><script id="__LOADABLE_REQUIRED_CHUNKS__" type="application/json">[1793,9234]</script><script id="__LOADABLE_REQUIRED_CHUNKS___ext" type="application/json">{"namedChunks":["chunk-header-exhibitor","chunk-listing-disclaimer"]}</script><noscript><meta http-equiv="refresh" content="0;URL=//www.mercadolivre.com.br/gz/webdevice/config?go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&noscript=true"/></noscript>\n<meta charSet="utf-8"/>\n<meta http-equiv="X-UA-Compatible" content="IE=edge"/>\n<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0"/>\n<meta name="HandheldFriendly" content="True"/>\n<meta http-equiv="cleartype" content="on"/>\n<meta name="browser-support" content="samesite=true"/>\n<meta name="csrf-token" content="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8" />\n<link rel="preload" href="https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-light.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-head-react="true"/><link rel="preload" href="https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-regular.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-head-react="true"/><link rel="preload" href="https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-semibold.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-head-react="true"/><style data-head-react="true">@font-face{font-family:\'Proxima Nova\';font-weight:300;font-display:swap;font-style:normal;src:url(https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-light.woff2) format("woff2"),url(https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-light.woff) format("woff"),url(https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-light.ttf) format("truetype")}@font-face{font-family:\'Proxima Nova\';font-weight:400;font-display:swap;font-style:normal;src:url(https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-regular.woff2) format("woff2"),url(https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-regular.woff) format("woff"),url(https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-regular.ttf) format("truetype")}@font-face{font-family:\'Proxima Nova\';font-weight:600;font-display:swap;font-style:normal;src:url(https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-semibold.woff2) format("woff2"),url(https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-semibold.woff) format("woff"),url(https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-semibold.ttf) format("truetype")}</style><link href="https://http2.mlstatic.com/frontend-assets/ui-navigation/5.19.1/mercadolibre/favicon.svg" rel="icon" data-head-react="true"/><link href="https://http2.mlstatic.com/frontend-assets/ui-navigation/5.19.1/mercadolibre/180x180.png" rel="apple-touch-icon" data-head-react="true"/><script type="application/ld+json">{"@context":"https:\\u002F\\u002Fschema.org","@graph":[{"@type":"SearchResultsPage","id":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fcomputador","name":"Computador","about":"Frete gr\xc3\xa1tis no dia \xe2\x9c\x93 Compre Computador parcelado sem juros! Saiba mais sobre nossas incr\xc3\xadveis ofertas e promo\xc3\xa7\xc3\xb5es em milh\xc3\xb5es de produtos."},{"@type":"ItemList","id":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fcomputador\\u002F#itemList","numberOfItems":1,"itemListElement":[{"@type":"ListItem","position":1,"item":{"@type":"Product","name":"Notebook Compaq Presario CQ-25 gray 14.1\\", Intel Pentium N3700 4GB de RAM 120GB SSD, Intel HD Graphics 1366x768px Windows 10 Home","url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fcomputador","aggregateRating":{"@type":"AggregateRating","ratingCount":61,"bestRating":5,"ratingValue":4,"worstRating":1},"offers":{"@type":"AggregateOffer","price":1979,"lowPrice":1979,"priceCurrency":"BRL","offerCount":1,"availability":"https:\\u002F\\u002Fschema.org\\u002FInStock","itemCondition":"https:\\u002F\\u002Fschema.org\\u002FNewCondition"},"brand":{"@type":"Brand","name":"Compaq"}}}]}]}</script><link rel="preload" href="https://http2.mlstatic.com/D_NQ_NP_610237-MLA50807376051_072022-OO.jpg" as="image" data-head-react="true"/><link rel="preconnect" href="https://securepubads.g.doubleclick.net" data-head-react="true"/><link rel="preconnect" href="https://www.googletagservices.com" data-head-react="true"/><title>Computador | MercadoLivre \xf0\x9f\x93\xa6</title><meta name="description" content="Frete gr\xc3\xa1tis no dia \xe2\x9c\x93 Compre Computador parcelado sem juros! Saiba mais sobre nossas incr\xc3\xadveis ofertas e promo\xc3\xa7\xc3\xb5es em milh\xc3\xb5es de produtos." data-head-react="true"/><link rel="canonical" href="https://lista.mercadolivre.com.br/computador" data-head-react="true"/><link rel="alternate" href="android-app://com.mercadolibre/meli/search?go=https://lista.mercadolivre.com.br/computador" data-head-react="true"/><link rel="alternate" href="ios-app://463624852/meli/search?go=https://lista.mercadolivre.com.br/computador" data-head-react="true"/><meta name="csrf-token" content="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8" data-head-react="true"/><style>.cookie-consent-banner-opt-out{position:fixed;bottom:0;left:0;right:0;z-index:2147483647;background-color:rgba(0,0,0,.9);color:#fff;display:-webkit-flex;display:flex;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;align-items:center;-webkit-font-smoothing:antialiased;font-family:Proxima Nova,-apple-system,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;border-top-right-radius:6px;border-top-left-radius:6px}.cookie-consent-banner-opt-out__header{font-weight:600;color:#fff}.cookie-consent-banner-opt-out__message{margin:0 0 24px;font-size:16px;font-weight:400;color:#fff}.cookie-consent-banner-opt-out__more-info{color:#fff!important;text-decoration:underline!important;border-radius:6px}.cookie-consent-banner-opt-out__actions{display:-webkit-flex;display:flex}.cookie-consent-banner-opt-out__form{display:inline-block}.cookie-consent-banner-opt-out__action{color:#fff!important;border-radius:6px;background-color:rgba(65,137,230,.15);border:none;text-decoration:none;font-weight:600;display:inline-block;line-height:1em;white-space:nowrap;text-align:center;cursor:pointer;font-family:Proxima Nova,-apple-system,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;-moz-box-sizing:border-box;box-sizing:border-box}.cookie-consent-banner-opt-out__action:focus{color:#fff;outline:0;box-shadow:0 0 0 .1875em #fff;-webkit-transition:box-shadow .25s ease-in;transition:box-shadow .25s ease-in}.cookie-consent-banner-opt-out__action:hover{color:#fff}.cookie-consent-banner-opt-out__action--key-save{-webkit-transition:box-shadow .25s ease-out,background-color .2s ease-out;transition:box-shadow .25s ease-out,background-color .2s ease-out}.cookie-consent-banner-opt-out__more-info:focus{color:#fff;outline:0;box-shadow:0 0 0 2px #fff;-webkit-transition:box-shadow .25s ease-in;transition:box-shadow .25s ease-in}.cookie-consent-banner-opt-out__modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:2147483647;display:-webkit-flex;display:flex;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;align-items:center;overflow:auto}.cookie-consent-banner-opt-out__modal[aria-hidden=true]{display:none}.cookie-consent-banner-opt-out__modal-closeButton{position:absolute;top:-32px;right:-2px;height:1.25em;width:1.25em;cursor:pointer;background-color:transparent;border:none;padding:0}.cookie-consent-banner-opt-out__modal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.8);color:rgba(0,0,0,.8)}.cookie-consent-banner-opt-out__modal-wrapper{position:relative;padding:0;width:100%;max-width:800px;height:584px;background-color:#fff;border-radius:6px;display:grid;grid-template-rows:1fr 102px}.cookie-consent-banner-opt-out__modal-content{padding:24px 32px 0;border-radius:6px 6px 0 0}.cookie-consent-banner-opt-out__modal-content iframe{width:100%;height:100%;border:0;border-radius:6px 6px 0 0;-webkit-overflow-scrolling:touch}.cookie-consent-banner-opt-out__modal-action{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;height:102px;padding:0 48px;margin-top:auto;background:#fff;border-radius:0 0 6px 6px;box-shadow:0 -5px 4px rgba(0,0,0,.1)}@media(max-width:1024px){.cookie-consent-banner-opt-out__actions{-webkit-flex-wrap:wrap;flex-wrap:wrap}.cookie-consent-banner-opt-out__action{-webkit-flex:1;flex:1;margin-right:0!important}}@media(max-height:620px),(max-width:800px){.cookie-consent-banner-opt-out__modal-wrapper{height:-webkit-calc(100% - 78px);height:calc(100% - 78px);margin:54px 24px 24px;grid-template-rows:1fr 74px}.cookie-consent-banner-opt-out__modal-content{padding:0}.cookie-consent-banner-opt-out__modal-action{padding:0 16px;height:74px}}@media screen and (max-width:540px){.cookie-consent-banner-opt-out{-webkit-flex-wrap:wrap;flex-wrap:wrap}}.cookie-consent-banner-opt-out__action--primary{background-color:#3483fa}.cookie-consent-banner-opt-out__action--key-save:hover{background-color:#2968c8}.cookie-consent-banner-opt-out__action--key-save:focus{box-shadow:0 0 0 .1875em rgba(65,137,230,.3)}.cookie-consent-banner-opt-out{padding:48px 48px 24px}.cookie-consent-banner-opt-out__message-container{margin-right:50px;max-width:585px;min-width:200px}.cookie-consent-banner-opt-out__header{margin:0 0 12px;font-size:20px}.cookie-consent-banner-opt-out__actions{-webkit-align-items:center;align-items:center;margin:0 0 24px}.cookie-consent-banner-opt-out__action{margin:0 8px 8px 0;padding:16px 24px;font-size:16px}.cookie-consent-banner-opt-out__action:last-child{margin:0 0 8px}.cookie-consent-banner-opt-out__form{margin:0 8px 8px 0}.cookie-consent-banner-opt-out__form:last-child{margin:0 0 8px}.cookie-consent-banner-opt-out__form .cookie-consent-banner-opt-out__action,.cookie-consent-banner-opt-out__modal-action>button:last-child{margin:0}@media screen and (max-width:800px){.cookie-consent-banner-opt-out__modal-action>button{width:100%}}@media screen and (max-width:540px){.cookie-consent-banner-opt-out{-webkit-flex-wrap:wrap;flex-wrap:wrap}.cookie-consent-banner-opt-out__message-container{margin-right:0}.cookie-consent-banner-opt-out__actions{-webkit-flex-direction:column;flex-direction:column;width:100%}.cookie-consent-banner-opt-out__action{width:100%;-moz-box-sizing:border-box;box-sizing:border-box;margin:0 0 8px}.cookie-consent-banner-opt-out__action:last-child{margin:0}}.cookie-consent-snackbar{position:fixed;bottom:0;left:50%;-webkit-transform:translate(-50%);transform:translate(-50%);padding:8px;color:#fff;font-family:Proxima Nova,-apple-system,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;max-height:500px;-webkit-transition-property:max-height;transition-property:max-height;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-in-out;transition-timing-function:ease-in-out;width:100%;max-width:600px;-moz-box-sizing:border-box;box-sizing:border-box;z-index:2147483647}.cookie-consent-snackbar__content{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;border-radius:6px}.cookie-consent-snackbar--success .cookie-consent-snackbar__content{background-color:#00a650}.cookie-consent-snackbar--error .cookie-consent-snackbar__content{background-color:#f23d4f}.cookie-consent-snackbar__message{color:#fff;-webkit-flex-grow:1;flex-grow:1;word-break:break-word}.cookie-consent-snackbar--collapsed{max-height:0}.cookie-consent-snackbar--hidden{display:none}.cookie-consent-snackbar__close{margin-left:8px;font-family:Proxima Nova,-apple-system,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;border:0;padding:0;background-color:transparent;color:#fff;text-transform:uppercase;font-weight:600;font-size:inherit}@media screen and (max-width:280px){.cookie-consent-snackbar .cookie-consent-snackbar__content{-webkit-flex-wrap:wrap;flex-wrap:wrap;padding:12px}.cookie-consent-snackbar__close{margin-left:0;margin-top:8px}}.cookie-consent-snackbar__close:focus{outline:2px solid #3483fa}.cookie-consent-snackbar{font-size:16px}.cookie-consent-snackbar__content{padding:23px 24px}</style>\n<style media="(min-width: 1024px)">@charset "utf-8";\n/*\n * Navigation\n * @platform "mercadolibre"\n * @version 5.19.1\n * @author MercadoLibre.com\n */\n@font-face{font-family:"navigation";src:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.eot");src:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.eot#iefix") format("embedded-opentype"),url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.woff2") format("woff2"),url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.woff") format("woff"),url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.ttf") format("truetype"),url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.svg#navigation") format("svg");font-weight:normal;font-style:normal}[class^=nav-icon-],[class*=" nav-icon-"]{font-style:normal}[class^=nav-icon-]:before,[class*=" nav-icon-"]:before{display:inline-block;font-variant:normal;margin:0;speak:none;text-align:center;width:1em;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:"navigation"}.nav-icon-back-o:before,.nav-header .nav-header-btn:before{content:"\xee\xa8\x81"}.nav-icon-bookmarks-o:before{content:"\xee\xa8\x82"}.nav-icon-bookmarks:before{content:"\xee\xa8\x83"}.nav-icon-chevron-right-o:before{content:"\xee\xa8\x84"}.nav-icon-chevron-right:before{content:"\xee\xa8\x85"}.nav-icon-chevron-up-o:before{content:"\xee\xa8\x86"}.nav-icon-chevron-up:before{content:"\xee\xa8\x87"}.nav-icon-close:before{content:"\xee\xa8\x88"}.nav-icon-facebook:before{content:"\xee\xa8\x89"}.nav-icon-gplus:before{content:"\xee\xa8\x8a"}.nav-icon-help-o:before{content:"\xee\xa8\x8b"}.nav-icon-help:before{content:"\xee\xa8\x8c"}.nav-icon-instagram:before{content:"\xee\xa8\x8d"}.nav-icon-login-o:before{content:"\xee\xa8\x8e"}.nav-icon-logout-o:before{content:"\xee\xa8\x8f"}.nav-icon-logout:before{content:"\xee\xa8\x90"}.nav-icon-notifications-o:before{content:"\xee\xa8\x91"}.nav-icon-notifications:before{content:"\xee\xa8\x92"}.nav-icon-official-store-o:before{content:"\xee\xa8\x93"}.nav-icon-register-o:before{content:"\xee\xa8\x94"}.nav-icon-search-o:before{content:"\xee\xa8\x95"}.nav-icon-search:before{content:"\xee\xa8\x96"}.nav-icon-sell-o:before{content:"\xee\xa8\x97"}.nav-icon-time-o:before{content:"\xee\xa8\x98"}.nav-icon-twitter:before{content:"\xee\xa8\x99"}.nav-icon-user-o:before{content:"\xee\xa8\x9a"}.nav-icon-user:before{content:"\xee\xa8\x9b"}.nav-icon-youtube:before{content:"\xee\xa8\x9c"}.nav-icon-close-o:before{content:"\xee\xa8\x9d"}.nav-icon-bookmarks-medium:before{content:"\xee\xa8\x9e"}.nav-icon-cart-empty-medium:before{content:"\xee\xa8\x9f"}.nav-icon-phone:before{content:"\xee\xa8\xa0"}.nav-icon-cart-empty-small:before{content:"\xee\xa8\xa1"}.nav-icon-cart-full-medium:before{content:"\xee\xa8\xa2"}.nav-icon-cart-full-small:before{content:"\xee\xa8\xa3"}.nav-icon-help-medium:before{content:"\xee\xa8\xa4"}.nav-icon-notifications-medium:before{content:"\xee\xa8\xa5"}.nav-icon-user-medium:before{content:"\xee\xa8\xa6"}.nav-icon-search-ml:before{content:"\xee\xa8\xa7"}.nav-icon-user-rounded:before{content:"\xee\xa8\xa8"}.nav-icon-app:before{content:"\xee\xa8\xa9"}.nav-icon-search-plus:before{content:"\xee\xa8\xaa"}.nav-icon-vender-mobile:before{content:"\xee\xa8\xab"}.nav-icon-bookmarks-mobile:before{content:"\xee\xa8\xac"}.nav-icon-categories-mobile:before{content:"\xee\xa8\xad"}.nav-icon-create-account-mobile:before{content:"\xee\xa8\xae"}.nav-icon-deals-mobile:before{content:"\xee\xa8\xaf"}.nav-icon-download-mobile:before{content:"\xee\xa8\xb0"}.nav-icon-help-mobile:before{content:"\xee\xa8\xb1"}.nav-icon-history-mobile:before{content:"\xee\xa8\xb2"}.nav-icon-logout-mobile:before{content:"\xee\xa8\xb3"}.nav-icon-my-account-mobile:before{content:"\xee\xa8\xb4"}.nav-icon-navigation-mobile:before{content:"\xee\xa8\xb5"}.nav-icon-notifications-mobile:before{content:"\xee\xa8\xb6"}.nav-icon-points-mobile:before{content:"\xee\xa8\xb7"}.nav-icon-purchases-mobile:before{content:"\xee\xa8\xb8"}.nav-icon-stores-mobile:before{content:"\xee\xa8\xb9"}.nav-icon-wallet-mobile:before{content:"\xee\xa8\xba"}.nav-icon-contact-ms:before{content:"\xee\xa8\xbb"}.nav-icon-cart-ms:before{content:"\xee\xa8\xbc"}.nav-icon-close-ms:before{content:"\xee\xa8\xbd"}.nav-icon-search-ms:before{content:"\xee\xa8\xbe"}.nav-icon-search-spinner-ms:before{content:"\xee\xa8\xbf"}.nav-icon-twitter-ms:before{content:"\xee\xa9\x80"}.nav-icon-facebook-ms:before{content:"\xee\xa9\x81"}.nav-icon-instagram-ms:before{content:"\xee\xa9\x82"}.nav-icon-points-discounts-mobile:before{content:"\xee\xa9\x83"}.nav-icon-mercado-credits-mobile:before{content:"\xee\xa9\x84"}.nav-icon-cp-location-mobile:before{content:"\xee\xa9\x85"}.nav-icon-nav-icon-cp-location-desktop-guest:before{content:"\xee\xa9\x86"}.nav-icon-nav-icon-cp-location-desktop-logged:before{content:"\xee\xa9\x87"}.nav-icon-supermercado:before{content:"\xee\xa9\x88"}.nav-icon-youtube-ms:before{content:"\xee\xa9\x89"}.nav-icon-home:before{content:"\xee\xa9\x90"}.nav-icon-quotations-mobile:before{content:"\xee\xa9\x91"}.nav-icon-pi-logout-mobile:before{content:"\xee\xa9\x92"}.nav-icon-map-search-mobile:before{content:"\xee\xa9\x93"}.nav-icon-subscriptions-mobile-video:before{content:"\xee\xa9\x94"}.nav-icon-contact-tc:before{content:"\xee\xa9\x95"}.nav-icon-subscriptions-mobile-video-music:before{content:"\xee\xa9\x96"}.nav-icon-subscriptions-mobile-music:before{content:"\xee\xa9\x97"}.nav-icon-compra-internacional:before{content:"\xee\xa9\x98"}.nav-icon-moda-mobile:before{content:"\xee\xa9\x99"}.nav-icon-mshops-mobile:before{content:"\xee\xa9\xa0"}.nav-icon-summary-mobile:before{content:"\xee\xa9\xa1"}.nav-icon-best-sellers-mobile:before{content:"\xee\xa9\xa2"}.nav-icon-live-mobile:before{content:"\xee\xa9\xa3"}html,body{height:100%;margin:0;padding:0;width:100%}body{border-collapse:collapse;display:table;background-color:#fff;font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif,sans-serif;font-size:14px;table-layout:fixed}.nav-header,[role=main],.nav-footer{display:table-row;width:100%}[role=main]{height:100%}[role=main] .nav-bounds{-moz-box-sizing:border-box;box-sizing:border-box}[role=main] .nav-bounds[class*=ch-box-]{border:none;background-color:rgba(0,0,0,0)}.nav-bounds{display:block;padding:0 10px;margin:0 auto}.nav-footer-navigation,.nav-footer-access,#nav-header-user-switch,[for=nav-header-user-switch],.nav-header-user-layer a:last-child{display:none}.nav-header{font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif;background-color:#ffdb15;color:#333;-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color:rgba(0,0,0,0);cursor:default;border-bottom:0 solid #fff}.nav-header .nav-bounds{position:relative;padding:50px 0 0}.nav-header,.nav-header *,.nav-header *:before,.nav-header *:after{-moz-box-sizing:border-box;box-sizing:border-box}.nav-header.nav-header-sticky{position:fixed;z-index:900}.nav-header.nav-header-sticky+main>.nav-bounds,.nav-header.nav-header-sticky+main>.nav-main-content,.nav-header.nav-header-sticky~main>.nav-bounds,.nav-header.nav-header-sticky~main>.nav-main-content{padding-top:50px}[for=nav-header-menu-switch]{position:absolute;top:0;right:0;height:50px;width:45px;cursor:pointer}#nav-header-menu-switch{display:none}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-top-bread{-webkit-transform:translate(0, 4px) rotate(40deg);transform:translate(0, 4px) rotate(40deg)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-patty{-webkit-transform:scale(0, 0);transform:scale(0, 0)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-bottom-bread{-webkit-transform:translate(0, -4px) rotate(-40deg);transform:translate(0, -4px) rotate(-40deg)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper #nav-header-menu{display:block}.hamburger-bottom-bread,.hamburger-patty,.hamburger-top-bread{position:absolute;display:block;width:20px;height:2px;background-color:#333;top:50%;border-radius:0;-webkit-transition:all 100ms ease-out;transition:all 100ms ease-out;left:12.5px}.hamburger-top-bread{margin-top:-5px}.hamburger-patty{margin-top:-1px}.hamburger-bottom-bread{margin-top:3px}#nav-header-menu:after,#nav-header-menu:before{border-style:solid;border-color:rgba(0,0,0,0);position:absolute;bottom:100%;-webkit-transform:translateY(1px);transform:translateY(1px);content:""}#nav-header-menu{background-color:#fff;display:none;position:relative}#nav-header-menu a{display:block;height:50px;padding:0 10px;font-size:16px;text-decoration:none;line-height:50px;color:#333;border-top:1px solid #eaeaea;position:relative}#nav-header-menu a [class^=nav-icon-]:before,#nav-header-menu a [class*=" nav-icon-"]:before{display:none}#nav-header-menu a:first-child\xc2\xa0{border-top-color:#fff}#nav-header-menu a:after{position:absolute;top:0;right:20px;display:block;font-family:"navigation";color:#404040;content:"\xee\xa8\x85"}#nav-header-menu:before{border-bottom-color:#fff;border-width:8px;right:14.5px;pointer-events:none}#nav-header-menu:after{border-width:7px;border-bottom-color:#fff;right:15.5px;pointer-events:none}.nav-logo{background-image:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/logo__small.png");background-repeat:no-repeat;display:inline-block;height:28px;overflow:hidden;text-indent:-999px;width:39px;top:11px;position:absolute;left:10px}@media(-webkit-min-device-pixel-ratio: 2),(min-resolution: 192dpi),(min-resolution: 2dppx){.nav-logo{background-image:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/logo__small@2x.png");background-size:39px 28px}}.nav-search{position:absolute;left:59px;top:0;right:45px;height:50px;padding:8px 0}.nav-bounds-with-cart .nav-search{right:94px}input[type=text].nav-search-input,input[type=search].nav-search-input{border:0 1px 2px 0 rgba(0,0,0,.2);color:#333;font-size:16px;border-radius:2px;width:100%;height:100%;margin:0;background-color:#fff;padding:6px 6px 6px 35px;box-shadow:none;font-family:inherit}input[type=text].nav-search-input:focus,input[type=search].nav-search-input:focus{box-shadow:0 0 1px rgba(0,0,0,0);border:0 1px 2px 0 rgba(0,0,0,.2);padding:6px 6px 6px 35px;outline:0}input[type=text].nav-search-input.ch-autocomplete-loading,input[type=search].nav-search-input.ch-autocomplete-loading{background-position:right 30px center}button.nav-search-btn,button.nav-search-btn:focus{position:absolute;top:0;right:0;height:50px;padding:0;width:48px;background:none;border:none;font-size:22px;color:#666;line-height:1em}.nav-icon-close:before,.nav-icon-search:before{display:inline-block}.nav-icon-close span,.nav-icon-search span{display:none}.nav-footer{background-color:#eee;color:#999;font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif;font-size:14px;overflow:hidden}.nav-footer,.nav-footer *,.nav-footer *:before,.nav-footer *:after{-moz-box-sizing:border-box;box-sizing:border-box}.nav-footer a,.nav-footer a:link,.nav-footer a:visited,.nav-footer a:active{color:#333;text-decoration:none}.nav-footer .nav-footer-change-device,.nav-footer .nav-footer-change-device:link,.nav-footer .nav-footer-change-device:visited,.nav-footer .nav-footer-change-device:active{float:right;display:inline-block;line-height:14px;color:#666}.nav-footer-primaryinfo{margin:0 0 25px 0;border-top:.5px solid #ddd;padding-top:25px;font-size:14px}.nav-footer-secondaryinfo{font-size:12px}.nav-footer-copyright{font-size:inherit;display:inline-block;color:#666;vertical-align:top;width:60%;line-height:14px}.nav-footer-user{padding:25px 12px 20px 12px;border-radius:5px;text-align:center;overflow:hidden;font-size:0}.nav-footer-user .nav-footer-login,.nav-footer-user .nav-footer-registration{font-size:14px;line-height:20px;display:inline-block}.nav-footer-user .nav-footer-login{padding-right:.7em;border-right:.5px solid #ddd}.nav-footer-user .nav-footer-registration{padding-left:.7em}.nav-footer-user strong{font-weight:normal;color:#666;display:inline-block;max-width:100px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;vertical-align:bottom}.nav-footer-user.logged{font-size:14px}.nav-footer-user.logged>a{margin-left:12.5px}.nav-footer-secondary-user{padding:0px 12px 20px;border-radius:5px;text-align:center;margin-top:0;margin-bottom:0;font-size:14px}.nav-footer-downloadapp-banner{display:block;margin-top:32px;text-align:center;background-color:#ffdb08;padding:0 15px}.nav-footer-downloadapp-banner a.nav-footer-downloadapp{font-size:11px;vertical-align:middle;color:#666;padding-top:0;display:inline-block}.nav-footer-downloadapp-banner a.nav-footer-downloadapp:active,.nav-footer-downloadapp-banner a.nav-footer-downloadapp:link,.nav-footer-downloadapp-banner a.nav-footer-downloadapp:visited{color:#666}.nav-footer-downloadapp-banner .nav-icon.nav-icon-downloadapp{background:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/49x64-download-icon.png") top center no-repeat;background-size:49px 64px;display:inline-block;width:49px;height:64px;margin-top:-8px;margin-right:10px;vertical-align:middle}@media(-webkit-min-device-pixel-ratio: 2),(min-resolution: 2dppx),(min-resolution: 192dpi){.nav-footer-downloadapp-banner .nav-icon.nav-icon-downloadapp{background:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/97x127-download-icon@2x.png");background-size:49px 64px;width:49px;height:64px}}.nav-footer-info-wrapper{padding:0 10px}.nav-footer-hp{height:1px;width:1px;position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}.nav-footer-access{font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif}#nav-footer-access-switch{display:none}input[type=text].nav-search-input,input[type=search].nav-search-input{background-color:rgba(255,255,255,.7);border:none;position:relative;-moz-box-sizing:border-box;box-sizing:border-box;z-index:915}input[type=text].nav-search-input:focus,input[type=search].nav-search-input:focus{border:none}.nav-header-has-search-active input[type=text].nav-search-input:focus,.nav-header-has-search-active input[type=search].nav-search-input:focus{color:#666;box-shadow:none}input[type=text].nav-search-input::-webkit-input-placeholder, input[type=search].nav-search-input::-webkit-input-placeholder{color:rgba(0,0,0,.25);font-size:16px;font-weight:400}input[type=text].nav-search-input::-moz-placeholder, input[type=search].nav-search-input::-moz-placeholder{color:rgba(0,0,0,.25);font-size:16px;font-weight:400}input[type=text].nav-search-input::placeholder,input[type=search].nav-search-input::placeholder{color:rgba(0,0,0,.25);font-size:16px;font-weight:400}.nav-header-has-search-active input[type=text].nav-search-input,.nav-header-has-search-active input[type=search].nav-search-input{padding-right:45px}button.nav-search-btn,button.nav-search-btn:focus{left:-6px;right:initial;z-index:920}button.nav-search-btn span,button.nav-search-btn:focus span{display:none}.nav-header-has-search-active button.nav-search-btn,.nav-header-has-search-active button.nav-search-btn:focus{display:none}.nav-search-btn .nav-icon-search{font-size:19px}.nav-search-btn .nav-icon-search:before{content:"\xee\xa8\x95";vertical-align:bottom}.nav-header .nav-header-btn{position:absolute;top:3px;left:0;padding:20px;text-indent:-200%;border:0;box-shadow:none;background:none}.nav-header .nav-header-btn:before{font-family:navigation;font-size:20px;line-height:1;color:#333;position:absolute;left:10px;top:10px;text-indent:0}.nav-header .nav-header-btn--no-arrow{text-indent:0;border:1px solid rgba(0,0,0,.15);padding:0 10px;left:10px;top:10px}.nav-header .nav-header-btn--no-arrow:before{display:none}.nav-header .nav-cart{color:#333}.nav-search{z-index:910;will-change:left;-webkit-transition:left .15s ease-out;transition:left .15s ease-out}.nav-search:before{content:"";display:none;position:absolute;top:0;left:-10px;right:-10px;height:100%;background-color:#fff;opacity:0;will-change:opacity;-webkit-transition:opacity .15s ease-out;transition:opacity .15s ease-out}.nav-header-has-search-active .nav-search:before{display:block}.nav-header--is-enter .nav-search:before{opacity:1}.nav-header--is-leave .nav-search:before{opacity:0}.nav-search .nav-category{z-index:917}.nav-search-close-btn,.nav-search-close-btn:focus,.nav-search-clear-btn,.nav-search-clear-btn:focus{font-size:22px;line-height:1;color:#333;border:0;background:none;display:none;position:absolute;top:0;z-index:920;height:50px;padding:0;width:48px}.nav-search-close-btn,.nav-search-close-btn:focus{top:1px;left:-4px;opacity:0;will-change:opacity;-webkit-transition:opacity .15s ease-out;transition:opacity .15s ease-out}.nav-search-close-btn:before,.nav-search-close-btn:focus:before{content:"\xee\xa8\x81";font-family:navigation}.nav-header-has-search-active .nav-search-close-btn,.nav-header-has-search-active .nav-search-close-btn:focus{display:block}.nav-header--is-enter .nav-search-close-btn,.nav-header--is-enter .nav-search-close-btn:focus{opacity:1}.nav-header--is-leave .nav-search-close-btn,.nav-header--is-leave .nav-search-close-btn:focus{opacity:0}.nav-search-clear-btn,.nav-search-clear-btn:focus{right:-4px}.nav-search-clear-btn:before{content:"\xee\xa8\x9d";font-family:"navigation";vertical-align:bottom}.nav-search--has-text .nav-search-clear-btn{display:block}.nav-header--is-leave .nav-search-clear-btn{display:none}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-top-bread,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-top-bread{-webkit-transform:translate(0, 8px) rotate(40deg);transform:translate(0, 8px) rotate(40deg)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-bottom-bread,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-bottom-bread{-webkit-transform:translate(0, -8px) rotate(-40deg);transform:translate(0, -8px) rotate(-40deg)}.hamburger-top-bread{margin-top:-6.6666666667px}.hamburger-patty{margin-top:-.6666666667px}.hamburger-bottom-bread{margin-top:5.3333333333px}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-top-bread,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-top-bread{-webkit-transform:translate(0, 6px) rotate(40deg);transform:translate(0, 6px) rotate(40deg)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-patty,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-patty{-webkit-transform:scale(0, 0);transform:scale(0, 0)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-bottom-bread,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-bottom-bread{-webkit-transform:translate(0, -6px) rotate(-40deg);transform:translate(0, -6px) rotate(-40deg)}#nav-header-menu{padding:16px 0}#nav-header-menu a{padding:0 16px 0 72px;height:50px;line-height:50px;border:none}#nav-header-menu a.notifications-widget,#nav-header-menu a.option-help,#nav-header-menu a.option-register,#nav-header-menu a.bookmarks-widget{border-left:none}#nav-header-menu a.option-my-account:after{content:"\xee\xa8\x9a"}#nav-header-menu a.option-notifications:after{content:"\xee\xa8\x91"}#nav-header-menu a.option-logout:after{content:"\xee\xa8\x8f"}#nav-header-menu a.option-bookmarks:after{content:"\xee\xa8\x82"}#nav-header-menu a.option-sell:after{content:"\xee\xa8\x97"}#nav-header-menu a.option-help:after{content:"\xee\xa8\x8b"}#nav-header-menu a.option-login:after{content:"\xee\xa8\x8e"}#nav-header-menu a.option-register:after{content:"\xee\xa8\x94"}#nav-header-menu a:after{left:24px;font-size:24px}.nav-bounds.nav-bounds-with-cart [for=nav-header-menu-switch]{right:45px}.nav-bounds-with-cart #nav-header-menu:before{right:59.5px}.nav-bounds-with-cart #nav-header-menu:after{right:60.5px}.nav-cart{display:none}.nav-cart.nav-cart-full .nav-icon-cart:before{content:"\xee\xa8\xa3"}.nav-cart.nav-cart-empty .nav-icon-cart:before{content:"\xee\xa8\xa1"}.nav-bounds.nav-bounds-with-cart .nav-cart{display:block;position:absolute;right:0;top:0;height:50px;width:45px;text-align:center}.nav-bounds.nav-bounds-with-cart .nav-cart :before{font-size:18px;line-height:50px}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart{margin-left:-8px}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart-quantity{position:absolute;right:14px;top:11px;font-size:11px;line-height:15px;width:20px;text-align:center}.nav-bounds.nav-bounds-with-cart .nav-cart.nav-cart-empty .nav-icon-cart-quantity{display:none}#mlMsg{margin:0 auto;-moz-box-sizing:border-box;box-sizing:border-box;max-width:1220px}#mlMsg .content{padding-right:20px}#mlMsg p{margin:0}#mlMsg #mlMsgRemove{width:15px;height:16px;position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);right:12px;cursor:pointer}.nav-header-notifications-badge{display:none}.nav-header-menu-wrapper>.nav-header-notifications-badge{display:none}.ui-message{background-color:#f5f5f5;color:#666;font-size:14px;line-height:1.25;padding:20px;text-align:center;position:relative;width:100%}.ui-message__icon{float:left;margin-right:5px}.ui-message__icon .ui-icon{vertical-align:top}.ui-message__text{overflow:auto}.ui-message--info{background-color:#f5f5f5;color:#666}.ui-message--success{background-color:#64c574;color:#fff}.ui-message__text{overflow:hidden;display:inline}.ui-message__content{display:inline}.ui-message--has-icon.ui-message--warn .ui-message__icon:after{content:url("data:image/svg+xml,%3C%3Fxml version=\'1.0\' encoding=\'UTF-8\' standalone=\'no\'%3F%3E%3Csvg width=\'16px\' height=\'16px\' viewBox=\'0 0 68 68\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%28-414.000000, -365.000000%29\'%3E%3Cg transform=\'translate%28414.000000, 365.000000%29\'%3E%3Ccircle fill=\'rgba(245, 120, 25, 0.999999)\' cx=\'34\' cy=\'34\' r=\'34\'%3E%3C/circle%3E%3Cpolygon fill=\'%23FFFFFF\' points=\'30 16 38 16 37 38 31 38\'%3E%3C/polygon%3E%3Ccircle fill=\'%23FFFFFF\' cx=\'34\' cy=\'48\' r=\'4\'%3E%3C/circle%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A")}.ui-message--has-icon.ui-message--default .ui-message__icon:after,.ui-message--has-icon.ui-message--info .ui-message__icon:after{content:url("data:image/svg+xml,%3C%3Fxml version=\'1.0\' encoding=\'UTF-8\' standalone=\'no\'%3F%3E%3Csvg width=\'16px\' height=\'16px\' viewBox=\'0 0 16 16\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%28-22.000000, -180.000000%29\'%3E%3Cg transform=\'translate%280.000000, 165.000000%29\'%3E%3Cg transform=\'translate%2822.000000, 15.000000%29\'%3E%3Ccircle id=\'circle\' fill=\'rgba(25, 95, 244, 0.999999)\' cx=\'8\' cy=\'8\' r=\'8\'%3E%3C/circle%3E%3Cpolygon id=\'rectangle\' fill=\'%23FFFFFF\' points=\'7 12 9 12 8.75 7 7.25 7\'%3E%3C/polygon%3E%3Ccircle id=\'circle\' fill=\'%23FFFFFF\' cx=\'8\' cy=\'5\' r=\'1\'%3E%3C/circle%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A")}.ui-message--has-icon.ui-message--success .ui-message__icon:after{content:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Ccircle%20cx%3D%228%22%20cy%3D%228%22%20r%3D%228%22%20fill%3D%22%23000%22%20fill-opacity%3D%22.208%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M12.4%206L11%204.6l-4%204-2-2L3.6%208%207%2011.4z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")}.ui-message--has-icon.ui-message--error .ui-message__icon:after{content:url("data:image/svg+xml,%3C%3Fxml version=\'1.0\' encoding=\'UTF-8\' standalone=\'no\'%3F%3E%3Csvg width=\'16px\' height=\'16px\' viewBox=\'0 0 68 68\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg id=\'HIGH-final\' stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%28-416.000000, -368.000000%29\'%3E%3Cg transform=\'translate%28270.000000, 256.000000%29\'%3E%3Cg transform=\'translate%28146.000000, 112.000000%29\'%3E%3Ccircle fill=\'rgba(208, 1, 27, 0.999999)\' cx=\'34\' cy=\'34\' r=\'34\'%3E%3C/circle%3E%3Crect opacity=\'0.3\' x=\'17\' y=\'17\' width=\'34\' height=\'34\'%3E%3C/rect%3E%3Cpolygon fill=\'%23FFFFFF\' points=\'20 43.9999997 24.0000003 48 48 24.0000003 43.9999997 20\'%3E%3C/polygon%3E%3Cpolygon fill=\'%23FFFFFF\' transform=\'translate%2834.000000, 34.000000%29 scale%28-1, 1%29 translate%28-34.000000, -34.000000%29 \' points=\'20 43.9999997 24.0000003 48 48 24.0000003 43.9999997 20\'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A")}.ui-message--warn,.ui-message--error,.ui-message--success{color:#fff}.ui-message--warn{background-color:#fbab60}.ui-message--error{background-color:#ff5a5f}.ui-message--success{background-color:#39b54a}.ui-message{border-radius:3px;text-align:left;padding-right:48px}.ui-message__icon{margin-right:8px}.ui-message__close{position:relative;width:16px;height:16px;cursor:pointer;padding:24px;position:absolute;top:50%;right:0;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.ui-message__close:after,.ui-message__close:before{position:absolute;left:8px;top:0;content:"";height:16px;width:2px;background-color:#fff;cursor:pointer}.ui-message__close:before{-webkit-transform:rotate(45deg) translateX(20px);transform:rotate(45deg) translateX(20px)}.ui-message__close:after{-webkit-transform:rotate(-45deg) translateY(20px);transform:rotate(-45deg) translateY(20px)}.ui-message--info{background-color:#5c95ff;color:#fff}.ui-message.ui-message--post-registration,.ui-message.ui-message--overdue-loans{border-radius:0;padding:0;text-align:left}.ui-message.ui-message--post-registration .ui-message--bounds,.ui-message.ui-message--overdue-loans .ui-message--bounds{-moz-box-sizing:border-box;box-sizing:border-box;max-width:1200px;margin:0 auto;position:relative}.ui-message.ui-message--post-registration .ui-message--bounds{padding:20px 46px 20px 34px}.ui-message.ui-message--post-registration .ui-message--bounds .ui-message__icon{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);left:10px}.ui-message.ui-message--post-registration .ui-message--bounds .ui-message__close{right:-6px;-moz-box-sizing:border-box;box-sizing:border-box}.ui-message.ui-message--post-registration a{color:#fff;text-decoration:underline}.ui-message.ui-message--overdue-loans{background-color:#ff5a5f;color:#fff;font-size:0}.ui-message.ui-message--overdue-loans .ui-message--bounds{padding:22px 120px 22px 18px}.ui-message.ui-message--overdue-loans .ui-message__text{display:inline !important}.ui-message.ui-message--overdue-loans .ui-message--overdue-loans-cta{font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif;display:inline-block;position:absolute;top:50%;right:18px;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:84px;height:36px;line-height:36px;color:#fff;border:solid 1px #fff;border-radius:4px;text-align:center;text-decoration:none;-moz-box-sizing:border-box;box-sizing:border-box}.ui-message.ui-message--overdue-loans .ui-message__text,.ui-message.ui-message--overdue-loans .ui-message--overdue-loans-cta{font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif !important;font-size:14px}#nav-header-overdue-loans{text-decoration:none}.kyc-active-campaign__nav-header{text-decoration:none}.kyc-active-campaign__nav-header .kyc-active-campaign__message{background-color:#ff5a5f;color:#fff;border-radius:0;padding:0;text-align:left}.kyc-active-campaign__nav-header .kyc-active-campaign__message .kyc-active-campaign__bounds{-moz-box-sizing:border-box;box-sizing:border-box;max-width:1200px;margin:0 auto;position:relative;padding:13px;font-size:14px}.kyc-active-campaign__nav-header .kyc-active-campaign__message .kyc-active-campaign__bounds .kyc-active-campaign__text{display:inline}.kyc-active-campaign__nav-header .kyc-active-campaign__message .kyc-active-campaign__bounds .kyc-active-campaign__cta{display:inline-block;margin-left:10px;padding:8px 20px;color:#fff;border:solid 1px #fff;border-radius:4px}[class^=nav-icon-]:before,[class*=" nav-icon-"]:before{display:inline-block}[class^=nav-icon-] span,[class*=" nav-icon-"] span{display:none}html,body{font-size:13px;background-color:#fff}.nav-bounds{max-width:1220px}.nav-title,.nav-header-btn,.nav-footer-user,.nav-footer-secondary-user{display:none}.nav-header{background-image:none;height:56px;font-size:13px;font-weight:400}.nav-header .nav-bounds{padding:0 0 0 160px;height:56px}.nav-header.nav-header-sticky+main>.nav-bounds,.nav-header.nav-header-sticky+main>.nav-main-content,.nav-header.nav-header-sticky~main>.nav-bounds,.nav-header.nav-header-sticky~main>.nav-main-content{padding-top:56px}[for=nav-header-menu-switch]{display:none}#nav-header-menu{display:block;font-size:0;margin:0 0 0 16px;background-color:rgba(0,0,0,0);float:right;height:56px;padding:0;white-space:nowrap}#nav-header-menu a{display:inline;height:auto;line-height:1em;border-top:none;color:#333;text-decoration:none;border-left:1px solid rgba(51,51,51,.2);padding:1px 16px;line-height:56px;font-size:13px}#nav-header-menu a [class^=nav-icon-]:before,#nav-header-menu a [class*=" nav-icon-"]:before{display:inline-block}#nav-header-menu a:after{display:none}#nav-header-menu a:hover{color:#000}#nav-header-menu a:hover i:before{color:#000}#nav-header-menu a.bookmarks-widget{border-left:none;padding-left:0;display:inline}#nav-header-menu i:before{color:#333;vertical-align:middle;font-size:16px;text-shadow:0 1px rgba(255,255,255,.75)}#nav-header-menu i.nav-icon-help:before{font-size:17px}#nav-header-menu i span{font-size:14px}#nav-header-menu .nav-icon-user{pointer-events:none}#nav-header-menu .nav-icon-user:before{margin-left:5px}#nav-header-menu:before,#nav-header-menu:after{display:none}[data-country=BR] #nav-header-menu .nav-icon-help:before{display:none}[data-country=BR] #nav-header-menu .nav-icon-help span{display:inline-block}.nav-header-user{display:inline-block;position:relative;height:46px;line-height:46px}[for=nav-header-user-switch]{cursor:pointer;font-size:12px;color:#333;margin:0 16px;padding:10px 0;text-transform:uppercase;display:inline}[for=nav-header-user-switch]:hover{color:#000}#nav-header-menu [for=nav-header-user-switch]:hover i:before{color:#000}.ie8 [for=nav-header-user-switch],.lt-ie9 [for=nav-header-user-switch]{margin:0}.ie8 #nav-header-menu [for=nav-header-user-switch] a,.lt-ie9 #nav-header-menu [for=nav-header-user-switch] a{font-size:12px}#nav-header-user-switch{display:none}#nav-header-user-switch:checked+.nav-header-user-layer{display:block}.nav-header-user-layer{background-color:#fff;border:1px solid #dedede;border-radius:5px;box-shadow:2px 2px 2px rgba(99,99,99,.2);right:0;position:absolute;top:100%;z-index:3;width:150px;display:none}.nav-header-user-layer:before,.nav-header-user-layer:after{border:outset rgba(0,0,0,0);border-bottom-style:solid;bottom:100%;content:"";display:block;height:0;pointer-events:none;position:absolute;width:0}.nav-header-user-layer:before{border-bottom-color:#dedede;border-width:10px;right:4px}.nav-header-user-layer:after{border-bottom-color:#fff;border-width:9px;right:5px}#nav-header-menu .nav-header-user-layer a{color:#000;display:block;line-height:25px;margin:3px 0;padding:5px 15px;text-decoration:none;border-left:none}#nav-header-menu .nav-header-user-layer a:last-child{display:block}#nav-header-menu .nav-header-user-layer a:hover{color:#000;background-color:#fefbd6}.nav-logo{background-image:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/logo__large_plus.png");height:34px;top:11px;width:134px}[data-country=BR] .nav-logo,[data-country=PT] .nav-logo{background-image:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/logo-pt__large_plus.png")}@media(-webkit-min-device-pixel-ratio: 2),(min-resolution: 192dpi),(min-resolution: 2dppx){.nav-logo{background-image:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/logo__large_plus@2x.png");background-size:134px 34px}[data-country=BR] .nav-logo,[data-country=PT] .nav-logo{background-image:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/logo-pt__large_plus@2x.png")}}.nav-search{padding:8px 1px;overflow:auto;max-width:720px;height:56px;position:relative;left:-1px}input[type=text].nav-search-input,input[type=search].nav-search-input{padding:7px 60px 9px 15px;border-radius:2px;background-color:#fff;border:0 1px 2px 0 rgba(0,0,0,.2)}input[type=text].nav-search-input:focus,input[type=search].nav-search-input:focus{border:0 1px 2px 0 rgba(0,0,0,.2);padding:7px 60px 9px 15px}input[type=text].nav-search-input::-webkit-input-placeholder, input[type=search].nav-search-input::-webkit-input-placeholder{visibility:hidden}input[type=text].nav-search-input::-moz-placeholder, input[type=search].nav-search-input::-moz-placeholder{visibility:hidden}input[type=text].nav-search-input::placeholder,input[type=search].nav-search-input::placeholder{visibility:hidden}input[type=text].nav-search-input .ch-autocomplete-loading,input[type=search].nav-search-input .ch-autocomplete-loading{background-position:right 10px center}button.nav-search-btn,button.nav-search-btn:focus{border-radius:0 2px 2px 0;width:46px;height:40px;border:0 1px 2px 0 rgba(0,0,0,.2);background-color:#fff;background-image:-webkit-linear-gradient(#fff, #f1f1f1);background-image:linear-gradient(#fff, #f1f1f1);top:8px;right:1px}.nav-footer{background-color:#f7f7f7;border-top:1px solid #eee;line-height:1;font-size:13px;font-weight:400}.nav-footer .nav-bounds{padding-top:25px;padding-bottom:25px}.nav-footer .nav-footer-change-device,.nav-footer .nav-footer-change-device:link,.nav-footer .nav-footer-change-device:visited,.nav-footer .nav-footer-change-device:active{float:none;border-left:1px solid #ddd;font-size:14px;padding:0 10px}.nav-footer-copyright{margin:0 10px 5px 0;color:#999;vertical-align:initial;width:auto;line-height:initial;font-size:14px}.nav-footer-navigation{display:inline-block;font-size:0}.nav-footer-navigation a{border-right:1px solid #ddd;font-size:14px;padding:0 10px}.nav-footer-navigation a:last-of-type{border-right:none}.nav-footer-navigation a:first-of-type{padding-left:0}.nav-footer-primaryinfo{margin-top:0;margin-bottom:0;border:0;padding-top:0;font-size:0}.nav-footer-secondaryinfo{display:block;margin:12.5px 0 0}.nav-footer-downloadapp-banner{display:none}.nav-footer .nav-footer-downloadapp-wrapper{display:none}.nav-footer-access{display:block;position:relative;font-size:13px;font-weight:400}.nav-footer-access [for=nav-footer-access-switch] i:before{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.nav-footer-access,.nav-footer-access *,.nav-footer-access *:before,.nav-footer-access *:after{-moz-box-sizing:border-box;box-sizing:border-box}#nav-footer-access-switch:checked+.nav-footer-access .nav-footer-access-content{max-height:0;border-top-width:0}#nav-footer-access-switch:checked+.nav-footer-access [for=nav-footer-access-switch] i:before{-webkit-transform:rotate(0deg);transform:rotate(0deg)}[for=nav-footer-access-switch]{background-color:#f7f7f7;border:1px solid #eee;border-bottom:none;color:#666;cursor:pointer;padding:0 20px;height:32px;line-height:32px;position:absolute;left:50%;bottom:100%;-webkit-transform:translate(-50%, 1px);transform:translate(-50%, 1px);border-radius:5px 5px 0 0;z-index:1}[for=nav-footer-access-switch] i{margin-left:2px;font-size:11px;top:0;position:relative}[for=nav-footer-access-switch] i:before{-webkit-transition:all 200ms linear;transition:all 200ms linear}.ie8 [for=nav-footer-access-switch],.lt-ie9 [for=nav-footer-access-switch]{display:none}.nav-footer-access-content{line-height:0;max-height:170px;overflow:hidden;-webkit-transition:max-height 200ms linear;transition:max-height 200ms linear;font-size:0;background-color:#f7f7f7;border-top:1px solid #eee;margin-top:64px;position:relative;bottom:0px}.nav-footer-access-content a,.nav-footer-access-content a:visited,.nav-footer-access-content a:active,.nav-footer-access-content a:link{color:#999;text-decoration:none}.nav-footer-access-content a:hover{text-decoration:underline}.nav-footer-access-content [class^=nav-icon-]:before,.nav-footer-access-content [href*="twitter.com"]:before,.nav-footer-access-content [href*="facebook.com"]:before,.nav-footer-access-content [href*="plus.google.com"]:before,.nav-footer-access-content [href*="youtube.com"]:before,.nav-footer-access-content [href*="instagram.com"]:before{font-size:18px;margin-right:7px;vertical-align:top}.nav-footer-access-content .nav-icon-twitter:before{font-size:20px;margin-right:5px}.nav-footer-access-content [href*="twitter.com"],.nav-footer-access-content [href*="facebook.com"],.nav-footer-access-content [href*="plus.google.com"],.nav-footer-access-content [href*="youtube.com"],.nav-footer-access-content [href*="instagram.com"]{font-style:normal}.nav-footer-access-content [href*="twitter.com"]:before,.nav-footer-access-content [href*="facebook.com"]:before,.nav-footer-access-content [href*="plus.google.com"]:before,.nav-footer-access-content [href*="youtube.com"]:before,.nav-footer-access-content [href*="instagram.com"]:before{display:inline-block;font-variant:normal;margin:0;speak:none;text-align:center;width:1em;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:"navigation"}.nav-footer-access-content [href*="twitter.com"]:before,.nav-footer-access-content [href*="facebook.com"]:before,.nav-footer-access-content [href*="plus.google.com"]:before,.nav-footer-access-content [href*="youtube.com"]:before,.nav-footer-access-content [href*="instagram.com"]:before{font-size:18px;margin-right:7px;vertical-align:top}.nav-footer-access-content [href*="twitter.com"]:before{content:"\xee\xa8\x99";font-size:20px;margin-right:5px}.nav-footer-access-content [href*="facebook.com"]:before{content:"\xee\xa8\x89"}.nav-footer-access-content [href*="plus.google.com"]:before{content:"\xee\xa8\x8a"}.nav-footer-access-content [href*="youtube.com"]:before{content:"\xee\xa8\x9c"}.nav-footer-access-content [href*="instagram.com"]:before{content:"\xee\xa8\x8d"}.nav-footer-access-col{width:20%;font-size:14px;display:inline-block;vertical-align:top;line-height:20px;margin:25px 0}.nav-footer-access-col ul{padding:0;margin:0;list-style:none}.nav-footer-access-title{color:#666;font-weight:600;margin:0 0 5px;font-size:14px}#nav-header-menu a{padding-top:1px;padding-bottom:1px;font-size:14px;line-height:55px}#nav-header-menu a [class^=nav-icon-]:before,#nav-header-menu a [class*=" nav-icon-"]:before{display:inline}#nav-header-menu a.option-sell,#nav-header-menu a.option-cart{border-left:1px solid rgba(51,51,51,.2)}#nav-header-menu a.option-sell{margin-left:9px}#nav-header-menu:first-child{border-left:none}#nav-header-menu [for=nav-header-user-switch]{margin-left:7px;margin-right:7px}#nav-header-menu .option-cart{display:inline}#nav-header-menu i:before{text-shadow:none}#nav-header-menu i.nav-icon-help:before{font-size:16px}.nav-bounds.nav-bounds-with-cart #nav-header-menu{margin-right:45px}.nav-bounds.nav-bounds-with-cart .nav-cart{top:19px;height:18px;width:25px}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart{margin-left:0}.nav-bounds.nav-bounds-with-cart .nav-cart :before{line-height:27px;font-size:16px;color:#333}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart{position:relative;top:-3px}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart-quantity{display:inline-block;top:-3px;right:8px;font-size:11px;line-height:15px;color:#333}.nav-bounds.nav-bounds-with-cart .nav-cart:hover .nav-icon-cart-quantity{color:#000}.nav-bounds.nav-bounds-with-cart .nav-cart:hover :before{color:#000}.nav-footer-primaryinfo a,.nav-footer-primaryinfo a:link,.nav-footer-primaryinfo a:visited,.nav-footer-primaryinfo a:active{color:#0637b3;text-decoration:none}.nav-header-has-search-active .nav-search:before,.nav-header-has-search-active .nav-search .nav-search-close-btn{display:none}.nav-header-has-search-active button.nav-search-btn,.nav-header-has-search-active button.nav-search-btn:focus{display:inline-block}button.nav-search-btn,button.nav-search-btn:focus{left:auto}.nav-search-btn .nav-icon-search{font-size:18px}.nav-search-btn .nav-icon-search:before{content:"\xee\xa8\x96";vertical-align:top}.nav-search-clear-btn{display:none}#nav-header-menu .nav-icon-notifications:before{content:"\xee\xa8\xa5"}#nav-header-menu .nav-icon-bookmarks:before{content:"\xee\xa8\x9e"}#nav-header-menu .nav-icon-help:before{content:"\xee\xa8\xa4"}#nav-header-menu .nav-icon-user:before{content:"\xee\xa8\xa6"}.nav-cart.nav-cart-full .nav-icon-cart:before{content:"\xee\xa8\xa2"}.nav-cart.nav-cart-empty .nav-icon-cart:before{content:"\xee\xa8\x9f"}input[type=text].nav-search-input::-webkit-input-placeholder, input[type=search].nav-search-input::-webkit-input-placeholder{visibility:visible}input[type=text].nav-search-input::-moz-placeholder, input[type=search].nav-search-input::-moz-placeholder{visibility:visible}input[type=text].nav-search-input::placeholder,input[type=search].nav-search-input::placeholder{visibility:visible}.nav-link-tag{font-size:11px;font-weight:600;color:#fff;border-radius:8px;background-color:#3483fa;line-height:4px;padding:6px;display:inline-block;text-transform:uppercase}.nav-link-tag--small{font-size:8px;padding:1px 3px;line-height:1em}.nav-bounds.nav-bounds-with-cart .nav-cart{overflow:hidden}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart-quantity>b{font-weight:inherit}.nav-header{background-color:#fff159;border:0;position:relative}.nav-header:before{content:"";position:absolute;width:100%;height:100px;left:0;top:0;box-shadow:0 1px 0 0 rgba(0,0,0,.1)}.nav-header.nav-header-plusclean:before,.nav-header.nav-header-pluslite:before{height:56px}.nav-header .ml-count{font-weight:600}#nav-header-menu-mobile{display:none}.nav-footer-user-info{border-top:1px solid #ededed}.nav-footer-copyright{font-size:12px;width:auto}.nav-footer-navigation a{color:#333;padding:0 8px;border:0}.nav-footer-navigation a:link,.nav-footer-navigation a:visited{color:#333}.nav-footer-navigation a:hover,.nav-footer-navigation a:active,.nav-footer-navigation a:focus{color:#000}@-webkit-keyframes jump-in-number{from{-webkit-transform:translateY(100%);transform:translateY(100%)}20%{-webkit-transform:translateY(-30%);transform:translateY(-30%)}40%{-webkit-transform:translateY(10%);transform:translateY(10%)}60%{-webkit-transform:translateY(-10%);transform:translateY(-10%)}80%{-webkit-transform:translateY(5%);transform:translateY(5%)}to{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes jump-in-number{from{-webkit-transform:translateY(100%);transform:translateY(100%)}20%{-webkit-transform:translateY(-30%);transform:translateY(-30%)}40%{-webkit-transform:translateY(10%);transform:translateY(10%)}60%{-webkit-transform:translateY(-10%);transform:translateY(-10%)}80%{-webkit-transform:translateY(5%);transform:translateY(5%)}to{-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fade-out-number{from{opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{opacity:0;-webkit-transform:scale(0);transform:scale(0)}}@keyframes fade-out-number{from{opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{opacity:0;-webkit-transform:scale(0);transform:scale(0)}}@-webkit-keyframes fade-in-number{from{opacity:0}to{opacity:1}}@keyframes fade-in-number{from{opacity:0}to{opacity:1}}@-webkit-keyframes pseudo-ripple{from{-webkit-transform:scale(0);transform:scale(0);opacity:.8}95%{-webkit-transform:scale(0.95);transform:scale(0.95);opacity:.2}to{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@keyframes pseudo-ripple{from{-webkit-transform:scale(0);transform:scale(0);opacity:.8}95%{-webkit-transform:scale(0.95);transform:scale(0.95);opacity:.2}to{-webkit-transform:scale(1);transform:scale(1);opacity:0}}#nav-header-menu-mobile{display:none}.nav-header{height:100px}.nav-header .nav-header-cp-anchor{display:none}.nav-header .nav-bounds{height:auto;max-width:1200px}.nav-menu{display:block;margin:0 0 0 -150px;max-width:785px}.nav-menu-list{list-style:none;padding:12px 0 0;overflow:hidden;height:36px;margin:0}.nav-menu-item{display:inline-block;line-height:22px;font-size:14px;padding-right:32px;width:auto;float:left}.nav-menu-item a{text-decoration:none;-webkit-font-smoothing:antialiased;color:rgba(51,51,51,.6);-webkit-transition:color .3s ease-out;transition:color .3s ease-out}.nav-menu-item a:link,.nav-menu-item a:visited{color:rgba(51,51,51,.6)}.nav-menu-item a:hover,.nav-menu-item a:active,.nav-menu-item a:focus{color:rgba(51,51,51,.9);text-decoration:none}.nav-menu-item a.nav-menu-item-link{position:relative}.nav-menu-item a.nav-menu-item-link .nav-link-tag{position:absolute;left:50%;-webkit-transform:translate(-50%);transform:translate(-50%);bottom:85%}.nav-menu-item:first-child{font-weight:400;width:186px}.nav-menu-item:first-child>a{color:#333;padding-bottom:9px}.nav-menu-item:first-child>a:link,.nav-menu-item:first-child>a:visited{color:#333;font-weight:inherit}.nav-menu-item:first-child>a:hover,.nav-menu-item:first-child>a:active{color:#111}.nav-menu-item .nav-menu-categories-link:after{border-style:solid;border-width:0 1.5px 1.5px 0;content:"";display:inline-block;height:6px;position:relative;-webkit-transform:rotate(45deg);transform:rotate(45deg);width:6px;color:rgba(0,0,0,.3);margin:8px 0 0 6px;vertical-align:top;will-change:transform;-webkit-transition:all .3s ease-out;transition:all .3s ease-out}.exhibitor__picture{display:inline-block;position:absolute;right:10px;top:9px}.exhibitor__picture img{max-width:340px;max-height:39px}.nav-search{left:35px;max-width:600px}.nav-search .nav-category{display:block;background-color:#fff;color:#666;line-height:20px;height:26px;margin:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:55%;padding:2px 14px;position:absolute;right:46px;top:15px;text-align:right;font-weight:300;font-size:14px;border-left:1px solid #e6e6e6;box-shadow:none;border-top:none;width:auto}.nav-search .nav-category:hover .nav-label-small{width:initial}.nav-search .nav-category label{-webkit-user-select:none}.nav-search .nav-category .nav-label-small{display:inline-block;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;vertical-align:middle;width:58px}.nav-search .nav-category input[type=checkbox]{border:1px solid #ccc;background:0;box-shadow:none;display:inline-block;margin:3px 5px 0 0;height:14px;padding:0;vertical-align:top;width:14px;border-radius:2px}.nav-search.nav-search-with-sugestions input[type=text].nav-search-input,.nav-search.nav-search-with-sugestions input[type=search].nav-search-input{border-bottom-right-radius:0;border-bottom-left-radius:0}input[type=text].nav-search-input,input[type=search].nav-search-input,input[type=text].nav-search-input:focus,input[type=search].nav-search-input:focus,.nav-header-has-search-active input[type=text].nav-search-input:focus,.nav-header-has-search-active input[type=search].nav-search-input:focus{box-shadow:0 1px 2px 0 rgba(0,0,0,.2);height:39px}button.nav-search-btn,button.nav-search-btn:focus{left:auto;background-image:none;height:39px;padding-top:2px;cursor:pointer}button.nav-search-btn .nav-icon-search,button.nav-search-btn:focus .nav-icon-search{font-size:16px;line-height:21px}button.nav-search-btn .nav-icon-search:before,button.nav-search-btn:focus .nav-icon-search:before{content:"\xee\xa8\xa7";vertical-align:top}button.nav-search-btn:before,button.nav-search-btn:focus:before{content:"";display:block;height:26px;border-left:1px solid #e6e6e6;position:absolute;top:6.5px}#nav-header-menu,.nav-cart{margin-top:48px}.nav-header-pluslite,.nav-header-plusclean{height:56px}.nav-header-pluslite #nav-header-menu,.nav-header-pluslite .nav-cart,.nav-header-plusclean #nav-header-menu,.nav-header-plusclean .nav-cart{margin-top:0}.nav-header-pluslite a.option-help:first-child,.nav-header-plusclean a.option-help:first-child{border:0 !important}.nav-bounds.nav-bounds-with-cart .nav-cart{right:9px;top:19px;height:21px;padding-top:2px;text-decoration:none;font-size:0}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart{font-size:13px}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart:after{display:block;position:absolute;top:-50px;left:-38px;content:"";width:100px;height:100px;border-radius:50%;background-color:#fff;-webkit-transform:scale(0, 0);transform:scale(0, 0);opacity:0}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart-quantity{position:relative;font-size:11px;top:auto;bottom:13px;right:auto;left:0;margin-left:-14px}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart-quantity>b{display:inline-block;width:100%;text-align:center;line-height:1;position:absolute;left:0;bottom:-2px}.nav-bounds.nav-bounds-with-cart .nav-icon-quantity--changing .nav-icon-cart:after{-webkit-animation:pseudo-ripple .45s ease-out;animation:pseudo-ripple .45s ease-out}.nav-bounds.nav-bounds-with-cart .nav-icon-quantity--changing .nav-icon-cart-quantity>b:not(:last-child){-webkit-animation:fade-out-number .15s ease-out;animation:fade-out-number .15s ease-out}.nav-bounds.nav-bounds-with-cart .nav-icon-quantity--changing .nav-icon-cart-quantity>b:last-child{-webkit-animation-name:fade-in-number,jump-in-number;animation-name:fade-in-number,jump-in-number;-webkit-animation-duration:.12s,.45s;animation-duration:.12s,.45s;-webkit-animation-timing-function:linear,linear;animation-timing-function:linear,linear}.nav-bounds.nav-bounds-with-cart #nav-header-menu{min-width:295px;padding:4px 4px 0 0;margin-right:51px}.nav-bounds.nav-bounds-with-cart #nav-header-menu .option-help{padding-right:16px}.nav-bounds.nav-bounds-with-cp .nav-menu-cp{color:#333;display:inline-block;position:absolute;line-height:22px;height:32px;border:solid 1px rgba(0,0,0,0);padding:4px 4px 0px 8px;border-radius:4px;top:63px;left:4px;font-size:0;max-width:170px}.nav-bounds.nav-bounds-with-cp .nav-menu-cp:before{content:"\xee\xa9\x86";font-family:navigation;font-size:18px;position:absolute;top:4px;left:7px;-webkit-font-smoothing:antialiased}.nav-bounds.nav-bounds-with-cp .nav-menu-cp:hover{border-color:#eadd61}.nav-bounds.nav-bounds-with-cp .nav-menu-cp .nav-menu-link-cp{color:#333;padding-left:18px;padding-right:3px;font-size:14px;width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:inline-block}.nav-bounds.nav-bounds-with-cp .nav-menu-cp.nav-menu-cp-logged{height:40px;padding:0 8px 0 8px;border:solid 1px rgba(0,0,0,0);border-radius:4px;top:52px;left:1px}.nav-bounds.nav-bounds-with-cp .nav-menu-cp.nav-menu-cp-logged:before{content:"\xee\xa9\x87";font-size:23px;position:absolute;top:9px;left:7px;-webkit-font-smoothing:antialiased}.nav-bounds.nav-bounds-with-cp .nav-menu-cp.nav-menu-cp-logged:hover{border-color:#eadd61}.nav-bounds.nav-bounds-with-cp .nav-menu-cp.nav-menu-cp-logged .nav-menu-cp-send{position:relative;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;top:1px;font-size:12px;color:rgba(0,0,0,.5);display:block;width:100%;left:8px;padding:6px 0 0px 13px;margin-right:8px;line-height:10px;height:20px}.nav-bounds.nav-bounds-with-cp .nav-menu-cp.nav-menu-cp-logged .nav-menu-link-cp{line-height:13px;height:20px;padding-left:22px;padding-right:0}.nav-bounds.nav-bounds-with-cp .nav-menu-item:first-child+.nav-menu-item{padding-left:186px}.nav-bounds.nav-bounds-with-cp .nav-menu-item{padding-right:18px}.nav-bounds.nav-bounds-with-cp .nav-menu-item:last-child{padding-right:0}.nav-bounds.nav-bounds-with-cp.nav-bounds-with-cart #nav-header-menu{margin-right:51px}#nav-header-menu{height:52px;min-width:340px;text-align:right;-webkit-font-smoothing:antialiased;left:2px;padding-top:4px;margin-right:15px;margin-left:0}#nav-header-menu>a{border:none;left:12px;padding:0 10px 0 10px;font-size:14px}#nav-header-menu>a.option-purchases{padding-left:7px}#nav-header-menu>a.option-notifications{padding-left:16px;bottom:1px}#nav-header-menu>a.option-bookmarks{padding:0 6px 0 7px}#nav-header-menu>a.option-bookmarks .bookmarks-text:after{border-style:solid;border-width:0 1.5px 1.5px 0;content:"";display:inline-block;height:6px;-webkit-transform:rotate(45deg);transform:rotate(45deg);width:6px;color:rgba(0,0,0,.3);margin:8px 0 0 6px;top:-3px;left:0px;position:relative;padding:2px}#nav-header-menu .nav-header-user{line-height:40px;height:40px;left:16px}#nav-header-menu .nav-header-avatar-user{display:inline-block;width:20px;height:20px;vertical-align:top;position:relative;margin:10px 6px 0 0}#nav-header-menu .nav-header-avatar-user:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);border-radius:50%}#nav-header-menu .nav-header-avatar-user-img{vertical-align:top;max-width:100%;border-radius:50%}#nav-header-menu .nav-icon-user{line-height:1}#nav-header-menu .nav-icon-user:before{content:"\xee\xa8\xa8";margin:0;vertical-align:top;font-size:20px;background-color:#fff159;z-index:1;position:relative}#nav-header-menu .nav-header-username{display:inline-block;font-size:14px;line-height:40px;left:12px}#nav-header-menu .nav-header-username-chevron{border-style:solid;border-width:0 1.5px 1.5px 0;content:"";display:inline-block;height:6px;position:relative;-webkit-transform:rotate(45deg);transform:rotate(45deg);width:6px;color:rgba(0,0,0,.3);margin:16px 0 0 6px;vertical-align:top}#nav-header-menu [for=nav-header-user-switch]{padding:0 16px 0 0;text-transform:none;font-size:0;margin:0;line-height:40px;display:block}#nav-header-menu .nav-header-user-myml{padding:0;line-height:inherit;font-size:0;border-left:none;display:block}nav#nav-header-menu a.option-help{padding-right:10px}.nav-footer .nav-bounds{padding:16px 10px;max-width:1200px}.nav-footer .nav-bounds .nav-footer-downloadapp-wrapper{text-align:right}.nav-footer-info-wrapper{padding:0}.nav-footer-primaryinfo{vertical-align:top;position:relative;height:40px}.nav-footer-primaryinfo .nav-footer-navigation a{font-size:13px}.nav-footer-user-info{border-top:none}.nav-footer-secondaryinfo{font-size:12px;margin-top:2px}[for=nav-footer-access-switch],.nav-footer{border-color:#e6e6e6;background-color:#fff}[for=nav-footer-access-switch]{-webkit-transition:all 200ms linear;transition:all 200ms linear}#nav-footer-access-switch:not(:checked)+.nav-footer-access [for=nav-footer-access-switch]{background-color:#f7f7f7}#nav-footer-access-switch:not(:checked)+.nav-footer-access .nav-bounds{display:-webkit-flex;display:flex;visibility:visible}.nav-footer-access-content{max-height:270px;border-color:#e6e6e6;-webkit-transition:all 200ms ease-in;transition:all 200ms ease-in}.nav-footer-access-content [href*=".com"]:before{display:none}.nav-footer-access-content .nav-bounds{visibility:hidden;padding:0 110px;-webkit-justify-content:space-between;justify-content:space-between}.nav-footer-access-col{line-height:1.6;width:auto;margin:46px 0}.nav-footer-access-title{color:#333;margin-bottom:14px}.nav-footer-copyright{margin:0;position:absolute;top:20px}.nav-footer a.nav-footer-downloadapp{border-radius:4px;background-color:#ffe600;border:solid 1px #d9cd4b;font-size:12px;line-height:30px;padding:0 8px}.nav-footer a.nav-footer-downloadapp i{background:none;margin-right:6px;top:0;vertical-align:top}.nav-footer a.nav-footer-downloadapp i:before{content:"\xee\xa8\xa9";font-size:16px}.nav-footer-mobile-links-bounds{display:none}.modeless-box:after{right:17px !important}.nav-icon-downloadapp:before{content:"\xee\xa8\xa9"}#nav-header-menu a.option-sell{display:none}.nav-menu-cp{display:none}@media(max-width: 1200px){.nav-bounds .nav-menu .nav-menu-list .nav-menu-item:nth-last-child(3){display:none}}@media(max-width: 1095px){.nav-bounds .nav-menu .nav-menu-list .nav-menu-item:nth-last-child(4){display:none}}.nav-footer-access-icon{vertical-align:sub;margin-left:8px}#nav-skip-to-main-content{color:#fff}.ui-message.ui-message--overdue-loans .ui-message--bounds{padding:13px}.ui-message.ui-message--overdue-loans .ui-message--overdue-loans-cta{margin-left:10px;position:static;-webkit-transform:none;transform:none}@supports((display: -webkit-flex) or (display: flex)){body{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;min-height:100vh;height:auto}[role=main]{height:auto;-webkit-flex-grow:1;flex-grow:1}.nav-header,[role=main],.nav-footer{display:block}body,[role=main]{padding:0 !important}.nav-footer{overflow:unset}.nav-footer-access-content{margin-top:0}.nav-footer-access{margin-top:64px}}*:focus:not(:focus-visible){outline:0}</style>\n<style media="(max-width: 1023px)">@charset "utf-8";\n/*\n * Navigation\n * @platform "mercadolibre"\n * @version 5.19.1\n * @author MercadoLibre.com\n */\n@font-face{font-family:"navigation";src:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.eot");src:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.eot#iefix") format("embedded-opentype"),url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.woff2") format("woff2"),url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.woff") format("woff"),url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.ttf") format("truetype"),url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.svg#navigation") format("svg");font-weight:normal;font-style:normal}[class^=nav-icon-],[class*=" nav-icon-"]{font-style:normal}[class^=nav-icon-]:before,[class*=" nav-icon-"]:before{display:inline-block;font-variant:normal;margin:0;speak:none;text-align:center;width:1em;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:"navigation"}.nav-icon-back-o:before,.nav-header .nav-header-btn:before{content:"\xee\xa8\x81"}.nav-icon-bookmarks-o:before{content:"\xee\xa8\x82"}.nav-icon-bookmarks:before{content:"\xee\xa8\x83"}.nav-icon-chevron-right-o:before{content:"\xee\xa8\x84"}.nav-icon-chevron-right:before{content:"\xee\xa8\x85"}.nav-icon-chevron-up-o:before{content:"\xee\xa8\x86"}.nav-icon-chevron-up:before{content:"\xee\xa8\x87"}.nav-icon-close:before{content:"\xee\xa8\x88"}.nav-icon-facebook:before{content:"\xee\xa8\x89"}.nav-icon-gplus:before{content:"\xee\xa8\x8a"}.nav-icon-help-o:before{content:"\xee\xa8\x8b"}.nav-icon-help:before{content:"\xee\xa8\x8c"}.nav-icon-instagram:before{content:"\xee\xa8\x8d"}.nav-icon-login-o:before{content:"\xee\xa8\x8e"}.nav-icon-logout-o:before{content:"\xee\xa8\x8f"}.nav-icon-logout:before{content:"\xee\xa8\x90"}.nav-icon-notifications-o:before{content:"\xee\xa8\x91"}.nav-icon-notifications:before{content:"\xee\xa8\x92"}.nav-icon-official-store-o:before{content:"\xee\xa8\x93"}.nav-icon-register-o:before{content:"\xee\xa8\x94"}.nav-icon-search-o:before{content:"\xee\xa8\x95"}.nav-icon-search:before{content:"\xee\xa8\x96"}.nav-icon-sell-o:before{content:"\xee\xa8\x97"}.nav-icon-time-o:before{content:"\xee\xa8\x98"}.nav-icon-twitter:before{content:"\xee\xa8\x99"}.nav-icon-user-o:before{content:"\xee\xa8\x9a"}.nav-icon-user:before{content:"\xee\xa8\x9b"}.nav-icon-youtube:before{content:"\xee\xa8\x9c"}.nav-icon-close-o:before{content:"\xee\xa8\x9d"}.nav-icon-bookmarks-medium:before{content:"\xee\xa8\x9e"}.nav-icon-cart-empty-medium:before{content:"\xee\xa8\x9f"}.nav-icon-phone:before{content:"\xee\xa8\xa0"}.nav-icon-cart-empty-small:before{content:"\xee\xa8\xa1"}.nav-icon-cart-full-medium:before{content:"\xee\xa8\xa2"}.nav-icon-cart-full-small:before{content:"\xee\xa8\xa3"}.nav-icon-help-medium:before{content:"\xee\xa8\xa4"}.nav-icon-notifications-medium:before{content:"\xee\xa8\xa5"}.nav-icon-user-medium:before{content:"\xee\xa8\xa6"}.nav-icon-search-ml:before{content:"\xee\xa8\xa7"}.nav-icon-user-rounded:before{content:"\xee\xa8\xa8"}.nav-icon-app:before{content:"\xee\xa8\xa9"}.nav-icon-search-plus:before{content:"\xee\xa8\xaa"}.nav-icon-vender-mobile:before{content:"\xee\xa8\xab"}.nav-icon-bookmarks-mobile:before{content:"\xee\xa8\xac"}.nav-icon-categories-mobile:before{content:"\xee\xa8\xad"}.nav-icon-create-account-mobile:before{content:"\xee\xa8\xae"}.nav-icon-deals-mobile:before{content:"\xee\xa8\xaf"}.nav-icon-download-mobile:before{content:"\xee\xa8\xb0"}.nav-icon-help-mobile:before{content:"\xee\xa8\xb1"}.nav-icon-history-mobile:before{content:"\xee\xa8\xb2"}.nav-icon-logout-mobile:before{content:"\xee\xa8\xb3"}.nav-icon-my-account-mobile:before{content:"\xee\xa8\xb4"}.nav-icon-navigation-mobile:before{content:"\xee\xa8\xb5"}.nav-icon-notifications-mobile:before{content:"\xee\xa8\xb6"}.nav-icon-points-mobile:before{content:"\xee\xa8\xb7"}.nav-icon-purchases-mobile:before{content:"\xee\xa8\xb8"}.nav-icon-stores-mobile:before{content:"\xee\xa8\xb9"}.nav-icon-wallet-mobile:before{content:"\xee\xa8\xba"}.nav-icon-contact-ms:before{content:"\xee\xa8\xbb"}.nav-icon-cart-ms:before{content:"\xee\xa8\xbc"}.nav-icon-close-ms:before{content:"\xee\xa8\xbd"}.nav-icon-search-ms:before{content:"\xee\xa8\xbe"}.nav-icon-search-spinner-ms:before{content:"\xee\xa8\xbf"}.nav-icon-twitter-ms:before{content:"\xee\xa9\x80"}.nav-icon-facebook-ms:before{content:"\xee\xa9\x81"}.nav-icon-instagram-ms:before{content:"\xee\xa9\x82"}.nav-icon-points-discounts-mobile:before{content:"\xee\xa9\x83"}.nav-icon-mercado-credits-mobile:before{content:"\xee\xa9\x84"}.nav-icon-cp-location-mobile:before{content:"\xee\xa9\x85"}.nav-icon-nav-icon-cp-location-desktop-guest:before{content:"\xee\xa9\x86"}.nav-icon-nav-icon-cp-location-desktop-logged:before{content:"\xee\xa9\x87"}.nav-icon-supermercado:before{content:"\xee\xa9\x88"}.nav-icon-youtube-ms:before{content:"\xee\xa9\x89"}.nav-icon-home:before{content:"\xee\xa9\x90"}.nav-icon-quotations-mobile:before{content:"\xee\xa9\x91"}.nav-icon-pi-logout-mobile:before{content:"\xee\xa9\x92"}.nav-icon-map-search-mobile:before{content:"\xee\xa9\x93"}.nav-icon-subscriptions-mobile-video:before{content:"\xee\xa9\x94"}.nav-icon-contact-tc:before{content:"\xee\xa9\x95"}.nav-icon-subscriptions-mobile-video-music:before{content:"\xee\xa9\x96"}.nav-icon-subscriptions-mobile-music:before{content:"\xee\xa9\x97"}.nav-icon-compra-internacional:before{content:"\xee\xa9\x98"}.nav-icon-moda-mobile:before{content:"\xee\xa9\x99"}.nav-icon-mshops-mobile:before{content:"\xee\xa9\xa0"}.nav-icon-summary-mobile:before{content:"\xee\xa9\xa1"}.nav-icon-best-sellers-mobile:before{content:"\xee\xa9\xa2"}.nav-icon-live-mobile:before{content:"\xee\xa9\xa3"}html,body{height:100%;margin:0;padding:0;width:100%}body{border-collapse:collapse;display:table;background-color:#fff;font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif,sans-serif;font-size:14px;table-layout:fixed}.nav-header,[role=main],.nav-footer{display:table-row;width:100%}[role=main]{height:100%}[role=main] .nav-bounds{-moz-box-sizing:border-box;box-sizing:border-box}[role=main] .nav-bounds[class*=ch-box-]{border:none;background-color:rgba(0,0,0,0)}.nav-bounds{display:block;padding:0 10px;margin:0 auto}.nav-footer-navigation,.nav-footer-access,#nav-header-user-switch,[for=nav-header-user-switch],.nav-header-user-layer a:last-child{display:none}.nav-header{font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif;background-color:#ffdb15;color:#333;-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color:rgba(0,0,0,0);cursor:default;border-bottom:0 solid #fff}.nav-header .nav-bounds{position:relative;padding:50px 0 0}.nav-header,.nav-header *,.nav-header *:before,.nav-header *:after{-moz-box-sizing:border-box;box-sizing:border-box}.nav-header.nav-header-sticky{position:fixed;z-index:900}.nav-header.nav-header-sticky+main>.nav-bounds,.nav-header.nav-header-sticky+main>.nav-main-content,.nav-header.nav-header-sticky~main>.nav-bounds,.nav-header.nav-header-sticky~main>.nav-main-content{padding-top:50px}[for=nav-header-menu-switch]{position:absolute;top:0;right:0;height:50px;width:45px;cursor:pointer}#nav-header-menu-switch{display:none}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-top-bread{-webkit-transform:translate(0, 4px) rotate(40deg);transform:translate(0, 4px) rotate(40deg)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-patty{-webkit-transform:scale(0, 0);transform:scale(0, 0)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-bottom-bread{-webkit-transform:translate(0, -4px) rotate(-40deg);transform:translate(0, -4px) rotate(-40deg)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper #nav-header-menu{display:block}.hamburger-bottom-bread,.hamburger-patty,.hamburger-top-bread{position:absolute;display:block;width:20px;height:2px;background-color:#333;top:50%;border-radius:0;-webkit-transition:all 100ms ease-out;transition:all 100ms ease-out;left:12.5px}.hamburger-top-bread{margin-top:-5px}.hamburger-patty{margin-top:-1px}.hamburger-bottom-bread{margin-top:3px}#nav-header-menu:after,#nav-header-menu:before{border-style:solid;border-color:rgba(0,0,0,0);position:absolute;bottom:100%;-webkit-transform:translateY(1px);transform:translateY(1px);content:""}#nav-header-menu{background-color:#fff;display:none;position:relative}#nav-header-menu a{display:block;height:50px;padding:0 10px;font-size:16px;text-decoration:none;line-height:50px;color:#333;border-top:1px solid #eaeaea;position:relative}#nav-header-menu a [class^=nav-icon-]:before,#nav-header-menu a [class*=" nav-icon-"]:before{display:none}#nav-header-menu a:first-child\xc2\xa0{border-top-color:#fff}#nav-header-menu a:after{position:absolute;top:0;right:20px;display:block;font-family:"navigation";color:#404040;content:"\xee\xa8\x85"}#nav-header-menu:before{border-bottom-color:#fff;border-width:8px;right:14.5px;pointer-events:none}#nav-header-menu:after{border-width:7px;border-bottom-color:#fff;right:15.5px;pointer-events:none}.nav-logo{background-image:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/logo__small.png");background-repeat:no-repeat;display:inline-block;height:28px;overflow:hidden;text-indent:-999px;width:39px;top:11px;position:absolute;left:10px}@media(-webkit-min-device-pixel-ratio: 2),(min-resolution: 192dpi),(min-resolution: 2dppx){.nav-logo{background-image:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/logo__small@2x.png");background-size:39px 28px}}.nav-search{position:absolute;left:59px;top:0;right:45px;height:50px;padding:8px 0}.nav-bounds-with-cart .nav-search{right:94px}input[type=text].nav-search-input,input[type=search].nav-search-input{border:0 1px 2px 0 rgba(0,0,0,.2);color:#333;font-size:16px;border-radius:2px;width:100%;height:100%;margin:0;background-color:#fff;padding:6px 6px 6px 35px;box-shadow:none;font-family:inherit}input[type=text].nav-search-input:focus,input[type=search].nav-search-input:focus{box-shadow:0 0 1px rgba(0,0,0,0);border:0 1px 2px 0 rgba(0,0,0,.2);padding:6px 6px 6px 35px;outline:0}input[type=text].nav-search-input.ch-autocomplete-loading,input[type=search].nav-search-input.ch-autocomplete-loading{background-position:right 30px center}button.nav-search-btn,button.nav-search-btn:focus{position:absolute;top:0;right:0;height:50px;padding:0;width:48px;background:none;border:none;font-size:22px;color:#666;line-height:1em}.nav-icon-close:before,.nav-icon-search:before{display:inline-block}.nav-icon-close span,.nav-icon-search span{display:none}.nav-footer{background-color:#eee;color:#999;font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif;font-size:14px;overflow:hidden}.nav-footer,.nav-footer *,.nav-footer *:before,.nav-footer *:after{-moz-box-sizing:border-box;box-sizing:border-box}.nav-footer a,.nav-footer a:link,.nav-footer a:visited,.nav-footer a:active{color:#333;text-decoration:none}.nav-footer .nav-footer-change-device,.nav-footer .nav-footer-change-device:link,.nav-footer .nav-footer-change-device:visited,.nav-footer .nav-footer-change-device:active{float:right;display:inline-block;line-height:14px;color:#666}.nav-footer-primaryinfo{margin:0 0 25px 0;border-top:.5px solid #ddd;padding-top:25px;font-size:14px}.nav-footer-secondaryinfo{font-size:12px}.nav-footer-copyright{font-size:inherit;display:inline-block;color:#666;vertical-align:top;width:60%;line-height:14px}.nav-footer-user{padding:25px 12px 20px 12px;border-radius:5px;text-align:center;overflow:hidden;font-size:0}.nav-footer-user .nav-footer-login,.nav-footer-user .nav-footer-registration{font-size:14px;line-height:20px;display:inline-block}.nav-footer-user .nav-footer-login{padding-right:.7em;border-right:.5px solid #ddd}.nav-footer-user .nav-footer-registration{padding-left:.7em}.nav-footer-user strong{font-weight:normal;color:#666;display:inline-block;max-width:100px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;vertical-align:bottom}.nav-footer-user.logged{font-size:14px}.nav-footer-user.logged>a{margin-left:12.5px}.nav-footer-secondary-user{padding:0px 12px 20px;border-radius:5px;text-align:center;margin-top:0;margin-bottom:0;font-size:14px}.nav-footer-downloadapp-banner{display:block;margin-top:32px;text-align:center;background-color:#ffdb08;padding:0 15px}.nav-footer-downloadapp-banner a.nav-footer-downloadapp{font-size:11px;vertical-align:middle;color:#666;padding-top:0;display:inline-block}.nav-footer-downloadapp-banner a.nav-footer-downloadapp:active,.nav-footer-downloadapp-banner a.nav-footer-downloadapp:link,.nav-footer-downloadapp-banner a.nav-footer-downloadapp:visited{color:#666}.nav-footer-downloadapp-banner .nav-icon.nav-icon-downloadapp{background:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/49x64-download-icon.png") top center no-repeat;background-size:49px 64px;display:inline-block;width:49px;height:64px;margin-top:-8px;margin-right:10px;vertical-align:middle}@media(-webkit-min-device-pixel-ratio: 2),(min-resolution: 2dppx),(min-resolution: 192dpi){.nav-footer-downloadapp-banner .nav-icon.nav-icon-downloadapp{background:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/97x127-download-icon@2x.png");background-size:49px 64px;width:49px;height:64px}}.nav-footer-info-wrapper{padding:0 10px}.nav-footer-hp{height:1px;width:1px;position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}.nav-footer-access{font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif}#nav-footer-access-switch{display:none}input[type=text].nav-search-input,input[type=search].nav-search-input{background-color:rgba(255,255,255,.7);border:none;position:relative;-moz-box-sizing:border-box;box-sizing:border-box;z-index:915}input[type=text].nav-search-input:focus,input[type=search].nav-search-input:focus{border:none}.nav-header-has-search-active input[type=text].nav-search-input:focus,.nav-header-has-search-active input[type=search].nav-search-input:focus{color:#666;box-shadow:none}input[type=text].nav-search-input::-webkit-input-placeholder, input[type=search].nav-search-input::-webkit-input-placeholder{color:rgba(0,0,0,.25);font-size:16px;font-weight:400}input[type=text].nav-search-input::-moz-placeholder, input[type=search].nav-search-input::-moz-placeholder{color:rgba(0,0,0,.25);font-size:16px;font-weight:400}input[type=text].nav-search-input::placeholder,input[type=search].nav-search-input::placeholder{color:rgba(0,0,0,.25);font-size:16px;font-weight:400}.nav-header-has-search-active input[type=text].nav-search-input,.nav-header-has-search-active input[type=search].nav-search-input{padding-right:45px}button.nav-search-btn,button.nav-search-btn:focus{left:-6px;right:initial;z-index:920}button.nav-search-btn span,button.nav-search-btn:focus span{display:none}.nav-header-has-search-active button.nav-search-btn,.nav-header-has-search-active button.nav-search-btn:focus{display:none}.nav-search-btn .nav-icon-search{font-size:19px}.nav-search-btn .nav-icon-search:before{content:"\xee\xa8\x95";vertical-align:bottom}.nav-header .nav-header-btn{position:absolute;top:3px;left:0;padding:20px;text-indent:-200%;border:0;box-shadow:none;background:none}.nav-header .nav-header-btn:before{font-family:navigation;font-size:20px;line-height:1;color:#333;position:absolute;left:10px;top:10px;text-indent:0}.nav-header .nav-header-btn--no-arrow{text-indent:0;border:1px solid rgba(0,0,0,.15);padding:0 10px;left:10px;top:10px}.nav-header .nav-header-btn--no-arrow:before{display:none}.nav-header .nav-cart{color:#333}.nav-search{z-index:910;will-change:left;-webkit-transition:left .15s ease-out;transition:left .15s ease-out}.nav-search:before{content:"";display:none;position:absolute;top:0;left:-10px;right:-10px;height:100%;background-color:#fff;opacity:0;will-change:opacity;-webkit-transition:opacity .15s ease-out;transition:opacity .15s ease-out}.nav-header-has-search-active .nav-search:before{display:block}.nav-header--is-enter .nav-search:before{opacity:1}.nav-header--is-leave .nav-search:before{opacity:0}.nav-search .nav-category{z-index:917}.nav-search-close-btn,.nav-search-close-btn:focus,.nav-search-clear-btn,.nav-search-clear-btn:focus{font-size:22px;line-height:1;color:#333;border:0;background:none;display:none;position:absolute;top:0;z-index:920;height:50px;padding:0;width:48px}.nav-search-close-btn,.nav-search-close-btn:focus{top:1px;left:-4px;opacity:0;will-change:opacity;-webkit-transition:opacity .15s ease-out;transition:opacity .15s ease-out}.nav-search-close-btn:before,.nav-search-close-btn:focus:before{content:"\xee\xa8\x81";font-family:navigation}.nav-header-has-search-active .nav-search-close-btn,.nav-header-has-search-active .nav-search-close-btn:focus{display:block}.nav-header--is-enter .nav-search-close-btn,.nav-header--is-enter .nav-search-close-btn:focus{opacity:1}.nav-header--is-leave .nav-search-close-btn,.nav-header--is-leave .nav-search-close-btn:focus{opacity:0}.nav-search-clear-btn,.nav-search-clear-btn:focus{right:-4px}.nav-search-clear-btn:before{content:"\xee\xa8\x9d";font-family:"navigation";vertical-align:bottom}.nav-search--has-text .nav-search-clear-btn{display:block}.nav-header--is-leave .nav-search-clear-btn{display:none}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-top-bread,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-top-bread{-webkit-transform:translate(0, 8px) rotate(40deg);transform:translate(0, 8px) rotate(40deg)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-bottom-bread,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-bottom-bread{-webkit-transform:translate(0, -8px) rotate(-40deg);transform:translate(0, -8px) rotate(-40deg)}.hamburger-top-bread{margin-top:-6.6666666667px}.hamburger-patty{margin-top:-.6666666667px}.hamburger-bottom-bread{margin-top:5.3333333333px}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-top-bread,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-top-bread{-webkit-transform:translate(0, 6px) rotate(40deg);transform:translate(0, 6px) rotate(40deg)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-patty,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-patty{-webkit-transform:scale(0, 0);transform:scale(0, 0)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-bottom-bread,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-bottom-bread{-webkit-transform:translate(0, -6px) rotate(-40deg);transform:translate(0, -6px) rotate(-40deg)}#nav-header-menu{padding:16px 0}#nav-header-menu a{padding:0 16px 0 72px;height:50px;line-height:50px;border:none}#nav-header-menu a.notifications-widget,#nav-header-menu a.option-help,#nav-header-menu a.option-register,#nav-header-menu a.bookmarks-widget{border-left:none}#nav-header-menu a.option-my-account:after{content:"\xee\xa8\x9a"}#nav-header-menu a.option-notifications:after{content:"\xee\xa8\x91"}#nav-header-menu a.option-logout:after{content:"\xee\xa8\x8f"}#nav-header-menu a.option-bookmarks:after{content:"\xee\xa8\x82"}#nav-header-menu a.option-sell:after{content:"\xee\xa8\x97"}#nav-header-menu a.option-help:after{content:"\xee\xa8\x8b"}#nav-header-menu a.option-login:after{content:"\xee\xa8\x8e"}#nav-header-menu a.option-register:after{content:"\xee\xa8\x94"}#nav-header-menu a:after{left:24px;font-size:24px}.nav-bounds.nav-bounds-with-cart [for=nav-header-menu-switch]{right:45px}.nav-bounds-with-cart #nav-header-menu:before{right:59.5px}.nav-bounds-with-cart #nav-header-menu:after{right:60.5px}.nav-cart{display:none}.nav-cart.nav-cart-full .nav-icon-cart:before{content:"\xee\xa8\xa3"}.nav-cart.nav-cart-empty .nav-icon-cart:before{content:"\xee\xa8\xa1"}.nav-bounds.nav-bounds-with-cart .nav-cart{display:block;position:absolute;right:0;top:0;height:50px;width:45px;text-align:center}.nav-bounds.nav-bounds-with-cart .nav-cart :before{font-size:18px;line-height:50px}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart{margin-left:-8px}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart-quantity{position:absolute;right:14px;top:11px;font-size:11px;line-height:15px;width:20px;text-align:center}.nav-bounds.nav-bounds-with-cart .nav-cart.nav-cart-empty .nav-icon-cart-quantity{display:none}#mlMsg{margin:0 auto;-moz-box-sizing:border-box;box-sizing:border-box;max-width:1220px}#mlMsg .content{padding-right:20px}#mlMsg p{margin:0}#mlMsg #mlMsgRemove{width:15px;height:16px;position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);right:12px;cursor:pointer}@-webkit-keyframes nav-header-notification-pulse{0%{-webkit-transform:scale(0);transform:scale(0);opacity:0}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes nav-header-notification-pulse{0%{-webkit-transform:scale(0);transform:scale(0);opacity:0}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.nav-header-notifications-badge{position:absolute;padding:0 4px;background:#f64c41;color:#fff;border-radius:2px;font-size:11px;text-align:center;min-width:18px;height:18px;line-height:18px;pointer-events:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-moz-font-feature-settings:"liga","kern";-webkit-text-size-adjust:100%}.nav-header-menu-wrapper>.nav-header-notifications-badge{top:8px;right:8px;-webkit-animation-name:nav-header-notification-pulse;animation-name:nav-header-notification-pulse;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:cubic-bezier(0.4, 0, 0.2, 1);animation-timing-function:cubic-bezier(0.4, 0, 0.2, 1);-webkit-animation-iteration-count:1;animation-iteration-count:1}.nav-bounds-with-cart .nav-header-menu-wrapper>.nav-header-notifications-badge{right:53px}nav .nav-header-notifications-badge{top:16px;right:20px}.nav-header-notifications-badge:empty,#nav-header-menu-switch:checked+.nav-header-menu-wrapper>.nav-header-notifications-badge,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper>.nav-header-notifications-badge{display:none;-webkit-animation-name:none;animation-name:none}.ui-message{background-color:#f5f5f5;color:#666;font-size:14px;line-height:1.25;padding:20px;text-align:center;position:relative;width:100%}.ui-message__icon{float:left;margin-right:5px}.ui-message__icon .ui-icon{vertical-align:top}.ui-message__text{overflow:auto}.ui-message--info{background-color:#f5f5f5;color:#666}.ui-message--success{background-color:#64c574;color:#fff}.ui-message__text{overflow:hidden;display:inline}.ui-message__content{display:inline}.ui-message--has-icon.ui-message--warn .ui-message__icon:after{content:url("data:image/svg+xml,%3C%3Fxml version=\'1.0\' encoding=\'UTF-8\' standalone=\'no\'%3F%3E%3Csvg width=\'16px\' height=\'16px\' viewBox=\'0 0 68 68\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%28-414.000000, -365.000000%29\'%3E%3Cg transform=\'translate%28414.000000, 365.000000%29\'%3E%3Ccircle fill=\'rgba(245, 120, 25, 0.999999)\' cx=\'34\' cy=\'34\' r=\'34\'%3E%3C/circle%3E%3Cpolygon fill=\'%23FFFFFF\' points=\'30 16 38 16 37 38 31 38\'%3E%3C/polygon%3E%3Ccircle fill=\'%23FFFFFF\' cx=\'34\' cy=\'48\' r=\'4\'%3E%3C/circle%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A")}.ui-message--has-icon.ui-message--default .ui-message__icon:after,.ui-message--has-icon.ui-message--info .ui-message__icon:after{content:url("data:image/svg+xml,%3C%3Fxml version=\'1.0\' encoding=\'UTF-8\' standalone=\'no\'%3F%3E%3Csvg width=\'16px\' height=\'16px\' viewBox=\'0 0 16 16\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%28-22.000000, -180.000000%29\'%3E%3Cg transform=\'translate%280.000000, 165.000000%29\'%3E%3Cg transform=\'translate%2822.000000, 15.000000%29\'%3E%3Ccircle id=\'circle\' fill=\'rgba(25, 95, 244, 0.999999)\' cx=\'8\' cy=\'8\' r=\'8\'%3E%3C/circle%3E%3Cpolygon id=\'rectangle\' fill=\'%23FFFFFF\' points=\'7 12 9 12 8.75 7 7.25 7\'%3E%3C/polygon%3E%3Ccircle id=\'circle\' fill=\'%23FFFFFF\' cx=\'8\' cy=\'5\' r=\'1\'%3E%3C/circle%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A")}.ui-message--has-icon.ui-message--success .ui-message__icon:after{content:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Ccircle%20cx%3D%228%22%20cy%3D%228%22%20r%3D%228%22%20fill%3D%22%23000%22%20fill-opacity%3D%22.208%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M12.4%206L11%204.6l-4%204-2-2L3.6%208%207%2011.4z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")}.ui-message--has-icon.ui-message--error .ui-message__icon:after{content:url("data:image/svg+xml,%3C%3Fxml version=\'1.0\' encoding=\'UTF-8\' standalone=\'no\'%3F%3E%3Csvg width=\'16px\' height=\'16px\' viewBox=\'0 0 68 68\' version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cg id=\'HIGH-final\' stroke=\'none\' stroke-width=\'1\' fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg transform=\'translate%28-416.000000, -368.000000%29\'%3E%3Cg transform=\'translate%28270.000000, 256.000000%29\'%3E%3Cg transform=\'translate%28146.000000, 112.000000%29\'%3E%3Ccircle fill=\'rgba(208, 1, 27, 0.999999)\' cx=\'34\' cy=\'34\' r=\'34\'%3E%3C/circle%3E%3Crect opacity=\'0.3\' x=\'17\' y=\'17\' width=\'34\' height=\'34\'%3E%3C/rect%3E%3Cpolygon fill=\'%23FFFFFF\' points=\'20 43.9999997 24.0000003 48 48 24.0000003 43.9999997 20\'%3E%3C/polygon%3E%3Cpolygon fill=\'%23FFFFFF\' transform=\'translate%2834.000000, 34.000000%29 scale%28-1, 1%29 translate%28-34.000000, -34.000000%29 \' points=\'20 43.9999997 24.0000003 48 48 24.0000003 43.9999997 20\'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A")}.ui-message--warn,.ui-message--error,.ui-message--success{color:#fff}.ui-message--warn{background-color:#fbab60}.ui-message--error{background-color:#ff5a5f}.ui-message--success{background-color:#39b54a}.ui-message{border-radius:3px;text-align:left;padding-right:48px}.ui-message__icon{margin-right:8px}.ui-message__close{position:relative;width:16px;height:16px;cursor:pointer;padding:24px;position:absolute;top:50%;right:0;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.ui-message__close:after,.ui-message__close:before{position:absolute;left:8px;top:0;content:"";height:16px;width:2px;background-color:#fff;cursor:pointer}.ui-message__close:before{-webkit-transform:rotate(45deg) translateX(20px);transform:rotate(45deg) translateX(20px)}.ui-message__close:after{-webkit-transform:rotate(-45deg) translateY(20px);transform:rotate(-45deg) translateY(20px)}.ui-message--info{background-color:#5c95ff;color:#fff}.ui-message.ui-message--post-registration,.ui-message.ui-message--overdue-loans{border-radius:0;padding:0;text-align:left}.ui-message.ui-message--post-registration .ui-message--bounds,.ui-message.ui-message--overdue-loans .ui-message--bounds{-moz-box-sizing:border-box;box-sizing:border-box;max-width:1200px;margin:0 auto;position:relative}.ui-message.ui-message--post-registration .ui-message--bounds{padding:20px 46px 20px 34px}.ui-message.ui-message--post-registration .ui-message--bounds .ui-message__icon{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);left:10px}.ui-message.ui-message--post-registration .ui-message--bounds .ui-message__close{right:-6px;-moz-box-sizing:border-box;box-sizing:border-box}.ui-message.ui-message--post-registration a{color:#fff;text-decoration:underline}.ui-message.ui-message--overdue-loans{background-color:#ff5a5f;color:#fff;font-size:0}.ui-message.ui-message--overdue-loans .ui-message--bounds{padding:22px 120px 22px 18px}.ui-message.ui-message--overdue-loans .ui-message__text{display:inline !important}.ui-message.ui-message--overdue-loans .ui-message--overdue-loans-cta{font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif;display:inline-block;position:absolute;top:50%;right:18px;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:84px;height:36px;line-height:36px;color:#fff;border:solid 1px #fff;border-radius:4px;text-align:center;text-decoration:none;-moz-box-sizing:border-box;box-sizing:border-box}.ui-message.ui-message--overdue-loans .ui-message__text,.ui-message.ui-message--overdue-loans .ui-message--overdue-loans-cta{font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif !important;font-size:14px}#nav-header-overdue-loans{text-decoration:none}.kyc-active-campaign__nav-header{text-decoration:none}.kyc-active-campaign__nav-header .kyc-active-campaign__message{background-color:#ff5a5f;color:#fff;border-radius:0;padding:0;text-align:left}.kyc-active-campaign__nav-header .kyc-active-campaign__message .kyc-active-campaign__bounds{-moz-box-sizing:border-box;box-sizing:border-box;max-width:1200px;margin:0 auto;position:relative;padding:13px;font-size:14px}.kyc-active-campaign__nav-header .kyc-active-campaign__message .kyc-active-campaign__bounds .kyc-active-campaign__text{display:inline}.kyc-active-campaign__nav-header .kyc-active-campaign__message .kyc-active-campaign__bounds .kyc-active-campaign__cta{display:inline-block;margin-left:10px;padding:8px 20px;color:#fff;border:solid 1px #fff;border-radius:4px}.nav-link-tag{font-size:11px;font-weight:600;color:#fff;border-radius:8px;background-color:#3483fa;line-height:4px;padding:6px;display:inline-block;text-transform:uppercase}.nav-link-tag--small{font-size:8px;padding:1px 3px;line-height:1em}.nav-bounds.nav-bounds-with-cart .nav-cart{overflow:hidden}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart-quantity>b{font-weight:inherit}.nav-header{background-color:#fff159;border:0;position:relative}.nav-header:before{content:"";position:absolute;width:100%;height:100px;left:0;top:0;box-shadow:0 1px 0 0 rgba(0,0,0,.1)}.nav-header.nav-header-plusclean:before,.nav-header.nav-header-pluslite:before{height:56px}.nav-header .ml-count{font-weight:600}#nav-header-menu-mobile{display:none}.nav-footer-user-info{border-top:1px solid #ededed}.nav-footer-copyright{font-size:12px;width:auto}.nav-footer-navigation a{color:#333;padding:0 8px;border:0}.nav-footer-navigation a:link,.nav-footer-navigation a:visited{color:#333}.nav-footer-navigation a:hover,.nav-footer-navigation a:active,.nav-footer-navigation a:focus{color:#000}input[type=text].nav-search-input,input[type=search].nav-search-input{background-color:#fff}input[type=text].nav-search-input::-webkit-input-placeholder, input[type=search].nav-search-input::-webkit-input-placeholder{color:#bbb;font-weight:200}input[type=text].nav-search-input::-moz-placeholder, input[type=search].nav-search-input::-moz-placeholder{color:#bbb;font-weight:200}input[type=text].nav-search-input::placeholder,input[type=search].nav-search-input::placeholder{color:#bbb;font-weight:200}input[type=search].nav-search-input{-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=search].nav-search-input::-ms-clear,input[type=search].nav-search-input::-ms-reveal{display:none}input[type=search].nav-search-input::-webkit-search-decoration,input[type=search].nav-search-input::-webkit-search-cancel-button,input[type=search].nav-search-input::-webkit-search-results-button,input[type=search].nav-search-input::-webkit-search-results-decoration{display:none}.nav-header:before,.nav-header.nav-header-plusclean:before,.nav-header.nav-header-pluslite:before{height:48px}.nav-footer{background-color:#fff}.nav-footer-mobile-links-bounds{padding:26px 10%;font-size:0}.nav-footer-mobile-links-bounds a{display:inline-block;width:50%;font-size:14px;line-height:1.3em;color:#333;white-space:normal;vertical-align:middle;margin:.75em 0;padding-right:10px}.nav-footer-mobile-links-bounds a:nth-child(2n){padding-right:0}.nav-footer-mobile-links{word-break:break-word}.nav-footer-mobile-links-bounds+.nav-bounds,.nav-footer-mobile-links-bounds:first-child,.nav-bounds{padding:22px 10%}.nav-bounds .nav-footer-user{text-align:left;padding:0;margin:0 0 12px 0;overflow:visible;font-size:0;color:#333;height:25px;line-height:25px}.nav-bounds .nav-footer-user .nav-icon-user{vertical-align:middle}.nav-bounds .nav-footer-user strong{color:#333;font-size:16px;font-weight:normal;vertical-align:middle;max-width:none}.nav-bounds .nav-footer-user.logged a{display:inline-block;margin:0}.nav-bounds .nav-footer-user.logged .nav-footer-avatar-user-img{height:25px;width:25px;border-radius:50%;margin-right:6px;vertical-align:middle}.nav-bounds .nav-footer-user.logged .nav-icon-user{display:inline-block;font-size:23px}.nav-bounds .nav-footer-user.logged .nav-icon-user:before{content:"\xee\xa8\xa8"}.nav-bounds .nav-footer-user .nav-footer-login,.nav-bounds .nav-footer-user .nav-footer-registration{font-size:16px;color:#3484fa;font-weight:300}.nav-bounds .nav-footer-user .nav-footer-login{padding-right:10px;border-right:solid 1px #eaeaea}.nav-bounds .nav-footer-user .nav-footer-registration{padding-left:10px}.nav-footer-info-wrapper{text-align:left;margin:0;padding:0}.nav-footer-info-wrapper .nav-footer-primaryinfo{border:none;margin:0;padding:0}.nav-footer-info-wrapper .nav-footer-primaryinfo .nav-footer-copyright{font-size:12px;color:#999;font-weight:300}.nav-menu,.nav-search .nav-category,.exhibitor__picture,a.option-logout{display:none !important}.hamburger-top-bread,.hamburger-patty,.hamburger-bottom-bread{height:1px}.hamburger-bottom-bread{margin-top:6px}.hamburger-top-bread{margin-top:-8px}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-top-bread,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-top-bread{-webkit-transform:translate(0, 8px) rotate(45deg);transform:translate(0, 8px) rotate(45deg)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-patty,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-patty{-webkit-transform:scale(0, 0);transform:scale(0, 0)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-bottom-bread,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-bottom-bread{-webkit-transform:translate(0, -6px) rotate(-45deg);transform:translate(0, -6px) rotate(-45deg)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper #nav-header-menu{display:none}.ui-loading--inline{position:relative}.ui-loading--block{position:absolute;z-index:7}.ui-loading--block .ui-loading__container{z-index:8}.ui-loading--fullscreen{position:fixed;z-index:1022}.ui-loading--fullscreen .ui-loading__container{z-index:1023}.ui-loading--block,.ui-loading--fullscreen,.ui-loading__mask{width:100%;height:100%;top:0;left:0}.ui-loading--block .ui-loading__container,.ui-loading--fullscreen .ui-loading__container{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}.ui-loading__mask{position:absolute;background-color:rgba(255,255,255,.9)}.ui-loading--inline .ui-loading__mask{display:none}.ui-loading__spinner{width:32px;height:32px;-webkit-animation:loading-rotate 2s linear infinite;animation:loading-rotate 2s linear infinite;-webkit-transform-origin:center center;transform-origin:center center;position:relative}.ui-loading__spinner--small{width:32px;height:32px}.ui-loading__spinner--large{width:64px;height:64px}.ui-loading__spinner-path{stroke-dasharray:89,200;stroke-dashoffset:-10;-webkit-animation:loading-dash 1.5s ease-in-out infinite,loading-color 6s ease-in-out infinite;animation:loading-dash 1.5s ease-in-out infinite,loading-color 6s ease-in-out infinite;stroke-linecap:round;stroke:#3483fa}@-webkit-keyframes loading-rotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes loading-rotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes loading-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}100%{stroke-dasharray:89,200;stroke-dashoffset:-124px}}@keyframes loading-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}100%{stroke-dasharray:89,200;stroke-dashoffset:-124px}}@-webkit-keyframes loading-color{100%,0%{stroke:#3483fa}}@keyframes loading-color{100%,0%{stroke:#3483fa}}a.nav-mobile-button{font-size:14px;font-weight:600;line-height:1;padding:12px 0;text-align:center;border-radius:4px;font-size:14px;font-weight:600;border:1px solid #3484fa;cursor:pointer;box-shadow:0 0 0 0 #fff;text-decoration:none;display:inline-block;width:48%}@media(min-width: 450px){a.nav-mobile-button{width:40%}}@media(min-width: 768px){a.nav-mobile-button{width:44%}}a.nav-mobile-button.nav-mobile-button-outline{background:#fff;color:#3484fa}a.nav-mobile-button.nav-mobile-button-filled{background:#3484fa;color:#fff;margin-right:4px}#nav-header-menu-mobile{background:#fff;margin:0;padding:0;color:#333;position:relative;display:none;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);border-top:solid 1px #e5d850}#nav-header-menu-mobile:before{content:"";position:absolute;top:-6px;right:17px;width:10px;height:10px;-webkit-transform:rotate(45deg);transform:rotate(45deg);background:#fff;border-top:solid 1px #e5d850;border-left:solid 1px #e5d850}#nav-header-menu-mobile #nav-header-menu-mobile-user-info{border-bottom:solid 1px #e6e6e6;padding:18px 24px;-moz-box-sizing:content-box;box-sizing:content-box;height:52px}#nav-header-menu-mobile #nav-header-menu-mobile-user-info.nav-header-menu-mobile-guest{height:auto;padding:18px 24px}#nav-header-menu-mobile #nav-header-menu-mobile-user-info #nav-header-mobile-avatar-form{position:relative;width:40px;height:40px;line-height:42px;text-align:center;background:#ededed;border-radius:50%;color:#bbb;font-size:25px;float:left;margin-right:12px;margin-top:6px}#nav-header-menu-mobile #nav-header-menu-mobile-user-info #nav-header-mobile-avatar-form input{opacity:0;position:absolute;left:-1000px}#nav-header-menu-mobile #nav-header-menu-mobile-user-info #nav-header-mobile-avatar-form img{width:100%;height:100%;border-radius:50%;border:solid 1px #f5f5f5;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}#nav-header-menu-mobile #nav-header-menu-mobile-user-info #nav-header-mobile-avatar-form svg{display:none;position:absolute;top:-12px;left:-12px;width:64px;height:64px}#nav-header-menu-mobile #nav-header-menu-mobile-user-info #nav-header-mobile-avatar-form svg path{stroke-width:4}#nav-header-menu-mobile #nav-header-menu-mobile-user-info.nav-header-menu-mobile-with-loyalty #nav-header-mobile-avatar-form{margin-right:20px}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-icon-create-account-mobile{margin-left:2px}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-menu-mobile-guest-logo{height:56px;width:56px;background-color:#ededed;border-radius:50%;float:left;margin-right:16px;text-align:center}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-menu-mobile-guest-icon{margin-top:9px}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-menu-mobile-guest-title{font-size:16px;font-weight:600;margin:4px 0;line-height:1}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-menu-mobile-guest-text{font-size:14px;color:rgba(0,0,0,.45);margin:0;line-height:1.14}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-menu-mobile-guest-buttons{margin-top:14px}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-mobile-loyalty-link{font-size:14px;text-decoration:none;font-weight:400}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-mobile-loyalty-link-icon{margin-left:3px}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-mobile-loyalty-level-1{stroke:#20c261;color:#20c261}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-mobile-loyalty-level-2{stroke:#1ac2b0;color:#1ac2b0}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-mobile-loyalty-level-3{stroke:#00a4d5;color:#00a4d5}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-mobile-loyalty-level-4{stroke:#4063ea;color:#4063ea}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-mobile-loyalty-level-5{stroke:#8700ff;color:#8700ff}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-mobile-loyalty-level-6{stroke:#a90f90;color:#a90f90}#nav-header-menu-mobile #nav-header-menu-mobile-user-info.nav-header-menu-mobile-with-loyalty #nav-header-mobile-avatar-form svg{display:inline-block}#nav-header-menu-mobile #nav-header-menu-mobile-user-info #nav-header-user-greetings{font-size:16px;font-weight:600;line-height:1.25;margin:5px 0 0 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#nav-header-menu-mobile #nav-header-menu-mobile-user-info.nav-header-menu-mobile-with-loyalty #nav-header-user-greetings{font-size:14px;line-height:1.29;color:rgba(0,0,0,.45);font-weight:400}#nav-header-menu-mobile #nav-header-menu-mobile-user-info #nav-header-user-mail-or-level{font-size:14px;line-height:1.29;color:rgba(0,0,0,.45);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#nav-header-menu-mobile #nav-header-menu-mobile-user-info.nav-header-menu-mobile-with-loyalty #nav-header-user-mail-or-level .nav-header-mobile-loyalty-link{line-height:1.25;font-size:16px;font-weight:600;color:rgba(0,0,0,.8)}#nav-header-menu-mobile #nav-header-menu-mobile-user-info.nav-header-menu-mobile-with-loyalty #nav-header-user-mail-or-level path{stroke:rgba(0,0,0,.8)}#nav-header-menu-mobile ul{position:relative;background:#fff;list-style:none;margin:0;padding:16px 0;border-bottom:solid 1px #e6e6e6;font-size:14px}#nav-header-menu-mobile ul li{display:block;padding:4px 0;margin:0}#nav-header-menu-mobile ul li:last-of-type{margin-bottom:0}#nav-header-menu-mobile ul li.nav-mobile-menu-selected{background:#f7f7f7}#nav-header-menu-mobile ul li.nav-mobile-menu-selected a{color:#3483fa}#nav-header-menu-mobile ul li a{display:block;min-height:39px;line-height:23px;text-decoration:none;padding:8px 20px 8px 26px;margin:0;color:rgba(0,0,0,.8)}#nav-header-menu-mobile ul li a i{font-size:20px;width:20px;height:20px;display:inline-block;margin-right:18px;float:left}#nav-header-menu-mobile ul li a i.nav-icon-bookmarks-mobile{font-size:18px;height:18px}#nav-header-menu-mobile ul li a i.nav-icon-deals-mobile{font-size:22px;height:23px;margin-top:2px}#nav-header-menu-mobile ul li a i.nav-icon-points-discounts-mobile{font-size:22px;height:22px}#nav-header-menu-mobile ul li a span{margin:0;font-weight:600}#nav-header-menu-mobile ul li a span .nav-header-notifications-badge{position:static;display:inline-block;margin-left:10px}#nav-header-menu-mobile ul li a span .nav-header-notifications-badge:empty{display:none}#nav-header-menu-mobile ul li a span .nav-header-badge{border-radius:4px;background-color:#3483fa;display:inline-block;margin:2px 0 0 10px;color:#fff;padding:0 8px;line-height:20px;font-size:10px;text-transform:uppercase;vertical-align:top}@media(max-width: 359px){#nav-header-menu-mobile ul li a span .nav-header-badge{text-indent:-200px;overflow:hidden;width:10px;height:10px;padding:0;border-radius:50%;margin-top:8px}}#nav-header-menu-mobile ul li a .nav-link-tag{margin-left:9px}#nav-header-menu-mobile ul #nav-header-menu-mobile-account-money a{height:62px;line-height:38px}#nav-header-menu-mobile ul #nav-header-menu-mobile-account-money p{padding-left:41px;line-height:23px}#nav-header-menu-mobile ul #nav-header-menu-mobile-account-money #nav-header-menu-mobile-account-money-detail{display:block;color:#797979;font-size:14px;line-height:1.14}#nav-header-menu-mobile ul #nav-header-menu-mobile-account-money #nav-header-menu-mobile-account-money-detail svg{width:20px;height:20px}#nav-header-menu-switch:checked~header .nav-header-menu-wrapper #nav-header-menu-mobile{display:block}#nav-header-menu-switch:checked~header .nav-bounds-with-cart .nav-header-menu-wrapper #nav-header-menu-mobile:before,.nav-bounds-with-cart #nav-header-menu-switch:checked+.nav-header-menu-wrapper #nav-header-menu-mobile:before{right:62px}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart-quantity{right:12px}.nav-icon-search{color:#aaa}.nav-cart.nav-cart-full .nav-icon-cart:before{content:"\xee\xa8\xa2"}.nav-cart.nav-cart-empty .nav-icon-cart:before{content:"\xee\xa8\x9f"}.nav-search input[type=text].nav-search-input,.nav-search input[type=search].nav-search-input{padding-top:5px;padding-bottom:7px}input[type=text].nav-search-input,input[type=search].nav-search-input{background-color:#fff;box-shadow:0 1px 2px 0 rgba(0,0,0,.1)}input[type=text].nav-search-input::-webkit-input-placeholder, input[type=search].nav-search-input::-webkit-input-placeholder{color:rgba(0,0,0,.25)}input[type=text].nav-search-input::-moz-placeholder, input[type=search].nav-search-input::-moz-placeholder{color:rgba(0,0,0,.25)}input[type=text].nav-search-input::placeholder,input[type=search].nav-search-input::placeholder{color:rgba(0,0,0,.25)}.nav-icon-search:before{-webkit-transform:translateY(-2px);transform:translateY(-2px)}.nav-search .nav-search-btn{padding-bottom:2px}.nav-search .nav-search-btn .nav-icon-search{font-size:13px;line-height:18px;display:inline}.nav-search .nav-search-btn .nav-icon-search:before{content:"\xee\xa8\xaa"}.nav-footer .nav-footer-downloadapp-banner{margin:0;padding:10px 10%;background:#fff159;border-top:solid 1px #f2e454;border-bottom:solid 1px #f2e454;text-align:left;white-space:nowrap;overflow:hidden}.nav-footer .nav-footer-downloadapp-banner a.nav-footer-downloadapp{font-size:16px;line-height:1.11;color:#333}.nav-footer .nav-footer-downloadapp-banner .nav-icon.nav-icon-downloadapp{margin:0 16px 0 0;display:inline-block;width:50px;height:50px;border-radius:5.8px;box-shadow:0 2px 5px 0 rgba(0,0,0,.18);vertical-align:middle;background-image:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/logo__small.png");background-repeat:no-repeat;background-position:center center;background-size:39px 28px}@media(-webkit-min-device-pixel-ratio: 2),(min-resolution: 192dpi),(min-resolution: 2dppx){.nav-footer .nav-footer-downloadapp-banner .nav-icon.nav-icon-downloadapp{background-image:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/logo__small@2x.png");background-size:39px 28px}}.nav-footer .nav-footer-downloadapp-banner .nav-icon.nav-icon-downloadapp:before{content:none}.nav-footer .nav-bounds a.nav-footer-change-device{display:none}@media(min-width: 360px){.nav-footer .nav-footer-downloadapp-banner a.nav-footer-downloadapp{font-size:18px}}@media(min-width: 475px){.nav-footer-mobile-links-bounds a{width:33%}.nav-footer-mobile-links-bounds a:nth-child(2n){padding-right:10px}.nav-footer-mobile-links-bounds a:nth-child(3n){padding-right:0}}.nav-header .nav-logo{background-size:44px 31px;width:44px;height:32px;top:8px;left:10px}.nav-header .nav-bounds{padding:48px 0 0}.nav-header .nav-bounds .nav-search{height:48px;left:64px}.nav-header--is-enter .nav-bounds .nav-search{left:10px;right:10px}a.nav-header-cp-anchor,a.nav-header-cp-anchor:hover,a.nav-header-cp-anchor:visited,a.nav-header-cp-anchor:active,a.nav-header-cp-anchor:link{color:#736c28;text-decoration:none;display:block;height:39px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;position:relative;padding:1px 30px 0 28px;line-height:38px;font-size:13px;box-shadow:0 1px 0px 0 rgba(0,0,0,.1)}a.nav-header-cp-anchor:before,a.nav-header-cp-anchor:hover:before,a.nav-header-cp-anchor:visited:before,a.nav-header-cp-anchor:active:before,a.nav-header-cp-anchor:link:before{font-family:navigation;content:"\xee\xa9\x85";position:absolute;left:10px;font-size:16px;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}a.nav-header-cp-anchor:after,a.nav-header-cp-anchor:hover:after,a.nav-header-cp-anchor:visited:after,a.nav-header-cp-anchor:active:after,a.nav-header-cp-anchor:link:after{position:absolute;top:16px;right:12px;border-style:solid;border-width:0 2px 2px 0;border-color:#c1b74d;content:"";display:inline-block;height:7px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);width:7px}#nav-header-menu-switch:checked+.nav-header .nav-header-cp-anchor{display:none}.nav-footer-access-icon{margin-left:8px}@media(max-width: 355px){.nav-footer-access-icon{margin-left:4px}}.nav-footer-navigation{margin-bottom:8px}.nav-footer-navigation a{padding:0 4px}.nav-footer-navigation a:first-child{padding-left:0}.nav-footer-navigation--mobile{display:block}.nav-footer-secondaryinfo{margin:0 0 4px}@supports((display: -webkit-flex) or (display: flex)){body{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;min-height:100vh;height:auto}[role=main]{height:auto;-webkit-flex-grow:1;flex-grow:1}.nav-header,[role=main],.nav-footer{display:block}body,[role=main]{padding:0 !important}.nav-footer{overflow:unset}.nav-footer-access-content{margin-top:0}.nav-footer-access{margin-top:64px}}*:focus:not(:focus-visible){outline:0}</style>\n<style>a.nav-skip-to-main-content{border:0;border-bottom-left-radius:4px;border-bottom-right-radius:4px;position:absolute;color:#fff;font-weight:100;text-decoration:none;text-align:center;background:#3484fa;top:0;left:0;z-index:999;cursor:pointer;height:0;padding:0;line-height:normal}a.nav-skip-to-main-content:focus{border:1px solid #3484fa;height:54px;padding:8px 8px}.nav-skip-to-main-content>.nav-skip-to-main-content__content{display:none}.nav-skip-to-main-content:focus>.nav-skip-to-main-content__content{display:block;padding:8px;border:1px solid #fff;border-radius:4px}</style>\n<style>#nav-header-menu-mobile #nav-header-menu-mobile-user-info{padding:12px 16px!important}.user-menu__coins{margin:0 20px;background:#e5e5e5;border-radius:16px}#nav-header-menu .user-menu__coins label>.user-menu__coins-main{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0;padding:11px 12px 11px 16px;cursor:auto;-ms-flex-pack:distribute;justify-content:space-around}.user-menu__coins-mobile{border-radius:16px;margin:0;background:#ffffff80;padding:0;height:auto;-webkit-transition:height .5s,width .5s 0.75s;-o-transition:height .5s,width .5s 0.75s;transition:height .5s,width .5s 0.75s}#nav-header-menu .user-menu__coins .user-menu__coins-main-link.user-menu__coins-link-label{color:#3483fa;font-weight:400;font-size:14px;line-height:18px;margin:0;padding:0 0 12px}#nav-header-menu .user-menu__one-column .user-menu__coins .user-menu__coins-main-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0;padding:11px 12px 11px 18px;cursor:auto}.user-menu__coins .user-menu__coins-main-mobile{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0 12px;height:40px;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.user-menu__coins-mp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center}#nav-header-menu .user-menu__one-column .user-menu__coins .user-menu__coins-main-item.user-menu__coins-main-item-padding{padding:8px 12px 10px 18px}#nav-header-menu .user-menu__one-column .user-menu__coins .user-menu__coins-main-cursor{cursor:pointer}.user-menu__coins-icon{width:22px;margin-right:18px}.user-menu__coins-icon-mobile{width:20px;margin-right:18px}.user-menu__coins-icon-title{margin-right:16px;width:24px;height:24px;-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.user-menu__coins-icon-item{-ms-flex-item-align:start;align-self:flex-start;margin-right:18px;width:20px;height:20px}.user-menu__user-badge-email__chevron.user-menu__coins-title__chevron{color:#737373;-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg);position:absolute;top:-2px;right:4px;-webkit-transition:195ms;-o-transition:195ms;transition:195ms}.user-menu__coins-title{font-size:14px;color:#1a1a1a;margin:0;font-weight:600;line-height:18px;display:-webkit-box;display:-ms-flexbox;display:flex}.user-menu__coins-title-weight{font-weight:400}.user-menu__coins-title-image-align{-ms-flex-item-align:start;align-self:flex-start}.user-menu__coins-item{width:100%;-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.user-menu__coins-item-core{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;width:100%;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.user-menu__coins-each-items{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;width:100%;-webkit-box-align:start;-ms-flex-align:start;align-items:start;padding:11px 12px}#nav-header-menu-mobile-user-info .user-menu__coins .user-menu__coins-info ul{border-bottom:0 solid #fff;padding:0}.user-menu__coins-item-container-title{width:100%;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline;padding-right:10px;position:relative}.user-menu__coins-title-mobile{padding:11px 0}.user-menu__coins-super-index{font-size:9px;vertical-align:top;line-height:22px}.user-menu__coins-container-item-info{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%}.user-menu__coins-percentage{font-size:11px;padding:3px 6px 2px;border-radius:8px;font-weight:600;line-height:11px}.user-menu__coins-percentage-mobile{margin-left:10px;border-radius:14px}.user-menu__coins-percentage-green{color:#00a650;background:rgba(0,166,80,.1)}.user-menu__coins-percentage-red{color:#f23d4f;background:rgba(242,61,79,.1)}.user-menu__coins-subtitle{font-size:12px;color:#737373;line-height:normal;margin:0;font-weight:400}.user-menu__coins-subtitle-info{font-size:14px;color:#3483fa;margin:0;font-weight:400;line-height:18px}.user-menu__coins-subtitle-ma{margin-left:3px}#nav-header-menu .user-menu__one-column .user-menu__coins .user-menu__coins-main.user-menu__coins-main-kyc{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;display:-webkit-box;display:-ms-flexbox;display:flex;padding:10px 12px 12px 16px}.user-menu__coins-kyc-label{color:#3483fa;font-weight:600;font-size:14px;line-height:18px;margin:0}.user-menu__user-badge-email__chevron.user-menu__user-badge-kyc{color:#3483fa;margin-right:5px}.user-menu__coins-chevron .user-menu__coins-kyc-chevron{color:#3483fa;stroke:#3483fa}.user-menu__coins-kyc-label-mobile{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;padding:11px 12px;text-decoration:none;background:#fff}.user-menu__coins-kyc-label-mobile p{margin:0}.user-menu__coins-item-list{padding:0;height:0;opacity:0;overflow:hidden;-webkit-transition:height .3s,opacity .5s;-o-transition:height .3s,opacity .5s;transition:height .3s,opacity .5s}.user-menu__coins-container-list{padding:0;max-height:0;opacity:0;overflow:hidden;-webkit-transition:195ms;-o-transition:195ms;transition:195ms}.user-menu__coins-mp-link{width:100%}.user-menu__coins-show-item-list{height:107px;opacity:1}.user-menu__coins-show-item-list-with-kyc{height:145px;opacity:1}.user-menu__coins-item-container-title .user-menu__coins-rotate-icon{-webkit-transform:rotate(315deg);-ms-transform:rotate(315deg);transform:rotate(315deg)}.user-menu__coins-main-mobile .user-menu__coins-chevron{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);-webkit-transition:-webkit-transform .4s ease-in-out;transition:-webkit-transform .4s ease-in-out;-o-transition:transform .4s ease-in-out;transition:transform .4s ease-in-out;transition:transform .4s ease-in-out, -webkit-transform .4s ease-in-out}.user-menu__coins-chevron .user-menu__coins--chevron{color:#737373;stroke:#737373}#nav-header-menu .user-menu__one-column .user-menu__coins .user-menu__shortcuts-separator{margin:0;border-top:1px solid}#nav-header-menu .user-menu__one-column .user-menu__shortcuts-separator.user-menu__shortcuts-separator-coin{margin:0 12px 0 16px}#nav-header-menu .nav-header-user-layer .user-menu__coins-link-label:hover,#nav-header-menu .nav-header-user-layer .user-menu__coins-main-item:hover,#nav-header-menu .nav-header-user-layer .user-menu__coins-main:hover{background:0 0}.user-menu__coins-kyc-list{height:188px}.user-menu__coins ul{padding:0}.user-menu__coins-currency.andes-money-amount{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline}.user-menu__coins-title .andes-money-amount--cents-superscript .andes-money-amount__cents{-ms-flex-item-align:start;align-self:flex-start;margin-left:1px}.user-menu__coins-title .andes-money-amount--cents-comma .andes-money-amount__cents::before{content:\',\'}.user-menu__coins-title .andes-money-amount--cents-dot .andes-money-amount__cents::before{content:\'.\'}.user-menu__coins-title .andes-money-amount__cents--superscript-16{margin-top:.7px!important}.user-menu__coins-title-weight .andes-money-amount--cents-superscript[style]{font-size:14px!important}#user-menu__coins-state:checked~.user-menu__coins-container-list{max-height:200px;opacity:1;-webkit-transition:225ms;-o-transition:225ms;transition:225ms}#user-menu__coins-state:checked~label .user-menu__coins-title__chevron{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);top:0;-webkit-transition:225ms;-o-transition:225ms;transition:225ms}#user-menu__coins-state:checked~.user-menu__coins-mobile{background:#fff;-webkit-transition:225ms ease-in-out;-o-transition:225ms ease-in-out;transition:225ms ease-in-out}.user-menu__coins-item-container-title .user-menu__coins-chevron{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}#user-menu__coins-state:checked~.user-menu__coins-mobile .user-menu__coins-chevron-mp{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transition:225ms ease-in-out;-o-transition:225ms ease-in-out;transition:225ms ease-in-out}#user-menu__coins-state:checked~.user-menu__coins-mobile .user-menu__coins-info{max-height:500px;-webkit-transition:225ms ease-in-out;-o-transition:225ms ease-in-out;transition:225ms ease-in-out}.user-menu__coins-main-mobile{-webkit-box-sizing:border-box;box-sizing:border-box}.user-menu__coins-info{overflow:hidden;border-radius:0 0 16px 16px;max-height:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:195ms ease-in-out;-o-transition:195ms ease-in-out;transition:195ms ease-in-out}#nav-header-menu-mobile .user-menu__coins ul li span a span{color:#3483fa;font-weight:400}#nav-header-menu-mobile .user-menu__coins ul li span a{padding:0;height:auto;min-height:auto;margin-top:10px}.hide-visually,.user-menu__coins .andes-visually-hidden{clip:rect(0 0 0 0);border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:0 -1px -1px 0;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.user-menu__coins-divisor{border-bottom:1px solid #e6e6e6;width:100%}.user-menu__coins-divisor-coins{border-bottom:1px solid #e6e6e6;width:-webkit-fill-available;margin:0 12px}.user-menu__coins-no-kyc-list{height:156px}.user-menu__coins-kyc-list,.user-menu__coins-no-kyc-list{background:#fff;-webkit-box-shadow:0 6px 16px 0 #0000001a;box-shadow:0 6px 16px 0 #0000001a;-webkit-transition:height 225ms,_ 225ms 225ms;-o-transition:height 225ms,_ 225ms 225ms;transition:height 225ms,_ 225ms 225ms}#nav-header-menu-mobile .user-menu__coins-info ul li{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0}.user-menu__coins-kyc-list{max-height:150px}#nav-header-menu-mobile ul{border-bottom:0}.user-menu__coins-currency.andes-money-amount{-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline;display:-webkit-box;display:-ms-flexbox;display:flex;font-weight:400;line-height:1.25}.andes-money-amount__currency-symbol,.andes-money-amount__negative-symbol{padding-right:.2em}.andes-money-amount--compact{line-height:1}.andes-money-amount--cents-superscript .andes-money-amount__cents{-ms-flex-item-align:start;align-self:flex-start;margin-left:1px}#nav-header-menu-mobile-user-info,#nav-header-menu-mobile:before{background:#fff159}</style>\n<style>.nav-search .nav-category{background-color:#fff;color:#666;line-height:20px;height:24px;margin:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:55%;padding:2px 10px;position:absolute;right:50px;top:15px;text-align:right}.nav-search .nav-category:hover .nav-label-small{width:initial}.nav-search .nav-category label{-webkit-user-select:none}.nav-search .nav-category .nav-label-small{display:inline-block;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;vertical-align:middle;width:58px}.nav-search .nav-category input[type=checkbox]{border:1px solid #ccc;background:0;box-shadow:none;display:inline-block;margin:2px 9px 0 0;height:14px;padding:0;vertical-align:top;width:14px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.nav-search .nav-category input[type=checkbox]:focus{outline:1px dotted #9a9a9a}.mobile-view#mlCategory{top:unset;max-width:unset;text-align:left}.nav-search .nav-category input[type=checkbox]{vertical-align:unset}@media (max-width:768px){.nav-search .nav-category{display:none}}.nav-search .nav-category label .nav-category-icon{vertical-align:text-bottom}.nav-search .nav-category label .nav-icon-supermarket-logo{width:115px;height:18px}.mobile-view#mlCategory label .nav-icon-supermarket-logo{width:125px;height:22px;margin-left:1px;vertical-align:middle}</style>\n<link href="https://http2.mlstatic.com/frontend-assets/search-nordic/search.desktop.72f1728a.css" rel="stylesheet" type="text/css" onerror="(window[\'_pfl\'] = window[\'_pfl\'] || []).push([\'css\', this.href])" />\n\n<script>\n(function(win, doc) {\n \nfunction preloadCriticalPath() {\n var head = doc.getElementsByTagName(\'head\')[0],\n assets = ["https://http2.mlstatic.com/frontend-assets/ui-navigation/5.19.1/mercadolibre/navigation-desktop.css","https://http2.mlstatic.com/frontend-assets/ui-navigation/5.19.1/mercadolibre/navigation-mobile.css"],\n link,\n i;\n for(i = 0; i < assets.length; i++) {\n link = doc.createElement(\'link\');\n link.rel = \'prefetch\';\n link.href = assets[i];\n link.onerror = function(e) {\n (window[\'_pfl\'] = window[\'_pfl\'] || []).push([\'css\', e.target.href]);\n }\n head.appendChild(link);\n }\n}\n if (doc.readyState === \'complete\') {\n setTimeout(preloadCriticalPath, 0);\n } else {\n win.addEventListener(\'load\', function() {\n preloadCriticalPath();\n });\n }\n})(window, document);\n</script>\n<script>\n(function(a,b){a.GoogleAnalyticsObject=b;a[b]=a[b]||function(){(a[b].q=a[b].q||[]).push(arguments)};a[b].l=1*new Date})(window,"meli_ga");\nmeli_ga("set", "title", "app-search-nordic-nodejs-3.2.1");\nmeli_ga("set", "page", "/SEARCH/LISTING/?q=computador&c={\'MLB1648\':\'Inform\\u00E1tica\'}");\nmeli_ga("set", "dimension49", "MLB1983288877,MLB1930876153,MLB1937079157,MLB1607748387,MLB1983278713,MLB2131342947,MLB2025368730,MLB1937076326,MLB2081933352,MLB2114151338,MLB2153875378,MLB1669162236,MLB1983288732,MLB2603247328,MLB1983288643,MLB2614218974,MLB1983278831,MLB2696339147,MLB1663773541,MLB1837442511,MLB1983279452,MLB2610297318,MLB2210259535,MLB2669020387,MLB2610554493,MLB2199976353,MLB1986322829,MLB1680063928,MLB1899027328,MLB1506134141,MLB1983288676,MLB1983279518,MLB2022879801,MLB2096063553,MLB2161556728,MLB1983287147,MLB2103940157,MLB2724080796,MLB1983296789,MLB2618767197,MLB2145104504,MLB2626699161,MLB1983286920,MLB1983288815,MLB1786478708,MLB2618802287,MLB2044748327,MLB1885917902,MLB2222645583,MLB1615760527,MLB2025342637,MLB2032160315,MLB2625920831,MLB2685001475");\nmeli_ga("set", "dimension86", "MLB-COMPUTER_EQUIPMENT_AND_SPARE_PARTS");\nmeli_ga("set", "dimension117", "PDP+officialStore");\nmeli_ga("set", "dimension22", "547937");\nmeli_ga("set", "dimension9", "NONE");\nmeli_ga("set", "dimension23", "SEO-allowlist: in - SEARCH-noindex: false");\nmeli_ga("set", "dimension21", "115|393");\nmeli_ga("set", "dimension25", "{\\"mclics/grid-layout\\":\\"12899\\",\\"search/new-search-api\\":\\"8650\\",\\"mclics/show-pads-search-list\\":\\"5146\\",\\"mclics/pseudo-search-buybox-query\\":\\"9461\\",\\"mclics/show-pads-global\\":\\"5176\\",\\"mclics/pseudo-search-pads-buybox\\":\\"7708\\",\\"frontend/assetsCdnDomainMLB\\":\\"DEFAULT\\",\\"frontend/assetsCdnDomainMLU\\":\\"DEFAULT\\"}");\nmeli_ga("set", "dimension7", "MARKETPLACE");\nmeli_ga("set", "dimension8", "CORE");\nmeli_ga("set", "dimension48", "NONE");\nmeli_ga("set", "dimension113", "fdbc07bf-dc75-448b-bca8-3904faaf0d2a");\nmeli_ga("set", "dimension3", "{\'MLB1648\':\'Inform\\u00E1tica\'}");\nmeli_ga("set", "contentGroup1", "/MARKETPLACE/SEARCH/LISTING/");\nmeli_ga("set", "contentGroup2", "/CORE/SEARCH/LISTING/");\nmeli_ga("set", "contentGroup3", "/MLB1648/SEARCH/LISTING/");\nmeli_ga("set", "dimension1", "desktop");\nmeli_ga("set", "dimension6", "gallery");\nmeli_ga("set", "dimension7", "MARKETPLACE");\nmeli_ga("set", "dimension8", "CORE");\nmeli_ga("send", "pageview");\n(function(d) {\n var i = d.createElement(\'iframe\');\n (i.frameElement || i).style.cssText = \'width: 0; height: 0; border: 0; position: absolute\';\n i.src = "about:srcdoc";\n i.srcdoc="\\<script\\ src=\'https://http2.mlstatic.com/analytics/ga/mlb-ml-analytics.min.js\'>\\</script\\>";\n i.id = "GoogleAnalyticsIframe";\n var w = d.getElementsByTagName(\'script\')[0];\n w.parentNode.insertBefore(i, w);\n var doc = i.contentWindow.document;\n var s = doc.createElement(\'script\');\n s.type = \'text/javascript\';\n s.text =\'window.inDapIF = true;\';\n doc.documentElement.appendChild(s);\n })(document);\n</script>\n</head><body data-site="ML" data-country="BR"><input type="checkbox" id="nav-header-menu-switch"/><header role="banner" data-siteid="MLB" class="nav-header nav-header-plus"><div class="nav-bounds nav-bounds-with-cart nav-bounds-with-cp"><a id="nav-skip-to-main-content" role="button" href="#root-app" class="nav-skip-to-main-content" tabindex="1" aria-label="Ir para conte\xc3\xbado principal"><span class="nav-skip-to-main-content__content">Ir para conte\xc3\xbado principal</span></a><a class="nav-logo" href="//www.mercadolivre.com.br" tabindex="2">Mercado Livre Brasil - Onde comprar e vender de Tudo</a><div class="nav-header-menu-wrapper"><label for="nav-header-menu-switch" aria-controls="nav-header-menu"><span class="hamburger-top-bread"></span><span class="hamburger-patty"></span><span class="hamburger-bottom-bread"></span></label><nav id="nav-header-menu-mobile" class="nav-header-menu-mobile-guest"><div id="nav-header-menu-mobile-content"><div id="nav-header-menu-mobile-user-info" class="nav-header-menu-mobile-guest"><div class="nav-header-menu-mobile-guest-logo"><svg class="nav-header-menu-mobile-guest-icon" width="28" height="35" xmlns="http://www.w3.org/2000/svg"><path d="M27.343 33.706l-1.356.64A13.25 13.25 0 0 0 14 26.75c-5.17 0-9.8 2.988-11.978 7.578l-1.356-.643A14.75 14.75 0 0 1 14 25.25a14.75 14.75 0 0 1 13.343 8.456zM14 21.75C8.063 21.75 3.25 16.937 3.25 11S8.063.25 14 .25 24.75 5.063 24.75 11 19.937 21.75 14 21.75zm0-1.5a9.25 9.25 0 1 0 0-18.5 9.25 9.25 0 0 0 0 18.5zm0-2.5v-1.5a5.25 5.25 0 1 0 0-10.5v-1.5a6.75 6.75 0 0 1 0 13.5z" fill="#BBB" fill-rule="nonzero"></path></svg></div><h3 class="nav-header-menu-mobile-guest-title">Bem-vindo</h3><p class="nav-header-menu-mobile-guest-text">Entra na sua conta para ver suas compras, favoritos etc.</p><div class="nav-header-menu-mobile-guest-buttons"><a rel="nofollow" class="nav-mobile-button nav-mobile-button-filled" href="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit">Entre</a><a rel="nofollow" class="nav-mobile-button nav-mobile-button-outline" href="https://www.mercadolivre.com.br/registration?confirmation_url=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador">Crie a sua conta</a></div></div><ul><li><a href="https://www.mercadolivre.com.br#menu-user"><i class="nav-icon-home"></i><span>In\xc3\xadcio</span></a></li><li><a href="https://www.mercadolivre.com.br/ofertas#menu-user"><i class="nav-icon-deals-mobile"></i><span>Ofertas do dia</span></a></li><li><a href="https://www.mercadolivre.com.br/gz/home/navigation#menu-user"><i class="nav-icon-history-mobile"></i><span>Hist\xc3\xb3rico</span></a></li><li><a href="https://www.mercadolivre.com.br/ajuda#menu-user"><i class="nav-icon-help-mobile"></i><span>Contato</span></a></li></ul><ul><li><a href="https://www.mercadolivre.com.br/c/calcados-roupas-e-bolsas#menu-user"><i class="nav-icon-moda-mobile"></i><span>Moda</span></a></li><li><a href="https://www.mercadolivre.com.br/mais-vendidos#menu-user"><i class="nav-icon-best-sellers-mobile"></i><span>Mais vendidos</span><span class="nav-link-tag">Novo</span></a></li><li><a href="https://www.mercadolivre.com.br/a/especial/compra-internacional#menu-user"><i class="nav-icon-compra-internacional"></i><span>Compra Internacional</span><span class="nav-link-tag">Novo</span></a></li><li><a href="https://www.mercadolivre.com.br/lojas-oficiais#menu-user"><i class="nav-icon-stores-mobile"></i><span>Lojas oficiais</span></a></li><li><a href="https://www.mercadolivre.com.br/categorias#menu-user"><i class="nav-icon-categories-mobile"></i><span>Categorias</span></a></li></ul><ul><li><a href="https://www.mercadolivre.com.br/resumo#menu-user"><i class="nav-icon-summary-mobile"></i><span>Resumo</span></a></li><li><a href="https://www.mercadolivre.com.br/anuncie#menu-user"><i class="nav-icon-vender-mobile"></i><span>Vender</span></a></li></ul><ul><li><a href="https://www.mercadolivre.com.br/l/app#menu-user" id="nav-header-menu-download-mobile"><i class="nav-icon-download-mobile"></i><span>Compre e venda com o app!</span></a></li></ul></div></nav><nav id="nav-header-menu"><a href="https://www.mercadolivre.com.br/registration?confirmation_url=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador#nav-header" data-link-id="registration" rel="nofollow" tabindex="8">Crie a sua conta</a><a href="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit#nav-header" data-link-id="login" rel="nofollow" tabindex="8">Entre</a><a href="https://myaccount.mercadolivre.com.br/purchases/list#nav-header" data-link-id="purchases" rel="nofollow" tabindex="8">Compras</a></nav></div><form class="nav-search" action="https://www.mercadolivre.com.br/jm/search" method="GET" role="search"><input type="text" class="nav-search-input" aria-label="Digite o que voc\xc3\xaa quer encontrar" name="as_word" placeholder="Buscar produtos, marcas e muito mais\xe2\x80\xa6" maxLength="120" autoCapitalize="off" autoCorrect="off" spellcheck="false" autoComplete="off" tabindex="3" value="computador"/><p id="mlCategory" class="nav-category" title="Somente em Inform\xc3\xa1tica"><input type="checkbox" id="categorySearch" name="as_categ_id"/><label for="categorySearch">Somente em Inform\xc3\xa1tica</label></p><button type="submit" class="nav-search-btn" tabindex="4"><div role="img" aria-label="Buscar" class="nav-icon-search"></div></button></form><div class="nav-menu"><ul class="nav-menu-list"><li class="nav-menu-item"><a href="https://www.mercadolivre.com.br/navigation/addresses-hub?go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador" class="nav-menu-cp nav-menu-cp-logged" data-js="cp" data-modal-action="true" tabindex="6"><span class="nav-menu-cp-send">Informe seu</span><span class="nav-menu-link-cp"> CEP</span></a></li><li class="nav-menu-item"><a href="https://www.mercadolivre.com.br/categorias#nav-header" class="nav-menu-categories-link" data-js="nav-menu-categories-trigger" rel="nofollow" tabindex="7">Categorias</a></li><li class="nav-menu-item"><a href="https://www.mercadolivre.com.br/ofertas#nav-header" class="nav-menu-item-link" rel="nofollow" tabindex="7">Ofertas do dia</a></li><li class="nav-menu-item"><a href="https://www.mercadolivre.com.br/gz/home/navigation#nav-header" class="nav-menu-item-link" rel="nofollow" tabindex="7">Hist\xc3\xb3rico</a></li><li class="nav-menu-item"><a href="https://www.mercadolivre.com.br/c/calcados-roupas-e-bolsas#nav-header" class="nav-menu-item-link" rel="nofollow" tabindex="7">Moda</a></li><li class="nav-menu-item"><a href="https://www.mercadolivre.com.br/anuncie#nav-header" class="nav-menu-item-link" rel="nofollow" tabindex="7">Vender</a></li><li class="nav-menu-item"><a href="https://www.mercadolivre.com.br/ajuda#nav-header" class="nav-menu-item-link" rel="nofollow" tabindex="7">Contato</a></li></ul></div><a href="https://www.mercadolivre.com.br/gz/cart" title="Carrinho de compras" aria-label="0 produtos em seu carrinho" class="nav-cart nav-cart-empty" id="nav-cart" tabindex="9"><i class="nav-icon-cart"></i><span class="nav-icon-cart-quantity"></span></a><a href="https://www.mercadolivre.com.br/assinaturas/nivel-6?utm_source=BM+NIVEL+6&utm_medium=BM+NIVEL+6&utm_campaign=BM+NIVEL+6#DEAL_ID=&S=MKT&V=7&T=MENU&L=LOYALTYNIVEL6T3_NIVEL6&origin=banner-menu&me.bu_line=26&me.flow=-1&me.bu=3&me.audience=all&me.content_id=BANNER_MENU_NIVEL1A5&me.component_id=banner_menu_web_ml&me.logic=user_journey&me.position=0" class="exhibitor__picture" tabindex="5"><img src="https://http2.mlstatic.com/D_NQ_806934-MLA50801953236_072022-OO.jpg" title="Loyalty" alt="Loyalty"/></a><a href="https://www.mercadolivre.com.br/navigation/addresses-hub?go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador" class="nav-header-cp-anchor" data-js="cp" data-modal-action="true" tabindex="6"><span class="nav-menu-cp-send">Informe seu</span><span class="nav-menu-link-cp"> CEP</span></a></div></header><main role="main" id="root-app"><div class="ui-search"><svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" class="ui-search-svg-sprites"><defs><symbol id="full" viewBox="0 0 100 32"><path d="M6.4 0h12.8l-6.4 11.429h10.667l-17.067 20.571 4.267-13.714h-10.667l6.4-18.286zM34.626 23.467h-4.77l4.077-18.498h13.562l-0.915 4.16h-8.791l-0.61 2.884h8.57l-0.915 4.16h-8.597l-1.609 7.294zM57.687 23.799c-5.685 0-8.486-2.718-8.486-6.601 0-0.305 0.083-0.943 0.139-1.22l2.441-11.010h4.853l-2.413 10.899c-0.028 0.139-0.083 0.444-0.083 0.777 0.028 1.525 1.193 2.995 3.55 2.995 2.551 0 3.855-1.609 4.326-3.772l2.413-10.899h4.826l-2.413 10.982c-0.998 4.493-3.439 7.849-9.152 7.849zM82.33 23.467h-12.203l4.077-18.498h4.77l-3.134 14.338h7.405l-0.915 4.16zM98.596 23.467h-12.203l4.077-18.498h4.77l-3.134 14.338h7.405l-0.915 4.16z"></path></symbol></defs><defs><symbol id="start-empty"><path fill="#ddd" fill-rule="evenodd" d="M5.256 8L2.131 9.648l.597-3.49L.2 3.684l3.494-.509L5.256 0l1.562 3.176 3.494.51-2.528 2.471.597 3.491z"></path></symbol></defs><defs><symbol id="start-full"><path fill-rule="evenodd" d="M5.056 8L1.931 9.648l.597-3.49L0 3.684l3.494-.509L5.056 0l1.562 3.176 3.494.51-2.528 2.471.597 3.491z"></path></symbol></defs><defs><symbol id="start-half"><g fill-rule="evenodd"><path fill="#ddd" d="M5.256 8L2.131 9.648l.597-3.49L.2 3.684l3.494-.509L5.256 0l1.562 3.176 3.494.51-2.528 2.471.597 3.491z"></path><path d="M5.272 8.026L2.137 9.679l.6-3.502L.2 3.697l3.505-.51L5.272 0z"></path></g></symbol></defs><defs><symbol id="bookmark"><g stroke-width="1.0" fill-rule="evenodd"><path d="M10.977 2.705C11.93 1.618 13.162 1 14.895 1c3.333 0 5.607 2.152 5.607 6.274 0 .08-.002.16-.005.24-.107 2.596-1.876 5.253-4.737 7.892a33.77 33.77 0 0 1-3.165 2.57 32.447 32.447 0 0 1-1.45.983l-.394.243-.394-.243-.009-.005-.021-.014-.08-.05a32.447 32.447 0 0 1-1.34-.914 33.77 33.77 0 0 1-3.165-2.57c-2.86-2.639-4.63-5.296-4.737-7.892A5.839 5.839 0 0 1 1 7.274C1 3.152 3.274 1 6.607 1c1.733 0 2.966.618 3.918 1.705.056.064.137.165.226.282.09-.117.17-.218.226-.282z"></path></g></symbol></defs><defs><symbol id="sum"><path d="M625.784 488.568h187.392v46.863h-187.392v187.392h-46.863v-187.392h-187.392v-46.863h187.392v-187.392h46.863v187.392z"></path></symbol></defs><defs><symbol id="rest"><path d="M391.529 542.118v-60.235h421.647v60.235z"></path></symbol></defs><defs><symbol id="close"><path d="M409.6 512l-358.4 358.4 102.4 102.4 358.4-358.4 358.4 358.4 102.4-102.4-358.4-358.4 358.4-358.4-102.4-102.4-358.4 358.4-358.4-358.4-102.4 102.4z"></path></symbol></defs><defs><symbol id="supermarket-logo"><path d="M7.731 23.774c4.224 0 6.733-2.739 6.733-5.862 0-4.941-8.346-4.659-8.346-6.886 0-0.922 0.973-1.69 2.278-1.69 1.741 0 3.814 0.691 5.094 2.176l2.278-2.611c-1.536-1.766-4.096-2.765-6.81-2.765-4.198 0-6.682 2.739-6.682 5.555 0 4.992 8.32 4.531 8.32 6.938 0 0.87-0.742 1.92-2.586 1.92-2.355 0-4.582-1.075-5.76-2.662l-2.253 2.688c1.434 1.894 4.378 3.2 7.731 3.2zM24.926 23.774c5.043 0 7.194-2.995 8.090-7.142l2.278-10.24h-3.712l-2.227 10.163c-0.538 2.381-1.818 4.019-4.429 4.019-2.406 0-3.661-1.459-3.686-3.174 0-0.358 0.051-0.691 0.102-0.845l2.227-10.163h-3.686l-2.253 10.24c-0.051 0.282-0.128 0.845-0.128 1.178 0 3.558 2.534 5.965 7.424 5.965zM38.972 23.467l1.357-6.093h4.275c5.35 0 7.066-3.712 7.066-6.246 0-2.586-2.022-4.736-4.762-4.736h-7.808l-3.763 17.075h3.635zM44.834 14.174h-3.814l1.024-4.582h3.712c1.254 0 2.125 0.794 2.125 1.92 0 1.51-1.229 2.662-3.046 2.662zM63.846 23.467l0.691-3.2h-8.422l0.845-3.891h8.269l0.691-3.2h-8.243l0.794-3.584h8.422l0.717-3.2h-12.083l-3.763 17.075h12.083zM70.75 23.467l1.331-6.067h2.816l2.022 6.067h4.045l-2.381-6.323c2.765-0.512 4.864-2.867 4.864-5.939 0-2.97-2.509-4.813-5.274-4.813h-7.296l-3.763 17.075h3.635zM76.612 14.199h-3.814l1.024-4.608h3.661c1.126 0 2.176 0.819 2.176 1.971 0 1.536-1.152 2.637-3.046 2.637zM87.637 23.467l2.714-12.314 2.099 12.314h1.587l7.526-12.314-2.714 12.314h3.661l3.763-17.075h-5.248l-6.502 10.675-1.792-10.675h-4.966l-3.763 17.075h3.635zM118.4 23.467l0.691-3.2h-8.422l0.845-3.891h8.269l0.691-3.2h-8.243l0.794-3.584h8.422l0.717-3.2h-12.083l-3.763 17.075h12.083zM125.303 23.467l1.331-6.067h2.816l2.022 6.067h4.045l-2.381-6.323c2.765-0.512 4.864-2.867 4.864-5.939 0-2.97-2.509-4.813-5.274-4.813h-7.296l-3.763 17.075h3.635zM131.166 14.199h-3.814l1.024-4.608h3.661c1.126 0 2.176 0.819 2.176 1.971 0 1.536-1.152 2.637-3.046 2.637zM147.772 23.774c2.227 0 5.069-0.794 7.040-3.302l-2.816-1.894c-0.973 1.203-2.56 1.971-4.019 1.971-2.944 0-4.787-1.997-4.787-4.659 0-3.763 2.714-6.554 5.939-6.554 1.971 0 3.61 0.973 4.275 2.79l3.482-1.178c-0.998-2.586-3.405-4.838-7.578-4.838-5.299 0-9.933 3.968-9.933 10.010 0 4.659 3.686 7.654 8.397 7.654zM158.925 23.467l1.69-2.893h7.322l0.435 2.893h3.942l-2.816-17.075h-4.557l-10.342 17.075h4.326zM167.654 17.374h-5.325l4.275-7.347 1.050 7.347zM181.035 23.467c8.038 0 11.059-5.248 11.059-9.754 0-4.403-3.61-7.322-7.398-7.322h-6.605l-3.763 17.075h6.707zM181.7 20.267h-3.021l2.355-10.675h2.995c2.509 0 4.301 1.894 4.301 4.378 0 3.405-2.509 6.298-6.63 6.298zM202.351 23.774c5.632 0 9.933-4.454 9.933-10.035 0-4.685-3.686-7.629-8.397-7.629-5.632 0-9.933 4.429-9.933 10.010 0 4.685 3.661 7.654 8.397 7.654zM202.556 20.548c-2.739 0-4.787-1.792-4.787-4.659 0-3.661 2.586-6.554 5.888-6.554 2.739 0 4.813 1.792 4.813 4.659 0 3.661-2.611 6.554-5.914 6.554z"></path></symbol></defs><defs><symbol id="cart-volume-discount"><path d="M2.04388 2.57091L3.77432 10.97H13.8226L15.265 3.77064H14.1025L12.8392 9.76997H4.75229L3.02185 1.37091H0.734863V2.57091H2.04388Z"></path><path d="M4.93086 13.9697C5.59361 13.9697 6.13086 13.4324 6.13086 12.7697C6.13086 12.107 5.59361 11.5697 4.93086 11.5697C4.26812 11.5697 3.73086 12.107 3.73086 12.7697C3.73086 13.4324 4.26812 13.9697 4.93086 13.9697Z"></path><path d="M12.7289 13.9697C13.3916 13.9697 13.9289 13.4324 13.9289 12.7697C13.9289 12.107 13.3916 11.5697 12.7289 11.5697C12.0661 11.5697 11.5289 12.107 11.5289 12.7697C11.5289 13.4324 12.0661 13.9697 12.7289 13.9697Z"></path><path d="M6.53383 8.15687L12.1338 2.55687L11.2853 1.70834L5.6853 7.30834L6.53383 8.15687Z"></path><path d="M6.73378 3.75697C7.28607 3.75697 7.73378 3.30925 7.73378 2.75697C7.73378 2.20468 7.28607 1.75697 6.73378 1.75697C6.1815 1.75697 5.73378 2.20468 5.73378 2.75697C5.73378 3.30925 6.1815 3.75697 6.73378 3.75697Z"></path><path d="M11.9337 6.97023C11.9337 7.52251 11.486 7.97023 10.9337 7.97023C10.3814 7.97023 9.93373 7.52251 9.93373 6.97023C9.93373 6.41794 10.3814 5.97023 10.9337 5.97023C11.486 5.97023 11.9337 6.41794 11.9337 6.97023Z"></path></symbol></defs><defs><symbol id="international-logo"><path d="M4.102 9.15c1.089 0 2.477-.388 3.44-1.613L6.166 6.61c-.475.588-1.25.963-1.964.963-1.438 0-2.338-.975-2.338-2.276 0-1.839 1.325-3.202 2.901-3.202.963 0 1.764.475 2.089 1.363l1.701-.575C8.067 1.62 6.891.52 4.853.52 2.263.52 0 2.459 0 5.41c0 2.277 1.801 3.74 4.102 3.74zM12.774 9.15c2.752 0 4.853-2.176 4.853-4.903 0-2.289-1.8-3.727-4.102-3.727-2.752 0-4.853 2.164-4.853 4.89 0 2.29 1.789 3.74 4.102 3.74zm.1-1.576c-1.338 0-2.338-.875-2.338-2.276 0-1.789 1.263-3.202 2.876-3.202 1.338 0 2.352.875 2.352 2.276 0 1.789-1.276 3.202-2.89 3.202zM26.878 9L28.717.658h-2.564l-3.177 5.215L22.1.658h-2.426L17.835 9h1.776l1.326-6.016L21.963 9h.775l3.677-6.016L25.09 9h1.788zM30.311 9l.663-2.977h2.089c2.614 0 3.452-1.813 3.452-3.052A2.296 2.296 0 0 0 34.188.658h-3.814L28.535 9h1.776zm2.852-4.54h-1.851l.5-2.239h1.813c.613 0 1.038.388 1.038.938 0 .738-.6 1.3-1.488 1.3h-.012zM43.118 9l-1.163-3.09c1.351-.25 2.377-1.4 2.377-2.901 0-1.45-1.226-2.351-2.577-2.351h-3.564L36.352 9h1.776l.65-2.964h1.376L41.142 9h1.976zM40.98 4.472h-1.851l.5-2.251h1.788c.55 0 1.064.4 1.064.963 0 .75-.563 1.288-1.489 1.288h-.012zM52.168 9L50.793.658h-2.227L43.513 9h2.114l.826-1.413h3.577L50.242 9h1.926zm-2.276-2.977h-2.601l2.088-3.59.513 3.59zM57.927 9L59.766.658H57.99L56.15 9h1.776zM67.05 9L68.89.658h-1.776l-1.189 5.315L63.248.658h-1.826L59.583 9h1.776l1.226-5.528L65.337 9h1.713zM72.41 9l1.488-6.779h2.439l.338-1.563H70.02l-.338 1.563h2.439L70.622 9h1.788zM81.878 9l.338-1.563H78.1l.412-1.902h4.04l.338-1.563h-4.027l.387-1.751h4.115l.35-1.563h-5.903L75.975 9h5.903zM90.033 9L88.87 5.91c1.35-.25 2.376-1.4 2.376-2.901 0-1.45-1.226-2.351-2.576-2.351h-3.565L83.266 9h1.776l.65-2.964h1.377L88.057 9h1.976zm-2.139-4.528h-1.851l.5-2.251h1.789c.55 0 1.063.4 1.063.963 0 .75-.563 1.288-1.488 1.288h-.013zM98.77 9L100.61.658h-1.776l-1.189 5.315L94.968.658h-1.826L91.303 9h1.776l1.226-5.528L97.057 9h1.713zM108.195 9L106.819.658h-2.227L99.54 9h2.113l.826-1.413h3.577L106.268 9h1.927zm-2.277-2.977h-2.601l2.088-3.59.513 3.59zM112.918 9.15c1.088 0 2.476-.388 3.439-1.613l-1.375-.926c-.476.588-1.251.963-1.964.963-1.438 0-2.339-.975-2.339-2.276 0-1.839 1.326-3.202 2.902-3.202.963 0 1.763.475 2.088 1.363l1.701-.575C116.883 1.62 115.707.52 113.668.52c-2.589 0-4.853 1.939-4.853 4.89 0 2.277 1.802 3.74 4.103 3.74zM118.778 9l1.838-8.342h-1.776L117.002 9h1.776zM124.937 9.15c2.751 0 4.852-2.176 4.852-4.903 0-2.289-1.801-3.727-4.102-3.727-2.752 0-4.853 2.164-4.853 4.89 0 2.29 1.789 3.74 4.103 3.74zm.1-1.576c-1.339 0-2.339-.875-2.339-2.276 0-1.789 1.263-3.202 2.876-3.202 1.339 0 2.352.875 2.352 2.276 0 1.789-1.276 3.202-2.889 3.202zM137.464 9l1.839-8.342h-1.776l-1.188 5.315-2.677-5.315h-1.826L129.998 9h1.776l1.225-5.528L135.751 9h1.713zM146.889 9L145.513.658h-2.226L138.234 9h2.114l.825-1.413h3.577L144.963 9h1.926zm-2.277-2.977h-2.601l2.089-3.59.512 3.59zM152.9 9l.337-1.563h-3.527l1.501-6.78h-1.788L147.584 9h5.316z"></path></symbol></defs><defs><symbol id="virtual-tour"><g fill="none" fill-rule="evenodd"><g fill="#00A650"><g><g><g><g><g><path fill-rule="nonzero" d="M20.746.002l.034.01C22.253.624 23 1.369 23 2.226c0 .942-.894 1.744-2.658 2.384-1.515.549-3.64.947-5.984 1.122l-.04.002c-.015 0-.037 0-.037-.01l-.001-.109-.001-.888c4.796-.209 7.684-1.724 7.684-2.501 0-.392-.595-.873-1.59-1.286-.033-.014-.064-.03-.092-.05l.465-.888zM2.137.033l.493.866-.04.02c-.915.377-1.487.812-1.56 1.181l-.007.078c0 .41.732 1.096 2.797 1.677 1.626.457 4.025.754 6.272.846l-.467-1.048c-.224-.165-.68-.5-.51-.717.172-.217.752.467.977.632l1.537 1.258c.21.155.263.45.117.664-.031.046-.071.088-.117.122L9.425 7.233c-.092.069-.201.102-.31.102-.153 0-.306-.067-.406-.195-.172-.217-.128-.526.096-.692l1.038-.763c-2.377-.09-4.577-.395-6.31-.882C1.223 4.153 0 3.245 0 2.178 0 1.338.737.608 2.19.011l-.053.022z" transform="translate(-100 -572) translate(84 259) translate(0 296) translate(16 17) translate(0 3.918)"></path><path d="M8.401 3.615L12.307 3.565 12.292 4.742 8.386 4.792z" transform="translate(-100 -572) translate(84 259) translate(0 296) translate(16 17) translate(0 3.918) rotate(50 10.347 4.179)"></path></g><path d="M8.195 5.617L12.152 5.627 12.155 6.813 8.197 6.804z" transform="translate(-100 -572) translate(84 259) translate(0 296) translate(16 17) translate(0 3.918) rotate(-40 10.175 6.215)"></path></g><path fill-rule="nonzero" d="M6.506 5.66c1.363 0 2.267-.666 2.267-1.627 0-.788-.707-1.24-1.29-1.298.65-.106 1.2-.591 1.2-1.232C8.682.6 7.902 0 6.505 0c-1.01 0-1.734.37-2.194.887l.682.887c.386-.345.863-.525 1.364-.525.526 0 .92.156.92.5 0 .288-.32.428-.887.428h-.296c-.185-.001-.377-.003-.444-.008v1.256c.083-.008.502-.008.74-.008.747 0 .977.148.977.46 0 .304-.312.534-.92.534-.476 0-1.1-.189-1.495-.575l-.714.961c.427.493 1.215.863 2.267.863zm5.249 0c1.273 0 2.185-.797 2.185-1.923 0-1.166-.912-1.798-1.898-1.798-.558 0-1.076.262-1.347.624v-.066c0-.764.616-1.248 1.281-1.248.452 0 .748.115 1.052.361l.616-1.084C13.234.206 12.625 0 11.976 0c-1.659 0-2.71 1.084-2.71 2.834 0 1.569.755 2.826 2.489 2.826zm-.09-1.249c-.666 0-.929-.46-.97-.903.238-.247.575-.37.92-.37.427 0 .895.189.895.649 0 .304-.32.624-.846.624zm5.018 1.249c1.602 0 2.35-1.389 2.35-2.834 0-1.446-.748-2.826-2.35-2.826s-2.35 1.38-2.35 2.826c0 1.445.748 2.834 2.35 2.834zm0-1.249c-.657 0-.92-.616-.92-1.585 0-.97.263-1.577.92-1.577s.92.607.92 1.577c0 .969-.263 1.585-.92 1.585z" transform="translate(-100 -572) translate(84 259) translate(0 296) translate(16 17)"></path></g></g></g></g></g></symbol></defs><defs><symbol id="supermarket"><path fill-rule="evenodd" clip-rule="evenodd" d="M72.9268 6.92808C71.9982 8.13533 70.6597 8.51721 69.6105 8.51721C67.3916 8.51721 65.655 7.07591 65.655 4.83388C65.655 1.92663 67.8378 0.0172119 70.334 0.0172119C72.2997 0.0172119 73.4333 1.10127 73.9036 2.34547L72.2635 2.91214C71.95 2.0375 71.1782 1.56939 70.2496 1.56939C68.7301 1.56939 67.4519 2.91214 67.4519 4.72301C67.4519 6.00417 68.3201 6.96504 69.707 6.96504C70.3943 6.96504 71.142 6.59547 71.6003 6.01649L72.9268 6.92808ZM6.81352 5.6962C6.81352 7.1991 5.63171 8.51721 3.64192 8.51721C2.06215 8.51721 0.675323 7.88895 0 6.97736L1.06122 5.68388C1.61595 6.44765 2.66511 6.96504 3.77457 6.96504C4.64284 6.96504 4.99256 6.45997 4.99256 6.04113C4.99256 5.56661 4.33442 5.32377 3.55753 5.03712C2.43857 4.62427 1.07328 4.12052 1.07328 2.70272C1.07328 1.34765 2.24304 0.0295308 4.22077 0.0295308C5.49905 0.0295308 6.70499 0.509966 7.42855 1.35997L6.35527 2.61649C5.7523 1.90199 4.7755 1.56939 3.95546 1.56939C3.34044 1.56939 2.88218 1.93895 2.88218 2.38243C2.88218 2.81295 3.51655 3.04866 4.27564 3.33071C5.40624 3.75081 6.81352 4.27372 6.81352 5.6962ZM15.5525 5.08026C15.1304 7.07591 14.1175 8.51721 11.7418 8.51721C9.43844 8.51721 8.24456 7.35924 8.24456 5.64692C8.24456 5.48678 8.28074 5.21576 8.30486 5.08026L9.36608 0.152719H11.1026L10.0535 5.0433C10.0293 5.11721 10.0052 5.27736 10.0052 5.44982C10.0173 6.27518 10.6082 6.97736 11.7418 6.97736C12.9718 6.97736 13.5748 6.18895 13.828 5.0433L14.8772 0.152719H16.6258L15.5525 5.08026ZM18.3583 8.36939L18.9975 5.4375H21.0114C23.5318 5.4375 24.3398 3.65127 24.3398 2.4317C24.3398 1.1875 23.3871 0.152719 22.0967 0.152719H18.4186L16.6459 8.36939H18.3583ZM19.3231 3.89765H21.1199C21.9761 3.89765 22.555 3.3433 22.555 2.61649C22.555 2.07446 22.145 1.69257 21.554 1.69257H19.8054L19.3231 3.89765ZM30.076 8.36939L30.4016 6.82953H26.4341L26.832 4.95707H30.7272L31.0528 3.41721H27.1697L27.5435 1.69257H31.511L31.8487 0.152719H26.1567L24.384 8.36939H30.076ZM33.9551 5.44982L33.328 8.36939H31.6155L33.3883 0.152719H36.8252C38.1276 0.152719 39.3094 1.03968 39.3094 2.46866C39.3094 3.94692 38.3205 5.08026 37.0181 5.32663L38.1396 8.36939H36.2343L35.2816 5.44982H33.9551ZM36.0896 3.90997H34.2927L34.7751 1.69257H36.4996C37.0302 1.69257 37.5246 2.08678 37.5246 2.64112C37.5246 3.38026 36.9819 3.90997 36.0896 3.90997ZM42.5614 2.44402L41.2831 8.36939H39.5707L41.3434 0.152719H43.6829L44.5271 5.28968L47.5901 0.152719H50.0623L48.2896 8.36939H46.5651L47.8434 2.44402L44.2979 8.36939H43.5503L42.5614 2.44402ZM55.7744 8.36939L56.1 6.82953H52.1325L52.5304 4.95707H56.4256L56.7512 3.41721H52.8681L53.242 1.69257H57.2095L57.5471 0.152719H51.8551L50.0824 8.36939H55.7744ZM59.6535 5.44982L59.0264 8.36939H57.314L59.0867 0.152719H62.5236C63.826 0.152719 65.0078 1.03968 65.0078 2.46866C65.0078 3.94692 64.019 5.08026 62.7166 5.32663L63.8381 8.36939H61.9327L60.98 5.44982H59.6535ZM61.788 3.90997H59.9912L60.4735 1.69257H62.198C62.7286 1.69257 63.2231 2.08678 63.2231 2.64112C63.2231 3.38026 62.6804 3.90997 61.788 3.90997ZM74.8643 8.36939L75.6602 6.97736H79.1092L79.3142 8.36939H81.1714L79.8448 0.152719H77.6983L72.8263 8.36939H74.8643ZM76.4682 5.4375H78.9766L78.4821 1.90199L76.4682 5.4375ZM85.2796 8.36939C89.0662 8.36939 90.4892 5.84402 90.4892 3.67591C90.4892 1.55707 88.7888 0.152719 87.0041 0.152719H83.8928L82.12 8.36939H85.2796ZM84.1701 6.82953H85.5931C87.5347 6.82953 88.7165 5.4375 88.7165 3.7991C88.7165 2.60417 87.8723 1.69257 86.6905 1.69257H85.2796L84.1701 6.82953ZM95.321 8.51721C97.974 8.51721 100 6.37373 100 3.68823C100 1.43388 98.2635 0.0172119 96.0445 0.0172119C93.3915 0.0172119 91.3655 2.14837 91.3655 4.83388C91.3655 7.08823 93.09 8.51721 95.321 8.51721ZM93.1624 4.72301C93.1624 6.10272 94.1271 6.96504 95.4175 6.96504C96.9731 6.96504 98.2032 5.57301 98.2032 3.81141C98.2032 2.4317 97.2264 1.56939 95.936 1.56939C94.3803 1.56939 93.1624 2.96142 93.1624 4.72301Z" fill="#C70F5A"></path></symbol></defs></svg><div style="display:contents"><a href="https://lista.mercadolivre.com.br/_Deal_entrefechas?utm_source=TSB+ACHADOS+DA+SEMANA&utm_medium=TSB+ACHADOS+DA+SEMANA&utm_id=TSB+ACHADOS+DA+SEMANA#DEAL_ID=MLB10205&S=MKT&V=1&T=TSB&L=MKT_T1_ENTRE_FECHAS_ACHADOS" class="ui-search-header--exhibitor__link ui-search-link"><img decoding="async" src="https://http2.mlstatic.com/D_NQ_NP_610237-MLA50807376051_072022-OO.jpg" class="ui-search-header--exhibitor__link__image" alt="banner"/></a></div><section class="ui-search-top-keywords"><ul class="ui-search-top-keywords__list"><li class="ui-search-top-keywords__item">Buscas relacionadas</li><li class="ui-search-top-keywords__item"><a class="ui-search-top-keywords__link" href="https://lista.mercadolivre.com.br/intel-core-i5-8-gera\xc3\xa7ao#topkeyword">intel core i5 8 geracao</a></li><li class="ui-search-top-keywords__item"><a class="ui-search-top-keywords__link" href="https://lista.mercadolivre.com.br/montar-pc-pichau#topkeyword">montar pc pichau</a></li><li class="ui-search-top-keywords__item"><a class="ui-search-top-keywords__link" href="https://lista.mercadolivre.com.br/hackintosh#topkeyword">hackintosh</a></li><li class="ui-search-top-keywords__item"><a class="ui-search-top-keywords__link" href="https://lista.mercadolivre.com.br/impressora-portatil-a4#topkeyword">impressora portatil a4</a></li><li class="ui-search-top-keywords__item"><a class="ui-search-top-keywords__link" href="https://lista.mercadolivre.com.br/notebook-com-impressora#topkeyword">notebook com impressora</a></li><li class="ui-search-top-keywords__item"><a class="ui-search-top-keywords__link" href="https://lista.mercadolivre.com.br/tablet-windows#topkeyword">tablet windows</a></li><li class="ui-search-top-keywords__item"><a class="ui-search-top-keywords__link" href="https://lista.mercadolivre.com.br/computador-barato#topkeyword">computador barato</a></li></ul></section><div class="ui-search-main ui-search-main--exhibitor ui-search-main--only-products ui-search-main--with-topkeywords"><aside class="ui-search-sidebar"><div class="ui-search-breadcrumb"><ol class="andes-breadcrumb" itemType="http://schema.org/BreadcrumbList" itemscope=""><li class="andes-breadcrumb__item" itemProp="itemListElement" itemType="http://schema.org/ListItem" itemscope=""><a href="https://www.mercadolivre.com.br/c/informatica" title="Inform\xc3\xa1tica" itemProp="item" class="andes-breadcrumb__link"><span itemProp="name">Inform\xc3\xa1tica</span></a><meta itemProp="position" content="1"/></li></ol><h1 class="ui-search-breadcrumb__title">Computador</h1></div><div class="ui-search-search-result"><span class="ui-search-search-result__quantity-results">547.937 resultado</span></div><section class="ui-search-filter-groups"><div class="ui-search-filter-dl"><ul><li class="ui-search-filter-highlighted ui-search-filter-highlighted-shipping_highlighted_fulfillment"><form action="https://informatica.mercadolivre.com.br/computador_Frete_Full_NoIndex_True#applied_filter_id%3Dshipping_highlighted_fulfillment%26applied_filter_name%3DTipo+de+envio%26applied_filter_order%3D1%26applied_value_id%3Dfulfillment%26applied_value_name%3DFull%26applied_value_order%3D1%26applied_value_results%3D28144%26is_custom%3Dfalse" class="ui-search-filter-highlighted__container"><button name="button" type="submit" class="ui-search-filter-highlighted__content ui-search-filter-highlighted__content-button"><label for="shipping_highlighted_fulfillment" class="ui-search-filter-highlighted__title ui-search-icon-label"><svg class="ui-search-icon ui-search-icon--full" viewBox="0 0 100 32" xmlns="http://www.w3.org/2000/svg" aria-label="full"><use href="#full"></use></svg> economiza frete</label><label for="shipping_highlighted_fulfillment" class="ui-search-filter-highlighted__subtitle ui-search-icon-label">Em carrinhos de compras</label></button><div class="ui-search-filter-highlighted__switch-container"><div class="andes-checkbox andes-switch ui-search-filter-highlighted__switch-icon andes-checkbox--default andes-checkbox--default andes-checkbox--without-label"><input type="checkbox" id="shipping_highlighted_fulfillment" autoComplete="off" role="switch" class="andes-checkbox__input"/></div></div></form></li></ul></div><div class="ui-search-filter-dl"><ul><li class="ui-search-filter-highlighted ui-search-filter-highlighted-shipping_cost_highlighted"><form action="https://informatica.mercadolivre.com.br/computador_CustoFrete_Gratis_NoIndex_True#applied_filter_id%3Dshipping_cost_highlighted%26applied_filter_name%3DCusto+do+frete%26applied_filter_order%3D2%26applied_value_id%3Dfree%26applied_value_name%3DGratis%26applied_value_order%3D1%26applied_value_results%3D482501%26is_custom%3Dfalse" class="ui-search-filter-highlighted__container"><button name="button" type="submit" class="ui-search-filter-highlighted__content ui-search-filter-highlighted__content-button"><label for="shipping_cost_highlighted" class="ui-search-filter-highlighted__title ui-search-icon-label">Frete gr\xc3\xa1tis</label></button><div class="ui-search-filter-highlighted__switch-container"><div class="andes-checkbox andes-switch ui-search-filter-highlighted__switch-icon andes-checkbox--default andes-checkbox--default andes-checkbox--without-label"><input type="checkbox" id="shipping_cost_highlighted" autoComplete="off" role="switch" class="andes-checkbox__input"/></div></div></form></li></ul></div><div class="ui-search-filter-dl"><ul><li class="ui-search-filter-highlighted ui-search-filter-highlighted-SHIPPING_ORIGIN_HIGHLIGHTED"><form action="https://informatica.mercadolivre.com.br/computador_NoIndex_True_SHIPPING*ORIGIN_10215069#applied_filter_id%3DSHIPPING_ORIGIN_HIGHLIGHTED%26applied_filter_name%3DOrigem+do+frete%26applied_filter_order%3D3%26applied_value_id%3D10215069%26applied_value_name%3DInternacional%26applied_value_order%3D1%26applied_value_results%3D1319%26is_custom%3Dfalse" class="ui-search-filter-highlighted__container"><button name="button" type="submit" class="ui-search-filter-highlighted__content ui-search-filter-highlighted__content-button"><label for="SHIPPING_ORIGIN_HIGHLIGHTED" class="ui-search-filter-highlighted__title ui-search-icon-label"><svg class="ui-search-icon ui-search-icon--international-filter-cbt" width="156" height="16" viewBox="0 0 156 16" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="8.00019" cy="8.00019" r="7.1" stroke="#1F4E96" stroke-width="1.4"></circle><path d="M2.38083 3.22679C2.58026 4.1877 3.79511 6.49183 4.71976 7.79722C5.15489 11.0063 6.78987 12.982 6.78987 12.982C7.77304 13.3164 8.75751 9.41797 8.7991 8.28674C8.85349 6.60061 6.42402 7.45274 5.15489 7.68844C4.88294 7.36209 4.90469 6.209 5.64441 5.51279C6.56906 4.64253 9.80241 1.53423 9.20411 0.827148" stroke="#1F4E96" stroke-width="1.4" stroke-linejoin="round"></path><path d="M13.1512 2.57544C12.4622 3.22813 11.2692 4.91425 12.009 6.43721C12.7487 7.96017 14.4928 9.39247 15.2724 9.91825" stroke="#1F4E96" stroke-width="1.4"></path><path d="M24.092 11.632C25.049 11.632 26.27 11.291 27.117 10.213L25.907 9.399C25.489 9.916 24.807 10.246 24.18 10.246C22.915 10.246 22.123 9.388 22.123 8.244C22.123 6.627 23.289 5.428 24.675 5.428C25.522 5.428 26.226 5.846 26.512 6.627L28.008 6.121C27.579 5.01 26.545 4.042 24.752 4.042C22.475 4.042 20.484 5.747 20.484 8.343C20.484 10.345 22.068 11.632 24.092 11.632ZM31.719 11.632C34.139 11.632 35.987 9.718 35.987 7.32C35.987 5.307 34.403 4.042 32.379 4.042C29.959 4.042 28.111 5.945 28.111 8.343C28.111 10.356 29.684 11.632 31.719 11.632ZM31.807 10.246C30.63 10.246 29.75 9.476 29.75 8.244C29.75 6.671 30.861 5.428 32.28 5.428C33.457 5.428 34.348 6.198 34.348 7.43C34.348 9.003 33.226 10.246 31.807 10.246ZM44.1231 11.5L45.7401 4.163H43.4851L40.6911 8.75L39.9211 4.163H37.7871L36.1701 11.5H37.7321L38.8981 6.209L39.8001 11.5H40.4821L43.7161 6.209L42.5501 11.5H44.1231ZM47.1422 11.5L47.7252 8.882H49.5622C51.8612 8.882 52.5982 7.287 52.5982 6.198C52.5982 5.087 51.7292 4.163 50.5522 4.163H47.1972L45.5802 11.5H47.1422ZM49.6502 7.507H48.0222L48.4622 5.538H50.0572C50.5962 5.538 50.9702 5.879 50.9702 6.363C50.9702 7.012 50.4422 7.507 49.6612 7.507H49.6502ZM58.4062 11.5L57.3832 8.783C58.5712 8.563 59.4732 7.551 59.4732 6.231C59.4732 4.955 58.3952 4.163 57.2072 4.163H54.0722L52.4552 11.5H54.0172L54.5892 8.893H55.7992L56.6682 11.5H58.4062ZM56.5252 7.518H54.8972L55.3372 5.538H56.9102C57.3942 5.538 57.8452 5.89 57.8452 6.385C57.8452 7.045 57.3502 7.518 56.5362 7.518H56.5252ZM66.3656 11.5L65.1556 4.163H63.1976L58.7536 11.5H60.6126L61.3386 10.257H64.4846L64.6716 11.5H66.3656ZM64.3636 8.882H62.0756L63.9126 5.725L64.3636 8.882ZM71.4303 11.5L73.0473 4.163H71.4853L69.8683 11.5H71.4303ZM79.4539 11.5L81.0709 4.163H79.5089L78.4639 8.838L76.1099 4.163H74.5039L72.8869 11.5H74.4489L75.5269 6.638L77.9469 11.5H79.4539ZM84.1676 11.5L85.4766 5.538H87.6216L87.9186 4.163H82.0666L81.7696 5.538H83.9146L82.5946 11.5H84.1676ZM92.4949 11.5L92.7919 10.125H89.1729L89.5359 8.453H93.0889L93.3859 7.078H89.8439L90.1849 5.538H93.8039L94.1119 4.163H88.9199L87.3029 11.5H92.4949ZM99.667 11.5L98.644 8.783C99.832 8.563 100.734 7.551 100.734 6.231C100.734 4.955 99.656 4.163 98.468 4.163H95.333L93.716 11.5H95.278L95.85 8.893H97.06L97.929 11.5H99.667ZM97.786 7.518H96.158L96.598 5.538H98.171C98.655 5.538 99.106 5.89 99.106 6.385C99.106 7.045 98.611 7.518 97.797 7.518H97.786ZM107.351 11.5L108.968 4.163H107.406L106.361 8.838L104.007 4.163H102.401L100.784 11.5H102.346L103.424 6.638L105.844 11.5H107.351ZM115.64 11.5L114.43 4.163H112.472L108.028 11.5H109.887L110.613 10.257H113.759L113.946 11.5H115.64ZM113.638 8.882H111.35L113.187 5.725L113.638 8.882ZM119.794 11.632C120.751 11.632 121.972 11.291 122.819 10.213L121.609 9.399C121.191 9.916 120.509 10.246 119.882 10.246C118.617 10.246 117.825 9.388 117.825 8.244C117.825 6.627 118.991 5.428 120.377 5.428C121.224 5.428 121.928 5.846 122.214 6.627L123.71 6.121C123.281 5.01 122.247 4.042 120.454 4.042C118.177 4.042 116.186 5.747 116.186 8.343C116.186 10.345 117.77 11.632 119.794 11.632ZM124.948 11.5L126.565 4.163H125.003L123.386 11.5H124.948ZM130.364 11.632C132.784 11.632 134.632 9.718 134.632 7.32C134.632 5.307 133.048 4.042 131.024 4.042C128.604 4.042 126.756 5.945 126.756 8.343C126.756 10.356 128.329 11.632 130.364 11.632ZM130.452 10.246C129.275 10.246 128.395 9.476 128.395 8.244C128.395 6.671 129.506 5.428 130.925 5.428C132.102 5.428 132.993 6.198 132.993 7.43C132.993 9.003 131.871 10.246 130.452 10.246ZM141.383 11.5L143 4.163H141.438L140.393 8.838L138.039 4.163H136.433L134.816 11.5H136.378L137.456 6.638L139.876 11.5H141.383ZM149.671 11.5L148.461 4.163H146.503L142.059 11.5H143.918L144.644 10.257H147.79L147.977 11.5H149.671ZM147.669 8.882H145.381L147.218 5.725L147.669 8.882ZM154.958 11.5L155.255 10.125H152.153L153.473 4.163H151.9L150.283 11.5H154.958Z" fill="#1F4E96"></path></svg> </label><label for="SHIPPING_ORIGIN_HIGHLIGHTED" class="ui-search-filter-highlighted__subtitle ui-search-icon-label">Frete gr\xc3\xa1tis do mundo at\xc3\xa9 sua casa</label></button><div class="ui-search-filter-highlighted__switch-container"><div class="andes-checkbox andes-switch ui-search-filter-highlighted__switch-icon andes-checkbox--default andes-checkbox--default andes-checkbox--without-label"><input type="checkbox" id="SHIPPING_ORIGIN_HIGHLIGHTED" autoComplete="off" role="switch" class="andes-checkbox__input"/></div></div></form></li></ul></div><div class="ui-search-filter-dl"><div role="heading" aria-level="3" class="ui-search-filter-dt-title">Categorias</div><ul><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/portateis-e-acessorios/computador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430687%26applied_value_name%3DPort%C3%A1teis+e+Acess%C3%B3rios%26applied_value_order%3D13%26applied_value_results%3D9850%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Port\xc3\xa1teis e Acess\xc3\xb3rios"><span class="ui-search-filter-name">Port\xc3\xa1teis e Acess\xc3\xb3rios</span><span class="ui-search-filter-results-qty">(9.850)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/pc-mesa/computador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430637%26applied_value_name%3DPC+de+Mesa%26applied_value_order%3D11%26applied_value_results%3D472826%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="PC de Mesa"><span class="ui-search-filter-name">PC de Mesa</span><span class="ui-search-filter-results-qty">(472.826)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/componentes-pc/computador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB1712%26applied_value_name%3DComponentes+para+PC%26applied_value_order%3D5%26applied_value_results%3D31486%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Componentes para PC"><span class="ui-search-filter-name">Componentes para PC</span><span class="ui-search-filter-results-qty">(31.486)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/perifericos-pc/computador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB454379%26applied_value_name%3DPerif%C3%A9ricos+para+PC%26applied_value_order%3D12%26applied_value_results%3D22779%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Perif\xc3\xa9ricos para PC"><span class="ui-search-filter-name">Perif\xc3\xa9ricos para PC</span><span class="ui-search-filter-results-qty">(22.779)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/armazenamento/computador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430598%26applied_value_name%3DArmazenamento%26applied_value_order%3D3%26applied_value_results%3D17238%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Armazenamento"><span class="ui-search-filter-name">Armazenamento</span><span class="ui-search-filter-results-qty">(17.238)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/monitores/computador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB14370%26applied_value_name%3DMonitores+e+Acess%C3%B3rios%26applied_value_order%3D10%26applied_value_results%3D4925%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Monitores e Acess\xc3\xb3rios"><span class="ui-search-filter-name">Monitores e Acess\xc3\xb3rios</span><span class="ui-search-filter-results-qty">(4.925)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/acessorios-pc-gaming/computador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB447778%26applied_value_name%3DAcess%C3%B3rios+para+PC+Gaming%26applied_value_order%3D2%26applied_value_results%3D1759%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Acess\xc3\xb3rios para PC Gaming"><span class="ui-search-filter-name">Acess\xc3\xb3rios para PC Gaming</span><span class="ui-search-filter-results-qty">(1.759)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/cabos-e-hubs-usb/computador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430918%26applied_value_name%3DCabos+e+Hubs+USB%26applied_value_order%3D4%26applied_value_results%3D1231%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Cabos e Hubs USB"><span class="ui-search-filter-name">Cabos e Hubs USB</span><span class="ui-search-filter-results-qty">(1.231)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/limpeza-pcs/computador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB99944%26applied_value_name%3DLimpeza+de+PCs%26applied_value_order%3D9%26applied_value_results%3D1055%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Limpeza de PCs"><span class="ui-search-filter-name">Limpeza de PCs</span><span class="ui-search-filter-results-qty">(1.055)</span></a></li><li><a href="https://lista.mercadolivre.com.br/computador_FiltersAvailableSidebar?filter=category" class="ui-search-modal__link ui-search-modal--default ui-search-link">Mostrar mais</a></li></ul></div><div class="ui-search-filter-dl"><div role="heading" aria-level="3" class="ui-search-filter-dt-title">Processador</div><ul><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_PROCESSOR*TYPE_345574#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345574%26applied_value_name%3DIntel+Core+i5%26applied_value_order%3D19%26applied_value_results%3D143008%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Intel Core i5"><span class="ui-search-filter-name">Intel Core i5</span><span class="ui-search-filter-results-qty">(143.008)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_PROCESSOR*TYPE_345573#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345573%26applied_value_name%3DIntel+Core+i3%26applied_value_order%3D18%26applied_value_results%3D50132%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Intel Core i3"><span class="ui-search-filter-name">Intel Core i3</span><span class="ui-search-filter-results-qty">(50.132)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_PROCESSOR*TYPE_345575#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345575%26applied_value_name%3DIntel+Core+i7%26applied_value_order%3D20%26applied_value_results%3D42040%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Intel Core i7"><span class="ui-search-filter-name">Intel Core i7</span><span class="ui-search-filter-results-qty">(42.040)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_PROCESSOR*TYPE_345571#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345571%26applied_value_name%3DIntel+Core+2+Duo%26applied_value_order%3D16%26applied_value_results%3D15479%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Intel Core 2 Duo"><span class="ui-search-filter-name">Intel Core 2 Duo</span><span class="ui-search-filter-results-qty">(15.479)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_PROCESSOR*TYPE_345576#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345576%26applied_value_name%3DIntel+Dual+Core%26applied_value_order%3D21%26applied_value_results%3D7212%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Intel Dual Core"><span class="ui-search-filter-name">Intel Dual Core</span><span class="ui-search-filter-results-qty">(7.212)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_PROCESSOR*TYPE_345570#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345570%26applied_value_name%3DIntel+Celeron%26applied_value_order%3D15%26applied_value_results%3D4573%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Intel Celeron"><span class="ui-search-filter-name">Intel Celeron</span><span class="ui-search-filter-results-qty">(4.573)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_PROCESSOR*TYPE_2785903#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D2785903%26applied_value_name%3DAMD+A6%26applied_value_order%3D3%26applied_value_results%3D4221%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="AMD A6"><span class="ui-search-filter-name">AMD A6</span><span class="ui-search-filter-results-qty">(4.221)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_PROCESSOR*TYPE_2785904#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D2785904%26applied_value_name%3DAMD+A8%26applied_value_order%3D4%26applied_value_results%3D3430%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="AMD A8"><span class="ui-search-filter-name">AMD A8</span><span class="ui-search-filter-results-qty">(3.430)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_PROCESSOR*TYPE_345562#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345562%26applied_value_name%3DAMD+Athlon%26applied_value_order%3D5%26applied_value_results%3D2462%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="AMD Athlon"><span class="ui-search-filter-name">AMD Athlon</span><span class="ui-search-filter-results-qty">(2.462)</span></a></li><li><a href="https://lista.mercadolivre.com.br/computador_FiltersAvailableSidebar?filter=PROCESSOR_TYPE" class="ui-search-modal__link ui-search-modal--default ui-search-link">Mostrar mais</a></li></ul></div><div class="ui-search-filter-dl"><div role="heading" aria-level="3" class="ui-search-filter-dt-title">Tipo de envio</div><ul><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_Frete_Full_NoIndex_True#applied_filter_id%3Dshipping%26applied_filter_name%3DTipo+de+envio%26applied_filter_order%3D6%26applied_value_id%3Dfulfillment%26applied_value_name%3DFull%26applied_value_order%3D1%26applied_value_results%3D28144%26is_custom%3Dfalse" class="ui-search-filter-icon ui-search-link" rel="nofollow" aria-label="Full"><svg class="ui-search-icon ui-search-icon--full ui-search-filter-icon--full" viewBox="0 0 100 32" xmlns="http://www.w3.org/2000/svg" aria-label="full"><use href="#full"></use></svg><span class="ui-search-filter-results-qty">(28.144)</span></a></li></ul></div><div class="ui-search-filter-dl"><div role="heading" aria-level="3" class="ui-search-filter-dt-title">RAM</div><ul><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_RAM*SIZE_*-8GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%28*-8GB%29%26applied_value_name%3DMenos+de+8+GB%26applied_value_order%3D5%26applied_value_results%3D111258%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Menos de 8 GB"><span class="ui-search-filter-name">Menos de 8 GB</span><span class="ui-search-filter-results-qty">(111.258)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_RAM*SIZE_8GB-16GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B8GB-16GB%29%26applied_value_name%3D8+a+15+GB%26applied_value_order%3D4%26applied_value_results%3D212842%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="8 a 15 GB"><span class="ui-search-filter-name">8 a 15 GB</span><span class="ui-search-filter-results-qty">(212.842)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_RAM*SIZE_16GB-32GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B16GB-32GB%29%26applied_value_name%3D16+a+31+GB%26applied_value_order%3D2%26applied_value_results%3D111082%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="16 a 31 GB"><span class="ui-search-filter-name">16 a 31 GB</span><span class="ui-search-filter-results-qty">(111.082)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_RAM*SIZE_32GB-128GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B32GB-128GB%29%26applied_value_name%3D32+a+127+GB%26applied_value_order%3D3%26applied_value_results%3D24098%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="32 a 127 GB"><span class="ui-search-filter-name">32 a 127 GB</span><span class="ui-search-filter-results-qty">(24.098)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_RAM*SIZE_128GB-*#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B128GB-*%29%26applied_value_name%3D128+GB+ou+mais%26applied_value_order%3D1%26applied_value_results%3D3606%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="128 GB ou mais"><span class="ui-search-filter-name">128 GB ou mais</span><span class="ui-search-filter-results-qty">(3.606)</span></a></li><li><form class="ui-search-price-filter ui-search-filter-range--RAM_SIZE" method="post"><div class="ui-search-price-filter-container"><div class="andes-form-control andes-form-control--textfield andes-form-control--default"><label><div class="andes-visually-hidden"><span class="andes-form-control__label"></span></div><div class="andes-form-control__control"><input data-testid="Minimum-RAM_SIZE" name="Minimum" pattern="[0-9]*" enterkeyhint="go" rows="1" class="andes-form-control__field" maxLength="120" placeholder="M\xc3\xadnimo"/></div></label><div class="andes-form-control__bottom"><span class="andes-form-control__message"></span></div></div></div><div class="ui-search-price-filter-container"><div class="andes-form-control andes-form-control--textfield andes-form-control--default"><label><div class="andes-visually-hidden"><span class="andes-form-control__label"></span></div><div class="andes-form-control__control"><input data-testid="Maximum-RAM_SIZE" name="Maximum" pattern="[0-9]*" enterkeyhint="go" rows="1" class="andes-form-control__field" maxLength="120" placeholder="M\xc3\xa1ximo"/></div></label><div class="andes-form-control__bottom"><span class="andes-form-control__message"></span></div></div></div><div class="ui-search-price-filter-container"><button data-testid="submit-RAM_SIZE" type="submit" class="ui-search-price-filter-action-btn" disabled="" aria-label="Aplicar"><svg width="20" height="20" viewBox="0 0 20 20" fill="rgba(0, 0, 0, 0.9)"><path d="M8.27686 4.34644L7.42834 5.19496L12.224 9.99059L7.42334 14.7912L8.27187 15.6397L13.921 9.99059L8.27686 4.34644Z" fill="rgba(0, 0, 0, 0.9)"></path></svg></button></div></form></li></ul></div><div class="ui-search-filter-dl"><div role="heading" aria-level="3" class="ui-search-filter-dt-title">Condi\xc3\xa7\xc3\xa3o</div><ul><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/novo/computador_NoIndex_True#applied_filter_id%3DITEM_CONDITION%26applied_filter_name%3DCondi%C3%A7%C3%A3o%26applied_filter_order%3D8%26applied_value_id%3D2230284%26applied_value_name%3DNovo%26applied_value_order%3D1%26applied_value_results%3D463327%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Novo"><span class="ui-search-filter-name">Novo</span><span class="ui-search-filter-results-qty">(463.327)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/usado/computador_NoIndex_True#applied_filter_id%3DITEM_CONDITION%26applied_filter_name%3DCondi%C3%A7%C3%A3o%26applied_filter_order%3D8%26applied_value_id%3D2230581%26applied_value_name%3DUsado%26applied_value_order%3D3%26applied_value_results%3D57168%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Usado"><span class="ui-search-filter-name">Usado</span><span class="ui-search-filter-results-qty">(57.168)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/recondicionado/computador_NoIndex_True#applied_filter_id%3DITEM_CONDITION%26applied_filter_name%3DCondi%C3%A7%C3%A3o%26applied_filter_order%3D8%26applied_value_id%3D2230582%26applied_value_name%3DRecondicionado%26applied_value_order%3D2%26applied_value_results%3D27089%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Recondicionado"><span class="ui-search-filter-name">Recondicionado</span><span class="ui-search-filter-results-qty">(27.089)</span></a></li></ul></div><div class="ui-search-filter-dl"><div role="heading" aria-level="3" class="ui-search-filter-dt-title">Monitor</div><ul><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_WITH*MONITOR_242085#applied_filter_id%3DWITH_MONITOR%26applied_filter_name%3DMonitor%26applied_filter_order%3D9%26applied_value_id%3D242085%26applied_value_name%3DCom+monitor%26applied_value_order%3D1%26applied_value_results%3D66227%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Com monitor"><span class="ui-search-filter-name">Com monitor</span><span class="ui-search-filter-results-qty">(66.227)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_WITH*MONITOR_242084#applied_filter_id%3DWITH_MONITOR%26applied_filter_name%3DMonitor%26applied_filter_order%3D9%26applied_value_id%3D242084%26applied_value_name%3DSem+monitor%26applied_value_order%3D2%26applied_value_results%3D25242%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Sem monitor"><span class="ui-search-filter-name">Sem monitor</span><span class="ui-search-filter-results-qty">(25.242)</span></a></li></ul></div><div class="ui-search-filter-dl"><div role="heading" aria-level="3" class="ui-search-filter-dt-title">Custo do frete</div><ul><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_CustoFrete_Gratis_NoIndex_True#applied_filter_id%3Dshipping_cost%26applied_filter_name%3DCusto+do+frete%26applied_filter_order%3D10%26applied_value_id%3Dfree%26applied_value_name%3DGratis%26applied_value_order%3D1%26applied_value_results%3D482501%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Gratis"><span class="ui-search-filter-name">Gratis</span><span class="ui-search-filter-results-qty">(482.501)</span></a></li></ul></div><div class="ui-search-filter-dl"><div role="heading" aria-level="3" class="ui-search-filter-dt-title">Pre\xc3\xa7o</div><ul><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_PriceRange_0-1000_NoIndex_True#applied_filter_id%3Dprice%26applied_filter_name%3DPre%C3%A7o%26applied_filter_order%3D11%26applied_value_id%3D*-1000.0%26applied_value_name%3DAt%C3%A9+R%241.000%26applied_value_order%3D1%26applied_value_results%3D111610%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="At\xc3\xa9 R$1.000"><span class="ui-search-filter-name">At\xc3\xa9 R$1.000</span><span class="ui-search-filter-results-qty">(111.610)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_PriceRange_1000-2000_NoIndex_True#applied_filter_id%3Dprice%26applied_filter_name%3DPre%C3%A7o%26applied_filter_order%3D11%26applied_value_id%3D1000.0-2000.0%26applied_value_name%3DR%241.000+a+R%242.000%26applied_value_order%3D2%26applied_value_results%3D194636%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="R$1.000 a R$2.000"><span class="ui-search-filter-name">R$1.000 a R$2.000</span><span class="ui-search-filter-results-qty">(194.636)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_PriceRange_2000-0_NoIndex_True#applied_filter_id%3Dprice%26applied_filter_name%3DPre%C3%A7o%26applied_filter_order%3D11%26applied_value_id%3D2000.0-*%26applied_value_name%3DMais+de+R%242.000%26applied_value_order%3D3%26applied_value_results%3D241690%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Mais de R$2.000"><span class="ui-search-filter-name">Mais de R$2.000</span><span class="ui-search-filter-results-qty">(241.690)</span></a></li><li><form class="ui-search-price-filter ui-search-filter-range--price" method="post"><div class="ui-search-price-filter-container"><div class="andes-form-control andes-form-control--textfield andes-form-control--default"><label><div class="andes-visually-hidden"><span class="andes-form-control__label"></span></div><div class="andes-form-control__control"><input data-testid="Minimum-price" name="Minimum" pattern="[0-9]*" enterkeyhint="go" rows="1" class="andes-form-control__field" maxLength="120" placeholder="M\xc3\xadnimo"/></div></label><div class="andes-form-control__bottom"><span class="andes-form-control__message"></span></div></div></div><div class="ui-search-price-filter-container"><div class="andes-form-control andes-form-control--textfield andes-form-control--default"><label><div class="andes-visually-hidden"><span class="andes-form-control__label"></span></div><div class="andes-form-control__control"><input data-testid="Maximum-price" name="Maximum" pattern="[0-9]*" enterkeyhint="go" rows="1" class="andes-form-control__field" maxLength="120" placeholder="M\xc3\xa1ximo"/></div></label><div class="andes-form-control__bottom"><span class="andes-form-control__message"></span></div></div></div><div class="ui-search-price-filter-container"><button data-testid="submit-price" type="submit" class="ui-search-price-filter-action-btn" disabled="" aria-label="Aplicar"><svg width="20" height="20" viewBox="0 0 20 20" fill="rgba(0, 0, 0, 0.9)"><path d="M8.27686 4.34644L7.42834 5.19496L12.224 9.99059L7.42334 14.7912L8.27187 15.6397L13.921 9.99059L8.27686 4.34644Z" fill="rgba(0, 0, 0, 0.9)"></path></svg></button></div></form></li></ul></div><div class="ui-search-filter-dl"><div role="heading" aria-level="3" class="ui-search-filter-dt-title">Sistema operativo</div><ul><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_OPERATIVE*SYSTEM_345583#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345583%26applied_value_name%3DWindows+10%26applied_value_order%3D4%26applied_value_results%3D289975%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Windows 10"><span class="ui-search-filter-name">Windows 10</span><span class="ui-search-filter-results-qty">(289.975)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_OPERATIVE*SYSTEM_345585#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345585%26applied_value_name%3DWindows+7%26applied_value_order%3D5%26applied_value_results%3D14160%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Windows 7"><span class="ui-search-filter-name">Windows 7</span><span class="ui-search-filter-results-qty">(14.160)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_OPERATIVE*SYSTEM_345588#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345588%26applied_value_name%3DLinux%26applied_value_order%3D2%26applied_value_results%3D4749%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Linux"><span class="ui-search-filter-name">Linux</span><span class="ui-search-filter-results-qty">(4.749)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_OPERATIVE*SYSTEM_345589#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345589%26applied_value_name%3DMac+OS%26applied_value_order%3D3%26applied_value_results%3D263%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Mac OS"><span class="ui-search-filter-name">Mac OS</span><span class="ui-search-filter-results-qty">(263)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_OPERATIVE*SYSTEM_345587#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345587%26applied_value_name%3DWindows+XP%26applied_value_order%3D7%26applied_value_results%3D175%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Windows XP"><span class="ui-search-filter-name">Windows XP</span><span class="ui-search-filter-results-qty">(175)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_OPERATIVE*SYSTEM_345584#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345584%26applied_value_name%3DWindows+8%26applied_value_order%3D6%26applied_value_results%3D175%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Windows 8"><span class="ui-search-filter-name">Windows 8</span><span class="ui-search-filter-results-qty">(175)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_OPERATIVE*SYSTEM_345582#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345582%26applied_value_name%3DChrome+OS%26applied_value_order%3D1%26applied_value_results%3D87%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Chrome OS"><span class="ui-search-filter-name">Chrome OS</span><span class="ui-search-filter-results-qty">(87)</span></a></li></ul></div><div class="ui-search-filter-dl"><div role="heading" aria-level="3" class="ui-search-filter-dt-title">Localiza\xc3\xa7\xc3\xa3o</div><ul><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/sao-paulo/computador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFNBT085N2E4%26applied_value_name%3DS%C3%A3o+Paulo%26applied_value_order%3D17%26applied_value_results%3D341163%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="S\xc3\xa3o Paulo"><span class="ui-search-filter-name">S\xc3\xa3o Paulo</span><span class="ui-search-filter-results-qty">(341.163)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/minas-gerais/computador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUE1JTlMxNTAyZA%26applied_value_name%3DMinas+Gerais%26applied_value_order%3D7%26applied_value_results%3D101232%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Minas Gerais"><span class="ui-search-filter-name">Minas Gerais</span><span class="ui-search-filter-results-qty">(101.232)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/santa-catarina/computador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFNBTkE5Nzc4%26applied_value_name%3DSanta+Catarina%26applied_value_order%3D16%26applied_value_results%3D48813%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Santa Catarina"><span class="ui-search-filter-name">Santa Catarina</span><span class="ui-search-filter-results-qty">(48.813)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/parana/computador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFBBUkExODBlZA%26applied_value_name%3DParan%C3%A1%26applied_value_order%3D8%26applied_value_results%3D24010%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Paran\xc3\xa1"><span class="ui-search-filter-name">Paran\xc3\xa1</span><span class="ui-search-filter-results-qty">(24.010)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/rio-de-janeiro/computador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFJJT08xODM5Zg%26applied_value_name%3DRio+de+Janeiro%26applied_value_order%3D12%26applied_value_results%3D15303%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Rio de Janeiro"><span class="ui-search-filter-name">Rio de Janeiro</span><span class="ui-search-filter-results-qty">(15.303)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/rio-grande-do-sul/computador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFJJT0xkYzM0%26applied_value_name%3DRio+Grande+do+Sul%26applied_value_order%3D14%26applied_value_results%3D6332%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Rio Grande do Sul"><span class="ui-search-filter-name">Rio Grande do Sul</span><span class="ui-search-filter-results-qty">(6.332)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/espirito-santo/computador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUEVTUE8xN2Y3NA%26applied_value_name%3DEsp%C3%ADrito+Santo%26applied_value_order%3D4%26applied_value_results%3D4925%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Esp\xc3\xadrito Santo"><span class="ui-search-filter-name">Esp\xc3\xadrito Santo</span><span class="ui-search-filter-results-qty">(4.925)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/bahia/computador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUEJBSEFlYmEx%26applied_value_name%3DBahia%26applied_value_order%3D1%26applied_value_results%3D1671%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Bahia"><span class="ui-search-filter-name">Bahia</span><span class="ui-search-filter-results-qty">(1.671)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/distrito-federal/computador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUERJU0wxMWJhYg%26applied_value_name%3DDistrito+Federal%26applied_value_order%3D3%26applied_value_results%3D1231%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Distrito Federal"><span class="ui-search-filter-name">Distrito Federal</span><span class="ui-search-filter-results-qty">(1.231)</span></a></li><li><a href="https://lista.mercadolivre.com.br/computador_FiltersAvailableSidebar?filter=state" class="ui-search-modal__link ui-search-modal--default ui-search-link">Mostrar mais</a></li></ul></div><div class="ui-search-filter-dl"><div role="heading" aria-level="3" class="ui-search-filter-dt-title">Disco r\xc3\xadgido</div><ul><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_HDD*SIZE_*-250GB_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%28*-250GB%29%26applied_value_name%3DMenos+de+250+GB%26applied_value_order%3D4%26applied_value_results%3D238084%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Menos de 250 GB"><span class="ui-search-filter-name">Menos de 250 GB</span><span class="ui-search-filter-results-qty">(238.084)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_HDD*SIZE_250GB-1000GB_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%5B250GB-1000GB%29%26applied_value_name%3D250+a+999+GB%26applied_value_order%3D3%26applied_value_results%3D142481%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="250 a 999 GB"><span class="ui-search-filter-name">250 a 999 GB</span><span class="ui-search-filter-results-qty">(142.481)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_HDD*SIZE_1000GB-1240GB_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%5B1000GB-1240GB%29%26applied_value_name%3D1.000+a+1.239+GB%26applied_value_order%3D1%26applied_value_results%3D61302%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="1.000 a 1.239 GB"><span class="ui-search-filter-name">1.000 a 1.239 GB</span><span class="ui-search-filter-results-qty">(61.302)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_HDD*SIZE_1240GB-*_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%5B1240GB-*%29%26applied_value_name%3D1.240+GB+ou+mais%26applied_value_order%3D2%26applied_value_results%3D11345%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="1.240 GB ou mais"><span class="ui-search-filter-name">1.240 GB ou mais</span><span class="ui-search-filter-results-qty">(11.345)</span></a></li><li><form class="ui-search-price-filter ui-search-filter-range--HDD_SIZE" method="post"><div class="ui-search-price-filter-container"><div class="andes-form-control andes-form-control--textfield andes-form-control--default"><label><div class="andes-visually-hidden"><span class="andes-form-control__label"></span></div><div class="andes-form-control__control"><input data-testid="Minimum-HDD_SIZE" name="Minimum" pattern="[0-9]*" enterkeyhint="go" rows="1" class="andes-form-control__field" maxLength="120" placeholder="M\xc3\xadnimo"/></div></label><div class="andes-form-control__bottom"><span class="andes-form-control__message"></span></div></div></div><div class="ui-search-price-filter-container"><div class="andes-form-control andes-form-control--textfield andes-form-control--default"><label><div class="andes-visually-hidden"><span class="andes-form-control__label"></span></div><div class="andes-form-control__control"><input data-testid="Maximum-HDD_SIZE" name="Maximum" pattern="[0-9]*" enterkeyhint="go" rows="1" class="andes-form-control__field" maxLength="120" placeholder="M\xc3\xa1ximo"/></div></label><div class="andes-form-control__bottom"><span class="andes-form-control__message"></span></div></div></div><div class="ui-search-price-filter-container"><button data-testid="submit-HDD_SIZE" type="submit" class="ui-search-price-filter-action-btn" disabled="" aria-label="Aplicar"><svg width="20" height="20" viewBox="0 0 20 20" fill="rgba(0, 0, 0, 0.9)"><path d="M8.27686 4.34644L7.42834 5.19496L12.224 9.99059L7.42334 14.7912L8.27187 15.6397L13.921 9.99059L8.27686 4.34644Z" fill="rgba(0, 0, 0, 0.9)"></path></svg></button></div></form></li></ul></div><div class="ui-search-filter-dl"><div role="heading" aria-level="3" class="ui-search-filter-dt-title">Tamanho da tela</div><ul><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_DISPLAY*SIZE_*-11.6%22#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%28*-11.6%22%29%26applied_value_name%3DMenos+de+11%2C6+%22%26applied_value_order%3D4%26applied_value_results%3D61741%26is_custom%3Dfalse" class="ui-search-link" aria-label="Menos de 11,6 ""><span class="ui-search-filter-name">Menos de 11,6 "</span><span class="ui-search-filter-results-qty">(61.741)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_DISPLAY*SIZE_11.6%22-18.5%22#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%5B11.6%22-18.5%22%29%26applied_value_name%3D11%2C6+a+18%2C4+%22%26applied_value_order%3D1%26applied_value_results%3D36060%26is_custom%3Dfalse" class="ui-search-link" aria-label="11,6 a 18,4 ""><span class="ui-search-filter-name">11,6 a 18,4 "</span><span class="ui-search-filter-results-qty">(36.060)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_DISPLAY*SIZE_18.5%22-20%22#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%5B18.5%22-20%22%29%26applied_value_name%3D18%2C5+a+19%2C9+%22%26applied_value_order%3D2%26applied_value_results%3D55497%26is_custom%3Dfalse" class="ui-search-link" aria-label="18,5 a 19,9 ""><span class="ui-search-filter-name">18,5 a 19,9 "</span><span class="ui-search-filter-results-qty">(55.497)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_DISPLAY*SIZE_20%22-*#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%5B20%22-*%29%26applied_value_name%3D20+%22+ou+mais%26applied_value_order%3D3%26applied_value_results%3D16358%26is_custom%3Dfalse" class="ui-search-link" aria-label="20 " ou mais"><span class="ui-search-filter-name">20 " ou mais</span><span class="ui-search-filter-results-qty">(16.358)</span></a></li><li><form class="ui-search-price-filter ui-search-filter-range--DISPLAY_SIZE" method="post"><div class="ui-search-price-filter-container"><div class="andes-form-control andes-form-control--textfield andes-form-control--default"><label><div class="andes-visually-hidden"><span class="andes-form-control__label"></span></div><div class="andes-form-control__control"><input data-testid="Minimum-DISPLAY_SIZE" name="Minimum" pattern="[0-9]*" enterkeyhint="go" rows="1" class="andes-form-control__field" maxLength="120" placeholder="M\xc3\xadnimo"/></div></label><div class="andes-form-control__bottom"><span class="andes-form-control__message"></span></div></div></div><div class="ui-search-price-filter-container"><div class="andes-form-control andes-form-control--textfield andes-form-control--default"><label><div class="andes-visually-hidden"><span class="andes-form-control__label"></span></div><div class="andes-form-control__control"><input data-testid="Maximum-DISPLAY_SIZE" name="Maximum" pattern="[0-9]*" enterkeyhint="go" rows="1" class="andes-form-control__field" maxLength="120" placeholder="M\xc3\xa1ximo"/></div></label><div class="andes-form-control__bottom"><span class="andes-form-control__message"></span></div></div></div><div class="ui-search-price-filter-container"><button data-testid="submit-DISPLAY_SIZE" type="submit" class="ui-search-price-filter-action-btn" disabled="" aria-label="Aplicar"><svg width="20" height="20" viewBox="0 0 20 20" fill="rgba(0, 0, 0, 0.9)"><path d="M8.27686 4.34644L7.42834 5.19496L12.224 9.99059L7.42334 14.7912L8.27187 15.6397L13.921 9.99059L8.27686 4.34644Z" fill="rgba(0, 0, 0, 0.9)"></path></svg></button></div></form></li></ul></div><div class="ui-search-filter-dl"><div role="heading" aria-level="3" class="ui-search-filter-dt-title">Marca</div><ul><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_BRAND_8216_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8216%26applied_value_name%3DDell%26applied_value_order%3D42%26applied_value_results%3D802%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Dell"><span class="ui-search-filter-name">Dell</span><span class="ui-search-filter-results-qty">(802)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_BRAND_49944_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D49944%26applied_value_name%3DHP%26applied_value_order%3D79%26applied_value_results%3D383%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="HP"><span class="ui-search-filter-name">HP</span><span class="ui-search-filter-results-qty">(383)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_BRAND_7855833_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7855833%26applied_value_name%3DIntel%26applied_value_order%3D86%26applied_value_results%3D356%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Intel"><span class="ui-search-filter-name">Intel</span><span class="ui-search-filter-results-qty">(356)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_BRAND_7494_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7494%26applied_value_name%3DLenovo%26applied_value_order%3D102%26applied_value_results%3D255%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Lenovo"><span class="ui-search-filter-name">Lenovo</span><span class="ui-search-filter-results-qty">(255)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_BRAND_31163_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D31163%26applied_value_name%3DMultilaser%26applied_value_order%3D123%26applied_value_results%3D113%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Multilaser"><span class="ui-search-filter-name">Multilaser</span><span class="ui-search-filter-results-qty">(113)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_BRAND_9705867_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D9705867%26applied_value_name%3DMancer%26applied_value_order%3D112%26applied_value_results%3D112%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Mancer"><span class="ui-search-filter-name">Mancer</span><span class="ui-search-filter-results-qty">(112)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_BRAND_12792850_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D12792850%26applied_value_name%3DShock%26applied_value_order%3D157%26applied_value_results%3D83%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Shock"><span class="ui-search-filter-name">Shock</span><span class="ui-search-filter-results-qty">(83)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_BRAND_15788_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D15788%26applied_value_name%3DLogitech%26applied_value_order%3D108%26applied_value_results%3D70%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Logitech"><span class="ui-search-filter-name">Logitech</span><span class="ui-search-filter-results-qty">(70)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_BRAND_11834_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D11834%26applied_value_name%3DBematech%26applied_value_order%3D23%26applied_value_results%3D54%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Bematech"><span class="ui-search-filter-name">Bematech</span><span class="ui-search-filter-results-qty">(54)</span></a></li><li><a href="https://lista.mercadolivre.com.br/computador_FiltersAvailableSidebar?filter=BRAND" class="ui-search-modal__link ui-search-modal--default ui-search-link">Mostrar mais</a></li></ul></div><div class="ui-search-filter-dl"><div role="heading" aria-level="3" class="ui-search-filter-dt-title">Origem do frete</div><ul><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_SHIPPING*ORIGIN_10215068#applied_filter_id%3DSHIPPING_ORIGIN%26applied_filter_name%3DOrigem+do+frete%26applied_filter_order%3D17%26applied_value_id%3D10215068%26applied_value_name%3DLocal%26applied_value_order%3D2%26applied_value_results%3D546617%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Local"><span class="ui-search-filter-name">Local</span><span class="ui-search-filter-results-qty">(546.617)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_SHIPPING*ORIGIN_10215069#applied_filter_id%3DSHIPPING_ORIGIN%26applied_filter_name%3DOrigem+do+frete%26applied_filter_order%3D17%26applied_value_id%3D10215069%26applied_value_name%3DInternacional%26applied_value_order%3D1%26applied_value_results%3D1319%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Internacional"><span class="ui-search-filter-name">Internacional</span><span class="ui-search-filter-results-qty">(1.319)</span></a></li></ul></div><div class="ui-search-filter-dl"><div role="heading" aria-level="3" class="ui-search-filter-dt-title">Lojas oficiais</div><ul><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_Loja_all_NoIndex_True#applied_filter_id%3Dofficial_store%26applied_filter_name%3DLojas+oficiais%26applied_filter_order%3D18%26applied_value_id%3Dall%26applied_value_name%3DSomente+lojas+oficiais%26applied_value_order%3D1%26applied_value_results%3D105189%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Somente lojas oficiais"><span class="ui-search-filter-name">Somente lojas oficiais</span><span class="ui-search-filter-results-qty">(105.189)</span></a></li></ul></div><div class="ui-search-filter-dl"><div role="heading" aria-level="3" class="ui-search-filter-dt-title">Pagamento</div><ul><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_Installments_NoInterest_NoIndex_True#applied_filter_id%3Dinstallments%26applied_filter_name%3DPagamento%26applied_filter_order%3D19%26applied_value_id%3Dno_interest%26applied_value_name%3DParcelamento+sem+juros%26applied_value_order%3D1%26applied_value_results%3D416449%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Parcelamento sem juros"><span class="ui-search-filter-name">Parcelamento sem juros</span><span class="ui-search-filter-results-qty">(416.449)</span></a></li></ul></div><div class="ui-search-filter-dl"><div role="heading" aria-level="3" class="ui-search-filter-dt-title">Descontos</div><ul><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_Discount_5-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D5-100%26applied_value_name%3DMais+de+5%25+OFF%26applied_value_order%3D1%26applied_value_results%3D116183%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Mais de 5% OFF"><span class="ui-search-filter-name">Mais de 5% OFF</span><span class="ui-search-filter-results-qty">(116.183)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_Discount_10-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D10-100%26applied_value_name%3DMais+de+10%25+OFF%26applied_value_order%3D2%26applied_value_results%3D109675%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Mais de 10% OFF"><span class="ui-search-filter-name">Mais de 10% OFF</span><span class="ui-search-filter-results-qty">(109.675)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_Discount_15-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D15-100%26applied_value_name%3DMais+de+15%25+OFF%26applied_value_order%3D3%26applied_value_results%3D20404%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Mais de 15% OFF"><span class="ui-search-filter-name">Mais de 15% OFF</span><span class="ui-search-filter-results-qty">(20.404)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_Discount_20-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D20-100%26applied_value_name%3DMais+de+20%25+OFF%26applied_value_order%3D4%26applied_value_results%3D13016%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Mais de 20% OFF"><span class="ui-search-filter-name">Mais de 20% OFF</span><span class="ui-search-filter-results-qty">(13.016)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_Discount_25-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D25-100%26applied_value_name%3DMais+de+25%25+OFF%26applied_value_order%3D5%26applied_value_results%3D6420%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Mais de 25% OFF"><span class="ui-search-filter-name">Mais de 25% OFF</span><span class="ui-search-filter-results-qty">(6.420)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_Discount_30-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D30-100%26applied_value_name%3DMais+de+30%25+OFF%26applied_value_order%3D6%26applied_value_results%3D2902%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Mais de 30% OFF"><span class="ui-search-filter-name">Mais de 30% OFF</span><span class="ui-search-filter-results-qty">(2.902)</span></a></li><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_Discount_40-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D40-100%26applied_value_name%3DMais+de+40%25+OFF%26applied_value_order%3D7%26applied_value_results%3D1055%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Mais de 40% OFF"><span class="ui-search-filter-name">Mais de 40% OFF</span><span class="ui-search-filter-results-qty">(1.055)</span></a></li></ul></div><div class="ui-search-filter-dl"><div role="heading" aria-level="3" class="ui-search-filter-dt-title">Tipo de promo\xc3\xa7\xc3\xa3o</div><ul><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_promotion*type_deal*of*the*day#applied_filter_id%3Dpromotion_type%26applied_filter_name%3DTipo+de+promo%C3%A7%C3%A3o%26applied_filter_order%3D21%26applied_value_id%3Ddeal_of_the_day%26applied_value_name%3DOferta+do+dia%26applied_value_order%3D1%26applied_value_results%3D1055%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Oferta do dia"><span class="ui-search-filter-name">Oferta do dia</span><span class="ui-search-filter-results-qty">(1.055)</span></a></li></ul></div><div class="ui-search-filter-dl"><div role="heading" aria-level="3" class="ui-search-filter-dt-title">Outras caracter\xc3\xadsticas</div><ul><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_IS*GAMER_242085_NoIndex_True#applied_filter_id%3DIS_GAMER%26applied_filter_name%3DOutras+caracter%C3%ADsticas%26applied_filter_order%3D21%26applied_value_id%3D242085%26applied_value_name%3D%C3%89+gamer%26applied_value_order%3D0%26applied_value_results%3D160687%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="\xc3\x89 gamer"><span class="ui-search-filter-name">\xc3\x89 gamer</span><span class="ui-search-filter-results-qty">(160.687)</span></a></li></ul></div><div class="ui-search-filter-dl"><div role="heading" aria-level="3" class="ui-search-filter-dt-title">Detalhes do an\xc3\xbancio</div><ul><li class="ui-search-filter-container"><a href="https://informatica.mercadolivre.com.br/computador_BestSellers_YES_NoIndex_True#applied_filter_id%3Dpower_seller%26applied_filter_name%3DFiltro+MercadoL%C3%ADderes%26applied_filter_order%3D23%26applied_value_id%3Dyes%26applied_value_name%3DMelhores+vendedores%26applied_value_order%3D1%26applied_value_results%3D458578%26is_custom%3Dfalse" class="ui-search-link" rel="nofollow" aria-label="Melhores vendedores"><span class="ui-search-filter-name">Melhores vendedores</span><span class="ui-search-filter-results-qty">(458.578)</span></a></li></ul></div><div class="ui-search-filter-dl"><div role="heading" aria-level="3" class="ui-search-filter-dt-title">Outras pessoas pesquisaram</div><ul><li class="ui-search-filter-container"><a href="https://lista.mercadolivre.com.br/i3-9100f#D[R:computador,P:1,Q:5]" class="ui-search-link" aria-label="i3 9100f"><span class="ui-search-filter-name">i3 9100f</span></a></li><li class="ui-search-filter-container"><a href="https://lista.mercadolivre.com.br/king-koil-triathlon-queen#D[R:computador,P:2,Q:5]" class="ui-search-link" aria-label="king koil triathlon queen"><span class="ui-search-filter-name">king koil triathlon queen</span></a></li><li class="ui-search-filter-container"><a href="https://lista.mercadolivre.com.br/celular-samsung-a11#D[R:computador,P:3,Q:5]" class="ui-search-link" aria-label="celular samsung a11"><span class="ui-search-filter-name">celular samsung a11</span></a></li><li class="ui-search-filter-container"><a href="https://lista.mercadolivre.com.br/computador-wi-fi#D[R:computador,P:4,Q:5]" class="ui-search-link" aria-label="computador wi fi"><span class="ui-search-filter-name">computador wi fi</span></a></li><li class="ui-search-filter-container"><a href="https://lista.mercadolivre.com.br/computadores-novos#D[R:computador,P:5,Q:5]" class="ui-search-link" aria-label="computadores novos"><span class="ui-search-filter-name">computadores novos</span></a></li></ul></div></section><div class="ui-search-sidebar-advertising__display"><div class=""><div></div><div class="banner banner--hidden"><div class="banner__frame-container" id="Sky"></div></div></div></div><div id="ui-search-sidebar-advertising__wrapper" class="ui-search-sidebar-advertising__wrapper"><div class="ui-search-sidebar-advertising__container"></div></div></aside><section class="ui-search-results ui-search-results--without-disclaimer"><div class="ui-search-view-options__container"><div class="ui-search-view-options"><div class="ui-search-view-options__content"><div class="ui-search-view-options__group"><div class="ui-search-view-options__title">Ordenar por<!-- --> </div><div class="ui-search-sort-filter"><div class="andes-dropdown andes-dropdown--standalone andes-dropdown--compact"><button type="button" class="andes-dropdown__trigger" aria-label="Mais relevantes" aria-expanded="false" aria-haspopup="listbox" aria-invalid="false"><span class="andes-dropdown__display-values">Mais relevantes</span><svg class="andes-dropdown__standalone-arrow" width="12" height="12" viewBox="0 0 12 12" aria-hidden="true"><path fill-opacity=".45" d="M6 7.057L9.352 3.705 10.148 4.5 6 8.648 1.852 4.5 2.648 3.705z"></path></svg></button></div></div></div></div></div></div><div style="display:contents"></div><div style="display:contents"></div><div style="display:contents"></div><div style="display:contents"></div><div style="display:contents"></div><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-1983288877-computador-completo-facil-intel-core-i5-08gb-ddr3-ssd-240-gb-_JM#position=17&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Computador Completo F\xc3\xa1cil Intel Core I5 08gb Ddr3 Ssd 240 Gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_726435-MLB47230369709_082021-W.jpg" alt="Computador Completo F\xc3\xa1cil Intel Core I5 08gb Ddr3 Ssd 240 Gb"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-1983288877-computador-completo-facil-intel-core-i5-08gb-ddr3-ssd-240-gb-_JM#position=17&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Computador Completo F\xc3\xa1cil Intel Core I5 08gb Ddr3 Ssd 240 Gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--deal_of_the_day" style="background:#3483FA"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#FFFFFF">OFERTA DO DIA</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2079 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.079</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1830 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.830</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">182 reais con 95 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">182</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">95</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Cr\xc3\xa9dito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Completo F\xc3\xa1cil Intel Core I5 08gb Ddr3 Ssd 240 Gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983288877" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1983288877"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-book-pc310-preta-141-intel-celeron-n3000-4gb-de-ram-64gb-ssd-intel-hd-graphics-1366x768px-windows-10-home/p/MLB16263913?pdp_filters=category:MLB1648#searchVariation=MLB16263913&position=1&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Notebook Multilaser Legacy Book PC310 preta 14.1", Intel Celeron N3000 4GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_892016-MLA44927459054_022021-W.jpg" alt="Notebook Multilaser Legacy Book PC310 preta 14.1", Intel Celeron N3000 4GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"/></div></div></div></div></div></a></div><a href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-book-pc310-preta-141-intel-celeron-n3000-4gb-de-ram-64gb-ssd-intel-hd-graphics-1366x768px-windows-10-home/p/MLB16263913?pdp_filters=category:MLB1648#searchVariation=MLB16263913&position=1&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Notebook Multilaser Legacy Book PC310 preta 14.1", Intel Celeron N3000 4GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--meli_choice" style="background:#333333"><div class="ui-search-item__highlight-label__container"><svg class="ui-search-icon ui-search-icon--meli" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 32"><g fill="none" fill-rule="evenodd"><g stroke-width="1.5"><path fill="#fff" d="M43.782 15.1c0-7.142-9.323-12.966-20.823-12.966-11.499 0-20.821 5.824-20.821 12.966l-0.004 0.759c0 7.58 8.149 13.717 20.821 13.717 12.753 0 20.828-6.135 20.828-13.715v-0.762z"></path><path fill="#333" d="M22.963 27.29c-11.059 0-20.023-5.461-20.023-12.196s8.964-12.192 20.023-12.192c11.057 0 20.021 5.461 20.021 12.194 0 6.735-8.964 12.196-20.021 12.196z"></path><path fill="#fff" d="M16.314 11.247c-0.011 0.019-0.209 0.215-0.081 0.373 0.318 0.384 1.293 0.606 2.281 0.395 0.587-0.126 1.34-0.695 2.069-1.248 0.789-0.597 1.574-1.195 2.364-1.434 0.836-0.254 1.37-0.145 1.724-0.043 0.388 0.109 0.845 0.352 1.572 0.873 1.37 0.981 6.878 5.557 7.829 6.349 0.768-0.329 4.175-1.726 8.804-2.697-0.403-2.351-1.903-4.501-4.181-6.261-3.172 1.269-7.053 1.933-10.844 0.169-0.021-0.009-2.074-0.932-4.096-0.887-3.010 0.066-4.314 1.308-5.694 2.62l-1.747 1.792z"></path><path fill="#fff" d="M33.847 17.011c-0.064-0.055-6.477-5.397-7.93-6.438-0.841-0.599-1.308-0.753-1.798-0.811-0.256-0.032-0.61 0.013-0.858 0.077-0.674 0.175-1.557 0.738-2.342 1.329-0.813 0.617-1.579 1.195-2.289 1.348-0.909 0.192-2.018-0.034-2.524-0.363-0.205-0.128-0.35-0.282-0.418-0.435-0.188-0.412 0.158-0.742 0.213-0.798l1.771-1.822c0.205-0.196 0.414-0.39 0.625-0.585-0.572 0.073-1.099 0.211-1.613 0.346-0.64 0.171-1.259 0.335-1.882 0.335-0.26 0-1.655-0.218-1.92-0.286-1.602-0.418-3.008-0.823-5.107-1.758-2.517 1.783-4.198 4.013-4.685 6.47 0.363 0.090 0.943 0.256 1.188 0.307 5.694 1.205 7.467 2.447 7.787 2.705 0.35-0.369 0.853-0.602 1.412-0.602 0.631 0 1.199 0.301 1.545 0.768 0.324-0.245 0.774-0.454 1.357-0.454 0.262 0 0.538 0.047 0.813 0.134 0.642 0.211 0.975 0.619 1.146 0.986 0.215-0.092 0.482-0.16 0.794-0.16 0.305 0 0.625 0.068 0.947 0.198 1.050 0.431 1.212 1.412 1.118 2.153 0.075-0.009 0.149-0.013 0.226-0.013 1.244 0 2.257 0.964 2.257 2.15 0 0.367-0.1 0.71-0.271 1.013 0.339 0.181 1.201 0.591 1.961 0.501 0.606-0.073 0.834-0.271 0.917-0.382 0.055-0.077 0.115-0.164 0.060-0.228l-1.606-1.7s-0.265-0.237-0.177-0.329c0.092-0.096 0.256 0.041 0.369 0.132 0.819 0.651 1.818 1.632 1.818 1.632 0.017 0.011 0.083 0.134 0.452 0.198 0.318 0.053 0.879 0.021 1.269-0.284 0.098-0.077 0.196-0.171 0.277-0.271-0.006 0.004-0.011 0.011-0.017 0.013 0.41-0.499-0.045-1.007-0.045-1.007l-1.877-2.005s-0.267-0.235-0.177-0.331c0.083-0.081 0.256 0.043 0.373 0.137 0.593 0.471 1.431 1.274 2.236 2.022 0.158 0.111 0.864 0.527 1.801-0.060 0.567-0.354 0.683-0.789 0.666-1.118-0.041-0.435-0.397-0.747-0.397-0.747l-2.56-2.451s-0.271-0.22-0.177-0.331c0.079-0.094 0.256 0.043 0.369 0.132 0.817 0.651 3.027 2.579 3.027 2.579 0.030 0.021 0.794 0.538 1.737-0.034 0.337-0.205 0.555-0.512 0.572-0.875 0.032-0.623-0.431-0.992-0.431-0.992z"></path><path fill="#fff" d="M21.423 20.117c-0.399-0.002-0.832 0.222-0.89 0.19-0.030-0.021 0.026-0.171 0.062-0.26 0.038-0.085 0.561-1.585-0.715-2.106-0.975-0.399-1.572 0.049-1.777 0.252-0.053 0.053-0.077 0.049-0.085-0.019-0.017-0.269-0.145-0.998-0.988-1.244-1.203-0.35-1.978 0.448-2.174 0.738-0.085-0.653-0.668-1.161-1.378-1.161-0.772 0-1.397 0.595-1.399 1.329 0 0.734 0.627 1.329 1.397 1.329 0.375 0 0.717-0.141 0.966-0.371 0.009 0.009 0.011 0.021 0.009 0.045-0.060 0.331-0.169 1.525 1.148 2.012 0.527 0.196 0.975 0.051 1.348-0.198 0.109-0.075 0.128-0.043 0.111 0.058-0.047 0.307 0.013 0.964 0.981 1.34 0.74 0.286 1.175-0.006 1.461-0.258 0.124-0.109 0.158-0.092 0.164 0.075 0.036 0.892 0.811 1.598 1.756 1.6 0.971 0 1.758-0.749 1.758-1.673 0-0.926-0.785-1.664-1.756-1.675z"></path><path fill="#333" d="M21.423 23.345c-0.881 0-1.596-0.651-1.63-1.481 0-0.073-0.009-0.26-0.177-0.26-0.068 0-0.128 0.038-0.198 0.098-0.192 0.171-0.439 0.343-0.8 0.343-0.164 0-0.341-0.036-0.527-0.107-0.93-0.361-0.943-0.969-0.905-1.212 0.011-0.064 0.013-0.134-0.034-0.186l-0.058-0.049h-0.058c-0.047 0-0.096 0.017-0.162 0.064-0.269 0.177-0.527 0.265-0.789 0.265-0.143 0-0.292-0.028-0.439-0.081-1.225-0.454-1.126-1.553-1.067-1.884 0.009-0.068-0.009-0.119-0.053-0.154l-0.085-0.068-0.083 0.073c-0.239 0.22-0.55 0.341-0.879 0.341-0.7-0.002-1.271-0.544-1.269-1.212 0-0.668 0.572-1.21 1.271-1.21 0.634 0 1.173 0.454 1.254 1.056l0.043 0.326 0.188-0.277c0.021-0.030 0.533-0.77 1.478-0.768 0.179 0 0.367 0.026 0.553 0.081 0.753 0.22 0.881 0.868 0.9 1.139 0.013 0.158 0.13 0.166 0.154 0.166 0.064 0 0.113-0.041 0.147-0.075 0.143-0.141 0.45-0.375 0.934-0.375 0.222 0 0.459 0.051 0.702 0.149 1.195 0.491 0.653 1.937 0.646 1.952-0.102 0.239-0.107 0.346-0.011 0.405l0.049 0.021h0.034c0.053 0 0.122-0.021 0.233-0.055 0.162-0.055 0.407-0.134 0.638-0.134 0.9 0.009 1.634 0.706 1.632 1.555 0 0.855-0.734 1.551-1.632 1.551zM34.095 16.369c-1.973-1.641-6.539-5.419-7.776-6.302-0.706-0.506-1.188-0.772-1.611-0.894-0.192-0.053-0.454-0.115-0.791-0.117-0.316 0-0.653 0.055-1.005 0.162-0.8 0.241-1.596 0.843-2.368 1.425l-0.038 0.030c-0.717 0.544-1.457 1.105-2.018 1.225-0.245 0.051-0.497 0.079-0.747 0.079-0.629 0-1.195-0.173-1.408-0.431-0.034-0.043-0.011-0.111 0.070-0.209l0.011-0.013 1.739-1.783c1.361-1.297 2.645-2.519 5.606-2.583l0.149-0.002c1.839 0 3.682 0.785 3.889 0.875 1.728 0.804 3.509 1.212 5.301 1.212 1.867 0 3.795-0.439 5.82-1.327-0.226-0.181-0.461-0.358-0.704-0.531-1.779 0.736-3.475 1.107-5.111 1.105-1.67 0-3.341-0.384-4.962-1.135-0.085-0.041-2.118-0.951-4.235-0.954l-0.166 0.002c-2.485 0.055-3.885 0.896-4.828 1.632-0.917 0.021-1.707 0.233-2.409 0.418-0.627 0.166-1.169 0.309-1.698 0.309-0.218 0-0.608-0.019-0.644-0.021-0.606-0.015-3.669-0.73-6.101-1.609-0.25 0.169-0.491 0.341-0.723 0.516 2.545 0.994 5.641 1.762 6.618 1.822 0.271 0.017 0.561 0.047 0.851 0.047 0.646 0 1.291-0.173 1.916-0.339 0.369-0.098 0.774-0.205 1.203-0.284-0.115 0.107-0.228 0.213-0.341 0.324l-1.766 1.818c-0.139 0.134-0.442 0.491-0.243 0.93 0.079 0.177 0.241 0.346 0.465 0.491 0.42 0.269 1.173 0.452 1.873 0.452 0.267 0 0.518-0.026 0.747-0.075 0.742-0.158 1.519-0.747 2.34-1.37 0.655-0.495 1.587-1.124 2.3-1.31 0.198-0.051 0.444-0.085 0.64-0.085 0.060 0.002 0.115 0.004 0.166 0.011 0.469 0.058 0.926 0.209 1.739 0.789 1.451 1.037 7.863 6.379 7.925 6.432 0.004 0.004 0.414 0.341 0.384 0.896-0.013 0.314-0.194 0.589-0.512 0.781-0.273 0.166-0.555 0.25-0.841 0.25-0.427 0-0.725-0.192-0.742-0.205-0.023-0.017-2.223-1.937-3.029-2.581-0.128-0.1-0.256-0.192-0.382-0.192-0.066 0-0.128 0.028-0.166 0.075-0.128 0.149 0.015 0.356 0.181 0.491l2.571 2.458c0.002 0.002 0.32 0.286 0.354 0.661 0.021 0.407-0.186 0.747-0.61 1.013-0.303 0.192-0.61 0.286-0.909 0.286-0.395 0-0.672-0.171-0.732-0.211l-0.369-0.346c-0.674-0.629-1.367-1.28-1.877-1.685-0.124-0.098-0.256-0.188-0.382-0.188-0.064 0-0.119 0.021-0.162 0.064-0.058 0.062-0.098 0.171 0.047 0.354 0.060 0.077 0.128 0.139 0.128 0.139l1.875 2.003c0.015 0.017 0.384 0.437 0.043 0.853l-0.068 0.081c-0.055 0.058-0.115 0.113-0.173 0.16-0.32 0.25-0.747 0.277-0.917 0.277-0.090 0-0.177-0.009-0.252-0.021-0.186-0.032-0.309-0.081-0.369-0.149l-0.021-0.021c-0.105-0.102-1.047-1.020-1.828-1.641-0.105-0.081-0.233-0.186-0.365-0.186-0.064 0-0.124 0.026-0.171 0.073-0.154 0.162 0.079 0.401 0.177 0.491l1.598 1.677c0 0.015-0.021 0.049-0.062 0.102-0.055 0.077-0.25 0.26-0.83 0.329-0.068 0.011-0.141 0.013-0.213 0.013-0.597 0-1.233-0.277-1.562-0.442 0.149-0.299 0.226-0.631 0.226-0.964 0-1.252-1.067-2.27-2.381-2.27h-0.085c0.043-0.572-0.043-1.653-1.21-2.129-0.337-0.139-0.672-0.209-0.996-0.209-0.256 0-0.501 0.043-0.732 0.126-0.241-0.448-0.642-0.774-1.167-0.943-0.288-0.096-0.576-0.145-0.853-0.145-0.486 0-0.934 0.137-1.333 0.405-0.382-0.45-0.96-0.719-1.568-0.719-0.531 0-1.043 0.203-1.423 0.561-0.497-0.363-2.47-1.555-7.748-2.697-0.256-0.055-0.843-0.213-1.203-0.316-0.060 0.273-0.105 0.548-0.134 0.826 0 0 0.975 0.222 1.165 0.262 5.393 1.141 7.177 2.325 7.477 2.551-0.102 0.233-0.156 0.484-0.156 0.738 0 1.060 0.905 1.924 2.020 1.924 0.126 0 0.25-0.009 0.371-0.030 0.169 0.779 0.704 1.372 1.525 1.675 0.239 0.087 0.482 0.134 0.719 0.134 0.154 0 0.309-0.019 0.461-0.055 0.149 0.365 0.491 0.821 1.254 1.118 0.267 0.1 0.533 0.156 0.794 0.156 0.213 0 0.418-0.036 0.617-0.107 0.365 0.847 1.233 1.408 2.202 1.408 0.642 0 1.259-0.247 1.707-0.689 0.386 0.205 1.199 0.574 2.020 0.576 0.107 0 0.205-0.009 0.305-0.021 0.815-0.098 1.195-0.401 1.367-0.636 0.032-0.043 0.060-0.085 0.085-0.13 0.192 0.051 0.405 0.094 0.646 0.096 0.444 0 0.87-0.145 1.301-0.444 0.427-0.292 0.727-0.71 0.77-1.067l0.002-0.015c0.145 0.028 0.29 0.043 0.437 0.043 0.459 0 0.909-0.137 1.34-0.405 0.832-0.518 0.975-1.195 0.96-1.638 0.147 0.028 0.294 0.043 0.444 0.043 0.429 0 0.853-0.122 1.254-0.367 0.514-0.314 0.826-0.794 0.873-1.35 0.032-0.38-0.068-0.764-0.277-1.092 1.391-0.572 4.574-1.677 8.32-2.479-0.021-0.277-0.064-0.55-0.117-0.823-4.533 0.96-7.915 2.353-8.762 2.709z"></path></g></g></svg><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#FFFFFF">RECOMENDADO</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1999 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.999</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1199 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.199</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">40% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">119 reais con 90 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">119</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">90</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p><span class="ui-search-item__fulfillment"><svg class="ui-search-icon ui-search-icon--full" viewBox="0 0 100 32" xmlns="http://www.w3.org/2000/svg" aria-label="full"><use href="#full"></use></svg></span></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Notebook Multilaser Legacy Book PC310 preta 14.1", Intel Celeron N3000 4GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por VIKING</p></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-half" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-half"></use></svg></span><span class="ui-search-reviews__amount">351</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1930876153" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1930876153"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-1937079157-pc-computador-cpu-core-i5-650-ssd-240gb-8gb-memoria-ram-_JM#position=18&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_618178-MLB46611223438_072021-W.jpg" alt="Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-1937079157-pc-computador-cpu-core-i5-650-ssd-240gb-8gb-memoria-ram-_JM#position=18&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1399 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.399</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1231 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.231</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">123 reais con 11 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">123</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">11</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Cr\xc3\xa9dito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1937079157" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1937079157"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-1607748387-pc-computador-cpu-intel-core-i5-ssd-240gb-8gb-memoria-ram-_JM#position=19&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_674762-MLB50613865527_072022-W.jpg" alt="Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-1607748387-pc-computador-cpu-intel-core-i5-ssd-240gb-8gb-memoria-ram-_JM#position=19&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1829 reais con 99 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.829</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">99</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1446 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.446</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">21% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">144 reais con 57 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">144</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">57</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Cr\xc3\xa9dito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1607748387" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1607748387"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-1983278713-computador-facil-intel-core-i3-4gb-ssd-120gb-_JM#position=20&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Computador F\xc3\xa1cil Intel Core I3 4gb Ssd 120gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_766782-MLB47145738530_082021-W.jpg" alt="Computador F\xc3\xa1cil Intel Core I3 4gb Ssd 120gb"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-1983278713-computador-facil-intel-core-i3-4gb-ssd-120gb-_JM#position=20&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Computador F\xc3\xa1cil Intel Core I3 4gb Ssd 120gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--deal_of_the_day" style="background:#3483FA"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#FFFFFF">OFERTA DO DIA</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 969 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">969</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">852 reais con 72 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">852</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">72</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">85 reais con 27 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">85</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">27</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador F\xc3\xa1cil Intel Core I3 4gb Ssd 120gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983278713" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1983278713"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-cloud-pc134-cinza-141-intel-atom-z8350-2gb-de-ram-64gb-ssd-intel-hd-graphics-1366x768px-windows-10-home/p/MLB18624590?pdp_filters=category:MLB1648#searchVariation=MLB18624590&position=2&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Notebook Multilaser Legacy Cloud PC134 cinza 14.1", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_690494-MLA48633785018_122021-W.jpg" alt="Notebook Multilaser Legacy Cloud PC134 cinza 14.1", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"/></div></div></div></div></div></a></div><a href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-cloud-pc134-cinza-141-intel-atom-z8350-2gb-de-ram-64gb-ssd-intel-hd-graphics-1366x768px-windows-10-home/p/MLB18624590?pdp_filters=category:MLB1648#searchVariation=MLB18624590&position=2&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Notebook Multilaser Legacy Cloud PC134 cinza 14.1", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--meli_choice" style="background:#333333"><div class="ui-search-item__highlight-label__container"><svg class="ui-search-icon ui-search-icon--meli" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 32"><g fill="none" fill-rule="evenodd"><g stroke-width="1.5"><path fill="#fff" d="M43.782 15.1c0-7.142-9.323-12.966-20.823-12.966-11.499 0-20.821 5.824-20.821 12.966l-0.004 0.759c0 7.58 8.149 13.717 20.821 13.717 12.753 0 20.828-6.135 20.828-13.715v-0.762z"></path><path fill="#333" d="M22.963 27.29c-11.059 0-20.023-5.461-20.023-12.196s8.964-12.192 20.023-12.192c11.057 0 20.021 5.461 20.021 12.194 0 6.735-8.964 12.196-20.021 12.196z"></path><path fill="#fff" d="M16.314 11.247c-0.011 0.019-0.209 0.215-0.081 0.373 0.318 0.384 1.293 0.606 2.281 0.395 0.587-0.126 1.34-0.695 2.069-1.248 0.789-0.597 1.574-1.195 2.364-1.434 0.836-0.254 1.37-0.145 1.724-0.043 0.388 0.109 0.845 0.352 1.572 0.873 1.37 0.981 6.878 5.557 7.829 6.349 0.768-0.329 4.175-1.726 8.804-2.697-0.403-2.351-1.903-4.501-4.181-6.261-3.172 1.269-7.053 1.933-10.844 0.169-0.021-0.009-2.074-0.932-4.096-0.887-3.010 0.066-4.314 1.308-5.694 2.62l-1.747 1.792z"></path><path fill="#fff" d="M33.847 17.011c-0.064-0.055-6.477-5.397-7.93-6.438-0.841-0.599-1.308-0.753-1.798-0.811-0.256-0.032-0.61 0.013-0.858 0.077-0.674 0.175-1.557 0.738-2.342 1.329-0.813 0.617-1.579 1.195-2.289 1.348-0.909 0.192-2.018-0.034-2.524-0.363-0.205-0.128-0.35-0.282-0.418-0.435-0.188-0.412 0.158-0.742 0.213-0.798l1.771-1.822c0.205-0.196 0.414-0.39 0.625-0.585-0.572 0.073-1.099 0.211-1.613 0.346-0.64 0.171-1.259 0.335-1.882 0.335-0.26 0-1.655-0.218-1.92-0.286-1.602-0.418-3.008-0.823-5.107-1.758-2.517 1.783-4.198 4.013-4.685 6.47 0.363 0.090 0.943 0.256 1.188 0.307 5.694 1.205 7.467 2.447 7.787 2.705 0.35-0.369 0.853-0.602 1.412-0.602 0.631 0 1.199 0.301 1.545 0.768 0.324-0.245 0.774-0.454 1.357-0.454 0.262 0 0.538 0.047 0.813 0.134 0.642 0.211 0.975 0.619 1.146 0.986 0.215-0.092 0.482-0.16 0.794-0.16 0.305 0 0.625 0.068 0.947 0.198 1.050 0.431 1.212 1.412 1.118 2.153 0.075-0.009 0.149-0.013 0.226-0.013 1.244 0 2.257 0.964 2.257 2.15 0 0.367-0.1 0.71-0.271 1.013 0.339 0.181 1.201 0.591 1.961 0.501 0.606-0.073 0.834-0.271 0.917-0.382 0.055-0.077 0.115-0.164 0.060-0.228l-1.606-1.7s-0.265-0.237-0.177-0.329c0.092-0.096 0.256 0.041 0.369 0.132 0.819 0.651 1.818 1.632 1.818 1.632 0.017 0.011 0.083 0.134 0.452 0.198 0.318 0.053 0.879 0.021 1.269-0.284 0.098-0.077 0.196-0.171 0.277-0.271-0.006 0.004-0.011 0.011-0.017 0.013 0.41-0.499-0.045-1.007-0.045-1.007l-1.877-2.005s-0.267-0.235-0.177-0.331c0.083-0.081 0.256 0.043 0.373 0.137 0.593 0.471 1.431 1.274 2.236 2.022 0.158 0.111 0.864 0.527 1.801-0.060 0.567-0.354 0.683-0.789 0.666-1.118-0.041-0.435-0.397-0.747-0.397-0.747l-2.56-2.451s-0.271-0.22-0.177-0.331c0.079-0.094 0.256 0.043 0.369 0.132 0.817 0.651 3.027 2.579 3.027 2.579 0.030 0.021 0.794 0.538 1.737-0.034 0.337-0.205 0.555-0.512 0.572-0.875 0.032-0.623-0.431-0.992-0.431-0.992z"></path><path fill="#fff" d="M21.423 20.117c-0.399-0.002-0.832 0.222-0.89 0.19-0.030-0.021 0.026-0.171 0.062-0.26 0.038-0.085 0.561-1.585-0.715-2.106-0.975-0.399-1.572 0.049-1.777 0.252-0.053 0.053-0.077 0.049-0.085-0.019-0.017-0.269-0.145-0.998-0.988-1.244-1.203-0.35-1.978 0.448-2.174 0.738-0.085-0.653-0.668-1.161-1.378-1.161-0.772 0-1.397 0.595-1.399 1.329 0 0.734 0.627 1.329 1.397 1.329 0.375 0 0.717-0.141 0.966-0.371 0.009 0.009 0.011 0.021 0.009 0.045-0.060 0.331-0.169 1.525 1.148 2.012 0.527 0.196 0.975 0.051 1.348-0.198 0.109-0.075 0.128-0.043 0.111 0.058-0.047 0.307 0.013 0.964 0.981 1.34 0.74 0.286 1.175-0.006 1.461-0.258 0.124-0.109 0.158-0.092 0.164 0.075 0.036 0.892 0.811 1.598 1.756 1.6 0.971 0 1.758-0.749 1.758-1.673 0-0.926-0.785-1.664-1.756-1.675z"></path><path fill="#333" d="M21.423 23.345c-0.881 0-1.596-0.651-1.63-1.481 0-0.073-0.009-0.26-0.177-0.26-0.068 0-0.128 0.038-0.198 0.098-0.192 0.171-0.439 0.343-0.8 0.343-0.164 0-0.341-0.036-0.527-0.107-0.93-0.361-0.943-0.969-0.905-1.212 0.011-0.064 0.013-0.134-0.034-0.186l-0.058-0.049h-0.058c-0.047 0-0.096 0.017-0.162 0.064-0.269 0.177-0.527 0.265-0.789 0.265-0.143 0-0.292-0.028-0.439-0.081-1.225-0.454-1.126-1.553-1.067-1.884 0.009-0.068-0.009-0.119-0.053-0.154l-0.085-0.068-0.083 0.073c-0.239 0.22-0.55 0.341-0.879 0.341-0.7-0.002-1.271-0.544-1.269-1.212 0-0.668 0.572-1.21 1.271-1.21 0.634 0 1.173 0.454 1.254 1.056l0.043 0.326 0.188-0.277c0.021-0.030 0.533-0.77 1.478-0.768 0.179 0 0.367 0.026 0.553 0.081 0.753 0.22 0.881 0.868 0.9 1.139 0.013 0.158 0.13 0.166 0.154 0.166 0.064 0 0.113-0.041 0.147-0.075 0.143-0.141 0.45-0.375 0.934-0.375 0.222 0 0.459 0.051 0.702 0.149 1.195 0.491 0.653 1.937 0.646 1.952-0.102 0.239-0.107 0.346-0.011 0.405l0.049 0.021h0.034c0.053 0 0.122-0.021 0.233-0.055 0.162-0.055 0.407-0.134 0.638-0.134 0.9 0.009 1.634 0.706 1.632 1.555 0 0.855-0.734 1.551-1.632 1.551zM34.095 16.369c-1.973-1.641-6.539-5.419-7.776-6.302-0.706-0.506-1.188-0.772-1.611-0.894-0.192-0.053-0.454-0.115-0.791-0.117-0.316 0-0.653 0.055-1.005 0.162-0.8 0.241-1.596 0.843-2.368 1.425l-0.038 0.030c-0.717 0.544-1.457 1.105-2.018 1.225-0.245 0.051-0.497 0.079-0.747 0.079-0.629 0-1.195-0.173-1.408-0.431-0.034-0.043-0.011-0.111 0.070-0.209l0.011-0.013 1.739-1.783c1.361-1.297 2.645-2.519 5.606-2.583l0.149-0.002c1.839 0 3.682 0.785 3.889 0.875 1.728 0.804 3.509 1.212 5.301 1.212 1.867 0 3.795-0.439 5.82-1.327-0.226-0.181-0.461-0.358-0.704-0.531-1.779 0.736-3.475 1.107-5.111 1.105-1.67 0-3.341-0.384-4.962-1.135-0.085-0.041-2.118-0.951-4.235-0.954l-0.166 0.002c-2.485 0.055-3.885 0.896-4.828 1.632-0.917 0.021-1.707 0.233-2.409 0.418-0.627 0.166-1.169 0.309-1.698 0.309-0.218 0-0.608-0.019-0.644-0.021-0.606-0.015-3.669-0.73-6.101-1.609-0.25 0.169-0.491 0.341-0.723 0.516 2.545 0.994 5.641 1.762 6.618 1.822 0.271 0.017 0.561 0.047 0.851 0.047 0.646 0 1.291-0.173 1.916-0.339 0.369-0.098 0.774-0.205 1.203-0.284-0.115 0.107-0.228 0.213-0.341 0.324l-1.766 1.818c-0.139 0.134-0.442 0.491-0.243 0.93 0.079 0.177 0.241 0.346 0.465 0.491 0.42 0.269 1.173 0.452 1.873 0.452 0.267 0 0.518-0.026 0.747-0.075 0.742-0.158 1.519-0.747 2.34-1.37 0.655-0.495 1.587-1.124 2.3-1.31 0.198-0.051 0.444-0.085 0.64-0.085 0.060 0.002 0.115 0.004 0.166 0.011 0.469 0.058 0.926 0.209 1.739 0.789 1.451 1.037 7.863 6.379 7.925 6.432 0.004 0.004 0.414 0.341 0.384 0.896-0.013 0.314-0.194 0.589-0.512 0.781-0.273 0.166-0.555 0.25-0.841 0.25-0.427 0-0.725-0.192-0.742-0.205-0.023-0.017-2.223-1.937-3.029-2.581-0.128-0.1-0.256-0.192-0.382-0.192-0.066 0-0.128 0.028-0.166 0.075-0.128 0.149 0.015 0.356 0.181 0.491l2.571 2.458c0.002 0.002 0.32 0.286 0.354 0.661 0.021 0.407-0.186 0.747-0.61 1.013-0.303 0.192-0.61 0.286-0.909 0.286-0.395 0-0.672-0.171-0.732-0.211l-0.369-0.346c-0.674-0.629-1.367-1.28-1.877-1.685-0.124-0.098-0.256-0.188-0.382-0.188-0.064 0-0.119 0.021-0.162 0.064-0.058 0.062-0.098 0.171 0.047 0.354 0.060 0.077 0.128 0.139 0.128 0.139l1.875 2.003c0.015 0.017 0.384 0.437 0.043 0.853l-0.068 0.081c-0.055 0.058-0.115 0.113-0.173 0.16-0.32 0.25-0.747 0.277-0.917 0.277-0.090 0-0.177-0.009-0.252-0.021-0.186-0.032-0.309-0.081-0.369-0.149l-0.021-0.021c-0.105-0.102-1.047-1.020-1.828-1.641-0.105-0.081-0.233-0.186-0.365-0.186-0.064 0-0.124 0.026-0.171 0.073-0.154 0.162 0.079 0.401 0.177 0.491l1.598 1.677c0 0.015-0.021 0.049-0.062 0.102-0.055 0.077-0.25 0.26-0.83 0.329-0.068 0.011-0.141 0.013-0.213 0.013-0.597 0-1.233-0.277-1.562-0.442 0.149-0.299 0.226-0.631 0.226-0.964 0-1.252-1.067-2.27-2.381-2.27h-0.085c0.043-0.572-0.043-1.653-1.21-2.129-0.337-0.139-0.672-0.209-0.996-0.209-0.256 0-0.501 0.043-0.732 0.126-0.241-0.448-0.642-0.774-1.167-0.943-0.288-0.096-0.576-0.145-0.853-0.145-0.486 0-0.934 0.137-1.333 0.405-0.382-0.45-0.96-0.719-1.568-0.719-0.531 0-1.043 0.203-1.423 0.561-0.497-0.363-2.47-1.555-7.748-2.697-0.256-0.055-0.843-0.213-1.203-0.316-0.060 0.273-0.105 0.548-0.134 0.826 0 0 0.975 0.222 1.165 0.262 5.393 1.141 7.177 2.325 7.477 2.551-0.102 0.233-0.156 0.484-0.156 0.738 0 1.060 0.905 1.924 2.020 1.924 0.126 0 0.25-0.009 0.371-0.030 0.169 0.779 0.704 1.372 1.525 1.675 0.239 0.087 0.482 0.134 0.719 0.134 0.154 0 0.309-0.019 0.461-0.055 0.149 0.365 0.491 0.821 1.254 1.118 0.267 0.1 0.533 0.156 0.794 0.156 0.213 0 0.418-0.036 0.617-0.107 0.365 0.847 1.233 1.408 2.202 1.408 0.642 0 1.259-0.247 1.707-0.689 0.386 0.205 1.199 0.574 2.020 0.576 0.107 0 0.205-0.009 0.305-0.021 0.815-0.098 1.195-0.401 1.367-0.636 0.032-0.043 0.060-0.085 0.085-0.13 0.192 0.051 0.405 0.094 0.646 0.096 0.444 0 0.87-0.145 1.301-0.444 0.427-0.292 0.727-0.71 0.77-1.067l0.002-0.015c0.145 0.028 0.29 0.043 0.437 0.043 0.459 0 0.909-0.137 1.34-0.405 0.832-0.518 0.975-1.195 0.96-1.638 0.147 0.028 0.294 0.043 0.444 0.043 0.429 0 0.853-0.122 1.254-0.367 0.514-0.314 0.826-0.794 0.873-1.35 0.032-0.38-0.068-0.764-0.277-1.092 1.391-0.572 4.574-1.677 8.32-2.479-0.021-0.277-0.064-0.55-0.117-0.823-4.533 0.96-7.915 2.353-8.762 2.709z"></path></g></g></svg><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#FFFFFF">RECOMENDADO</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1529 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.529</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1199 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.199</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">21% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">119 reais con 90 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">119</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">90</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p><span class="ui-search-item__fulfillment"><svg class="ui-search-icon ui-search-icon--full" viewBox="0 0 100 32" xmlns="http://www.w3.org/2000/svg" aria-label="full"><use href="#full"></use></svg></span></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Notebook Multilaser Legacy Cloud PC134 cinza 14.1", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 123 Comprou</p></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-half" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-half"></use></svg></span><span class="ui-search-reviews__amount">94</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2131342947" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2131342947"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-2025368730-computador-completo-facil-intel-core-i3-8gb-ssd-240gb-_JM#position=21&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Computador Completo F\xc3\xa1cil Intel Core I3 8gb Ssd 240gb "><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_704139-MLB47542929423_092021-W.jpg" alt="Computador Completo F\xc3\xa1cil Intel Core I3 8gb Ssd 240gb "/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-2025368730-computador-completo-facil-intel-core-i3-8gb-ssd-240gb-_JM#position=21&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Computador Completo F\xc3\xa1cil Intel Core I3 8gb Ssd 240gb "><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--deal_of_the_day" style="background:#3483FA"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#FFFFFF">OFERTA DO DIA</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1939 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.939</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1706 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.706</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">170 reais con 63 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">170</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">63</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Cr\xc3\xa9dito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Completo F\xc3\xa1cil Intel Core I3 8gb Ssd 240gb </h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2025368730" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2025368730"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-1937076326-pc-computador-cpu-core-i5-650-ssd-240gb-8gb-memoria-ram-_JM#position=24&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_618178-MLB46611223438_072021-W.jpg" alt="Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-1937076326-pc-computador-cpu-core-i5-650-ssd-240gb-8gb-memoria-ram-_JM#position=24&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1250 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.250</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1100 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.100</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">106 reais con 65 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">106</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">65</span></span></span></div></div></span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Cr\xc3\xa9dito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1937076326" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1937076326"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-book-pc250-preta-141-intel-celeron-n3350-4gb-de-ram-64gb-ssd-intel-hd-graphics-500-1366x768px-windows-10-home/p/MLB18366754?pdp_filters=category:MLB1648#searchVariation=MLB18366754&position=3&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Notebook Multilaser Legacy Book PC250 preta 14.1", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1366x768px Windows 10 Home"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_739810-MLA47202566066_082021-W.jpg" alt="Notebook Multilaser Legacy Book PC250 preta 14.1", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1366x768px Windows 10 Home"/></div></div></div></div></div></a></div><a href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-book-pc250-preta-141-intel-celeron-n3350-4gb-de-ram-64gb-ssd-intel-hd-graphics-500-1366x768px-windows-10-home/p/MLB18366754?pdp_filters=category:MLB1648#searchVariation=MLB18366754&position=3&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Notebook Multilaser Legacy Book PC250 preta 14.1", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1366x768px Windows 10 Home"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1281 reais con 23 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.281</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">23</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1281 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.281</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">128 reais con 12 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">128</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">12</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Notebook Multilaser Legacy Book PC250 preta 14.1", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1366x768px Windows 10 Home</h2></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-half" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-half"></use></svg></span><span class="ui-search-reviews__amount">101</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2081933352" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2081933352"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://www.mercadolivre.com.br/mouse-para-jogo-tedge-ml-gmh48-preto/p/MLB18621000?pdp_filters=category:MLB1648#searchVariation=MLB18621000&position=4&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Mouse para jogo Tedge ML-GMH48 preto"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_952471-MLA48392889529_112021-W.jpg" alt="Mouse para jogo Tedge ML-GMH48 preto"/></div></div></div></div></div></a></div><a href="https://www.mercadolivre.com.br/mouse-para-jogo-tedge-ml-gmh48-preto/p/MLB18621000?pdp_filters=category:MLB1648#searchVariation=MLB18621000&position=4&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Mouse para jogo Tedge ML-GMH48 preto"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--deal_of_the_day" style="background:#3483FA"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#FFFFFF">OFERTA DO DIA</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 69 reais con 55 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">69</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">55</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">39 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">39</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">43% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>7x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">6 reais con 33 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">6</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">33</span></span></span></div></div></span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p><span class="ui-search-item__fulfillment"><svg class="ui-search-icon ui-search-icon--full" viewBox="0 0 100 32" xmlns="http://www.w3.org/2000/svg" aria-label="full"><use href="#full"></use></svg></span></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Mouse para jogo Tedge ML-GMH48 preto</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por Tedge por Mercado Livre</p></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-half" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-half"></use></svg></span><span class="ui-search-reviews__amount">82</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2114151338" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2114151338"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core ui-search-result--advertisement andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=94stkOnzXBuyRVec0xp5j%2Bhw9ejO3y3p1X4gbH2W%2F2B3Ws0oGx1t0c51IOrE3ElqJjHfsLhzB1vWo2WmDdcie9X0hA%2BhIzl3lG%2FDPl7nZBYLO8Q7IiDtfmMQ359XN3JJRnVMddXfJcmy6st5Ca8%2Fn8M6NNVimWm5tcR5gmwCpiH9qSKAXlfHIzdUHp6MpvtcvsVnVGIsis9zaY6V%2Bgd6dkihONd9BLhTNjx7XAjrj7VV%2FcG4wWRJSe6gE8hmAbXOSqbx%2BEYb5Tsj225FM92iJa1ASqSgfvfZ97Noe5INkqDamD4iEkjlYyYvkXMyKBIbbFsPWVtgt6AWPh1NTLg%2FPDSK08CzsymhXRk4SCTxIBlb1BeNuV1yjnsiec9%2F3%2F6jjT4nLt6l5xre83x%2F2V7cNIe%2FLv8StVe9KfgctIBdZhiovh7by4H5o6J6cJ4MLs3i2J%2B%2Bo8vkm15XfKbEnp8cy9699Lei2cOlARzWSzlvpljEBMMcF%2Bj0lo5hsdv4ZdIEzuXOoh9pE%2Byz1IjjszR%2FGge074oIvOnCf6b7m0VcvEeJeAsaSsFS7CdSNHOnO00tI3WBc0aK7rKMEGpzWK6ejudbyZmGdNQ%2BWxCJfIjZUEUtMHDODenalwjxKf6cNk0FmCwyiQvVuBFBjlN1czESudu3ABB%2FOvRg8CSord2HAqTZaw8i6sldx2%2BINR5eowD2bPKLa8XPmu5qZyEAtM9aFOzoVNSJ485UD7CSG%2B2Uo7mJkxQjFtd%2Bc%2FvTMV5rn7eHfjR2j2doGqFmJdwN&rb=x" class="ui-search-link" title="Pc Gamer F\xc3\xa1cil Intel Core I7 16gb Ssd 240gb Radeon 4gb" rel="nofollow,sponsored"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_965508-MLB50709325431_072022-W.jpg" alt="Pc Gamer F\xc3\xa1cil Intel Core I7 16gb Ssd 240gb Radeon 4gb"/></div></div></div></div></div></a></div><a href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=94stkOnzXBuyRVec0xp5j%2Bhw9ejO3y3p1X4gbH2W%2F2B3Ws0oGx1t0c51IOrE3ElqJjHfsLhzB1vWo2WmDdcie9X0hA%2BhIzl3lG%2FDPl7nZBYLO8Q7IiDtfmMQ359XN3JJRnVMddXfJcmy6st5Ca8%2Fn8M6NNVimWm5tcR5gmwCpiH9qSKAXlfHIzdUHp6MpvtcvsVnVGIsis9zaY6V%2Bgd6dkihONd9BLhTNjx7XAjrj7VV%2FcG4wWRJSe6gE8hmAbXOSqbx%2BEYb5Tsj225FM92iJa1ASqSgfvfZ97Noe5INkqDamD4iEkjlYyYvkXMyKBIbbFsPWVtgt6AWPh1NTLg%2FPDSK08CzsymhXRk4SCTxIBlb1BeNuV1yjnsiec9%2F3%2F6jjT4nLt6l5xre83x%2F2V7cNIe%2FLv8StVe9KfgctIBdZhiovh7by4H5o6J6cJ4MLs3i2J%2B%2Bo8vkm15XfKbEnp8cy9699Lei2cOlARzWSzlvpljEBMMcF%2Bj0lo5hsdv4ZdIEzuXOoh9pE%2Byz1IjjszR%2FGge074oIvOnCf6b7m0VcvEeJeAsaSsFS7CdSNHOnO00tI3WBc0aK7rKMEGpzWK6ejudbyZmGdNQ%2BWxCJfIjZUEUtMHDODenalwjxKf6cNk0FmCwyiQvVuBFBjlN1czESudu3ABB%2FOvRg8CSord2HAqTZaw8i6sldx2%2BINR5eowD2bPKLa8XPmu5qZyEAtM9aFOzoVNSJ485UD7CSG%2B2Uo7mJkxQjFtd%2Bc%2FvTMV5rn7eHfjR2j2doGqFmJdwN&rb=x" class="ui-search-result__content ui-search-link" title="Pc Gamer F\xc3\xa1cil Intel Core I7 16gb Ssd 240gb Radeon 4gb" rel="nofollow,sponsored"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 3319 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">3.319</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">2987 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.987</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">10% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">298 reais con 71 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">298</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">71</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Gamer F\xc3\xa1cil Intel Core I7 16gb Ssd 240gb Radeon 4gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div><div class="ui-search-item__ad-container"><span class="ui-search-item__ad-label ui-search-item__ad-label--blue">Patrocinado</span></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2153875378" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2153875378"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core ui-search-result--advertisement andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=F1%2BH3uml52TEeQUYeMd6gv8Lw7KLDRU81YyCSmeBXv9SUx%2BaO%2BzjpnbJGaK%2BtOHyVg31OsT7GKxN4tpLAks0dzD7nFwb8nAinxBuc%2BRX6mqqBzxrLzt0%2Fsj5fHhZ5XQmAG2BY5SJ48zQE3BIKvnEeby0TrchXVx4YYKBv3NxTCStdUTN0loXg7E6sDN%2Fu8H4XlW6x35mr1o6%2FjgVfsSaa%2FPOzFijT89nw0gZNYHXUPQjSR7z6zQQqLwFH%2FLuYDLheCIku3lApnKD0719pgAZLmyiqz1pwpmAWdi%2FaxUh8YJ5d3dXHId5H8oTTJ6Nxhyrow9B%2BvH8EW0TpYbSWIKrK0k5PSour9jDJyCxviHO0YCyN%2BftnJEPE5bTRJZxSqYSUOn4yTVMjHl4WbvDGs9E8MI0Khiz9IfMh3DRnVUR6GjxnzytgnlD8QPkUDHE2vA%2BDqmbrLUR7XjkixKAbAIVCVQe2awHitEQI8RFjVxUVkwQzE3Qkei53dZLKYBzShwQ3ih9mH0Hm1r69fCAOnZ%2BwPgMnL6TbK7tJLgWtdEy78Hw%2BjSjcXouB8%2Fll1qaWbqJ0kcBwD8gltT%2FOI8a6EpBNYTy2rCh7%2FakFyywvnDSVqGmeTFX2nvDmqPJ0QIdT1FfHRjKv3o8WtzBUJgrXRL4mYa5FuApqwqn58moxSnnDCb6%2FjqJNLBkB7LDyLteNDv6KW8qALbXmFba7tvuUjMgEsmEas7VGQmULjCf69B4npmur%2FvU9DBtubYvI%2FbGHjYngXpxo7SaTH4lciCPWN3zoEE%3D&rb=x" class="ui-search-link" title="Pc Gamer Computador Completo Ryzen 5 16gb Ssd 480gb Nfe Wifi" rel="nofollow,sponsored"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_636240-MLB49254216707_032022-W.jpg" alt="Pc Gamer Computador Completo Ryzen 5 16gb Ssd 480gb Nfe Wifi"/></div></div></div></div></div></a></div><a href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=F1%2BH3uml52TEeQUYeMd6gv8Lw7KLDRU81YyCSmeBXv9SUx%2BaO%2BzjpnbJGaK%2BtOHyVg31OsT7GKxN4tpLAks0dzD7nFwb8nAinxBuc%2BRX6mqqBzxrLzt0%2Fsj5fHhZ5XQmAG2BY5SJ48zQE3BIKvnEeby0TrchXVx4YYKBv3NxTCStdUTN0loXg7E6sDN%2Fu8H4XlW6x35mr1o6%2FjgVfsSaa%2FPOzFijT89nw0gZNYHXUPQjSR7z6zQQqLwFH%2FLuYDLheCIku3lApnKD0719pgAZLmyiqz1pwpmAWdi%2FaxUh8YJ5d3dXHId5H8oTTJ6Nxhyrow9B%2BvH8EW0TpYbSWIKrK0k5PSour9jDJyCxviHO0YCyN%2BftnJEPE5bTRJZxSqYSUOn4yTVMjHl4WbvDGs9E8MI0Khiz9IfMh3DRnVUR6GjxnzytgnlD8QPkUDHE2vA%2BDqmbrLUR7XjkixKAbAIVCVQe2awHitEQI8RFjVxUVkwQzE3Qkei53dZLKYBzShwQ3ih9mH0Hm1r69fCAOnZ%2BwPgMnL6TbK7tJLgWtdEy78Hw%2BjSjcXouB8%2Fll1qaWbqJ0kcBwD8gltT%2FOI8a6EpBNYTy2rCh7%2FakFyywvnDSVqGmeTFX2nvDmqPJ0QIdT1FfHRjKv3o8WtzBUJgrXRL4mYa5FuApqwqn58moxSnnDCb6%2FjqJNLBkB7LDyLteNDv6KW8qALbXmFba7tvuUjMgEsmEas7VGQmULjCf69B4npmur%2FvU9DBtubYvI%2FbGHjYngXpxo7SaTH4lciCPWN3zoEE%3D&rb=x" class="ui-search-result__content ui-search-link" title="Pc Gamer Computador Completo Ryzen 5 16gb Ssd 480gb Nfe Wifi" rel="nofollow,sponsored"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 4295 reais con 46 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">4.295</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">46</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">3866 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">3.866</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">10% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">386 reais con 59 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">386</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">59</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Gamer Computador Completo Ryzen 5 16gb Ssd 480gb Nfe Wifi</h2></div></div><div class="ui-search-item__ad-container"><span class="ui-search-item__ad-label ui-search-item__ad-label--blue">Patrocinado</span></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1669162236" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1669162236"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-1983288732-computador-facil-intel-core-i5-8gb-ssd-120gb-_JM#position=25&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Computador F\xc3\xa1cil Intel Core I5 8gb Ssd 120gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_955480-MLB47145766982_082021-W.jpg" alt="Computador F\xc3\xa1cil Intel Core I5 8gb Ssd 120gb"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-1983288732-computador-facil-intel-core-i5-8gb-ssd-120gb-_JM#position=25&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Computador F\xc3\xa1cil Intel Core I5 8gb Ssd 120gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--deal_of_the_day" style="background:#3483FA"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#FFFFFF">OFERTA DO DIA</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1179 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.179</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1038 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.038</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">100 reais con 59 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">100</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">59</span></span></span></div></div></span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Cr\xc3\xa9dito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador F\xc3\xa1cil Intel Core I5 8gb Ssd 120gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983288732" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1983288732"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-cloud-pc-135-vinho-141-intel-atom-z8350-2gb-de-ram-64gb-ssd-intel-hd-graphics-1366x768px-windows-10-home/p/MLB18632909?pdp_filters=category:MLB1648#searchVariation=MLB18632909&position=5&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Notebook Multilaser Legacy Cloud PC 135 vinho 14.1", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_913969-MLA48644020818_122021-W.jpg" alt="Notebook Multilaser Legacy Cloud PC 135 vinho 14.1", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"/></div></div></div></div></div></a></div><a href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-cloud-pc-135-vinho-141-intel-atom-z8350-2gb-de-ram-64gb-ssd-intel-hd-graphics-1366x768px-windows-10-home/p/MLB18632909?pdp_filters=category:MLB1648#searchVariation=MLB18632909&position=5&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Notebook Multilaser Legacy Cloud PC 135 vinho 14.1", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1269 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.269</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">123 reais con 03 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">123</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">03</span></span></span></div></div></span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Notebook Multilaser Legacy Cloud PC 135 vinho 14.1", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home</h2></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-half" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-half"></use></svg></span><span class="ui-search-reviews__amount">134</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2603247328" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2603247328"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-1983288643-computador-completo-facil-intel-i3-04-gb-ssd-120-gb-_JM#position=26&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Computador Completo F\xc3\xa1cil Intel I3 04 Gb Ssd 120 Gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_875008-MLB47230148073_082021-W.jpg" alt="Computador Completo F\xc3\xa1cil Intel I3 04 Gb Ssd 120 Gb"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-1983288643-computador-completo-facil-intel-i3-04-gb-ssd-120-gb-_JM#position=26&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Computador Completo F\xc3\xa1cil Intel I3 04 Gb Ssd 120 Gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--deal_of_the_day" style="background:#3483FA"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#FFFFFF">OFERTA DO DIA</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1729 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.729</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1522 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.522</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">152 reais con 15 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">152</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">15</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Cr\xc3\xa9dito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Completo F\xc3\xa1cil Intel I3 04 Gb Ssd 120 Gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983288643" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1983288643"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://www.mercadolivre.com.br/disco-solido-interno-kingston-sa400s37240g-240gb-preto/p/MLB19035706?pdp_filters=category:MLB1648#searchVariation=MLB19035706&position=6&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Disco s\xc3\xb3lido interno Kingston SA400S37/240G 240GB preto"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_804287-MLA49587128302_042022-W.jpg" alt="Disco s\xc3\xb3lido interno Kingston SA400S37/240G 240GB preto"/></div></div></div></div></div></a></div><a href="https://www.mercadolivre.com.br/disco-solido-interno-kingston-sa400s37240g-240gb-preto/p/MLB19035706?pdp_filters=category:MLB1648#searchVariation=MLB19035706&position=6&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Disco s\xc3\xb3lido interno Kingston SA400S37/240G 240GB preto"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--best_seller" style="background:#FF7733"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#FFFFFF">MAIS VENDIDO</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">179 reais con 90 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">179</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">90</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">17 reais con 44 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">17</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">44</span></span></span></div></div></span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p><span class="ui-search-item__fulfillment"><svg class="ui-search-icon ui-search-icon--full" viewBox="0 0 100 32" xmlns="http://www.w3.org/2000/svg" aria-label="full"><use href="#full"></use></svg></span></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Disco s\xc3\xb3lido interno Kingston SA400S37/240G 240GB preto</h2></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-half" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-half"></use></svg></span><span class="ui-search-reviews__amount">11121</span></div></div><div class="ui-search-item__group ui-search-item__group--variations-text"><span class="ui-search-item__group__element ui-search-item__variations-text">Dispon\xc3\xadvel em 2 cores</span></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2614218974" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2614218974"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-1983278831-computador-facil-intel-core-i5-8gb-ssd-240gb-_JM#position=27&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Computador F\xc3\xa1cil Intel Core I5 8gb Ssd 240gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_617813-MLB47145821935_082021-W.jpg" alt="Computador F\xc3\xa1cil Intel Core I5 8gb Ssd 240gb"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-1983278831-computador-facil-intel-core-i5-8gb-ssd-240gb-_JM#position=27&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Computador F\xc3\xa1cil Intel Core I5 8gb Ssd 240gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1319 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.319</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1161 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.161</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">116 reais con 07 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">116</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">07</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Cr\xc3\xa9dito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador F\xc3\xa1cil Intel Core I5 8gb Ssd 240gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983278831" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1983278831"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://www.mercadolivre.com.br/notebook-multilaser-m11w-prime-pc280-prateada-tactil-116-intel-celeron-n4020-4gb-de-ram-64gb-ssd-intel-uhd-graphics-600-1366x768px-windows-11-home/p/MLB19158523?pdp_filters=category:MLB1648#searchVariation=MLB19158523&position=7&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Notebook Multilaser M11W Prime PC280 prateada t\xc3\xa1ctil 11.6", Intel Celeron N4020 4GB de RAM 64GB SSD, Intel UHD Graphics 600 1366x768px Windows 11 Home"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_626936-MLA50293629492_062022-W.jpg" alt="Notebook Multilaser M11W Prime PC280 prateada t\xc3\xa1ctil 11.6", Intel Celeron N4020 4GB de RAM 64GB SSD, Intel UHD Graphics 600 1366x768px Windows 11 Home"/></div></div></div></div></div></a></div><a href="https://www.mercadolivre.com.br/notebook-multilaser-m11w-prime-pc280-prateada-tactil-116-intel-celeron-n4020-4gb-de-ram-64gb-ssd-intel-uhd-graphics-600-1366x768px-windows-11-home/p/MLB19158523?pdp_filters=category:MLB1648#searchVariation=MLB19158523&position=7&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Notebook Multilaser M11W Prime PC280 prateada t\xc3\xa1ctil 11.6", Intel Celeron N4020 4GB de RAM 64GB SSD, Intel UHD Graphics 600 1366x768px Windows 11 Home"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2217 reais con 99 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.217</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">99</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1332 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.332</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">39% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">133 reais con 25 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">133</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">25</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Notebook Multilaser M11W Prime PC280 prateada t\xc3\xa1ctil 11.6", Intel Celeron N4020 4GB de RAM 64GB SSD, Intel UHD Graphics 600 1366x768px Windows 11 Home</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por Ponto Certo Eletro</p></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-half" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-half"></use></svg></span><span class="ui-search-reviews__amount">26</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2696339147" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2696339147"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-1663773541-pc-gamer-intel-core-i5-34ghz-8gb-ssd240gb-lol-freefire-_JM#position=28&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Pc Gamer Intel Core I5 3.4ghz 8gb Ssd240gb Lol Freefire"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_629183-MLB50464838976_062022-W.jpg" alt="Pc Gamer Intel Core I5 3.4ghz 8gb Ssd240gb Lol Freefire"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-1663773541-pc-gamer-intel-core-i5-34ghz-8gb-ssd240gb-lol-freefire-_JM#position=28&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Pc Gamer Intel Core I5 3.4ghz 8gb Ssd240gb Lol Freefire"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1890 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.890</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">189 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">189</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Cr\xc3\xa9dito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Gamer Intel Core I5 3.4ghz 8gb Ssd240gb Lol Freefire</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1663773541" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1663773541"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-1837442511-pc-computador-cpu-i5-ssd-480gb-16gb-ram-fonte-500w-_JM#position=29&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Pc Computador Cpu I5 / Ssd 480gb / 16gb Ram / Fonte 500w"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_772003-MLB50614267207_072022-W.jpg" alt="Pc Computador Cpu I5 / Ssd 480gb / 16gb Ram / Fonte 500w"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-1837442511-pc-computador-cpu-i5-ssd-480gb-16gb-ram-fonte-500w-_JM#position=29&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Pc Computador Cpu I5 / Ssd 480gb / 16gb Ram / Fonte 500w"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2221 reais con 90 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.221</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">90</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1889 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.889</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">15% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">188 reais con 86 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">188</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">86</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Cr\xc3\xa9dito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Computador Cpu I5 / Ssd 480gb / 16gb Ram / Fonte 500w</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1837442511" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1837442511"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-1983279452-computador-facil-intel-core-i3-10100f-8gb-ddr4-ssd-240gb-_JM#position=30&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Computador F\xc3\xa1cil Intel Core I3 10100f 8gb Ddr4 Ssd 240gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_865725-MLB47234340005_082021-W.jpg" alt="Computador F\xc3\xa1cil Intel Core I3 10100f 8gb Ddr4 Ssd 240gb"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-1983279452-computador-facil-intel-core-i3-10100f-8gb-ddr4-ssd-240gb-_JM#position=30&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Computador F\xc3\xa1cil Intel Core I3 10100f 8gb Ddr4 Ssd 240gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2109 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.109</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1856 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.856</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">185 reais con 59 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">185</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">59</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador F\xc3\xa1cil Intel Core I3 10100f 8gb Ddr4 Ssd 240gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983279452" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1983279452"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core ui-search-result--advertisement andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=GeV8zlag4h1%2FXCJd28LNrAS7KocOG0PQaNkymMXw3YZyKMix2Ei8ep6AFc%2B4HtPqHVJ1Se3UkRi1Rb4a4ySEMJvVUjLkVhSotB3rB%2F3AF5f9kYbST4vLiGlpw7lmDKY9Jgq2smW4wMb0LTCg5Wc2xEfdgk6WJeVLT0F95hv3pNOvlvcodukhabFHg2pEfoKKv9C%2FznRmRBxubXFkBCHUvuO5i3MafrcyxzNNeKbhvHBA26gGQPz2aQp5VQ%2FaovnOPH9TfU%2F2msgMLnmrlk3RYOwOyVONx6SrCR5pF3TC%2FmVb%2BYXzodwMEZryZjrsz%2FGXWBcEYgcUGUkwAhivy49Z32yYFlQFf4vVJBDjqZ7HZ%2BpJqYp4rptv4A7cCijl3lqqUXGfZVlPFvgiq7rRCSdDNtb9vjM7cw4PsueyX3u%2BONUVZkktJoEoFKJbe46AyQgJrkSceGNcq%2BRBlU7keoPxOKh2j19rZzx8xMFKjN%2FDNaekz%2FQVdMC3ZLJDZpgGZeCVbaxYTDccRctgJWXoOo%2B9dxfHD1G0S7TyS57iy4qBC8H02dj8NdG5LiJdjVP3RRIeeLhGE8WdoxZKaEZMkVntpEaJBrqJsoaH%2BahcsKvnXJQx4AkJwSrvrKa8BYMHt6xVPWyPQBXG9KEOT7udVG%2FRLYGc8v3XHmmdcf%2BO0rfxATWWlaf3nBdcQR%2FV0N9iSRavAp1aYws%2BOkPcpIGWL9qJtYbMdCEcuQ2wRCosVD8A14ABxSQk4D%2F947%2BaaVRxPsxKScSoe1n4%2Bsboj3d3SQ%3D%3D&rb=x" class="ui-search-link" title="Pc Computador Cpu Intel Core I3 Hd 1 Tb / 8gb Mem\xc3\xb3ria Ram" rel="nofollow,sponsored"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_905103-MLB49635935018_042022-W.jpg" alt="Pc Computador Cpu Intel Core I3 Hd 1 Tb / 8gb Mem\xc3\xb3ria Ram"/></div></div></div></div></div></a></div><a href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=GeV8zlag4h1%2FXCJd28LNrAS7KocOG0PQaNkymMXw3YZyKMix2Ei8ep6AFc%2B4HtPqHVJ1Se3UkRi1Rb4a4ySEMJvVUjLkVhSotB3rB%2F3AF5f9kYbST4vLiGlpw7lmDKY9Jgq2smW4wMb0LTCg5Wc2xEfdgk6WJeVLT0F95hv3pNOvlvcodukhabFHg2pEfoKKv9C%2FznRmRBxubXFkBCHUvuO5i3MafrcyxzNNeKbhvHBA26gGQPz2aQp5VQ%2FaovnOPH9TfU%2F2msgMLnmrlk3RYOwOyVONx6SrCR5pF3TC%2FmVb%2BYXzodwMEZryZjrsz%2FGXWBcEYgcUGUkwAhivy49Z32yYFlQFf4vVJBDjqZ7HZ%2BpJqYp4rptv4A7cCijl3lqqUXGfZVlPFvgiq7rRCSdDNtb9vjM7cw4PsueyX3u%2BONUVZkktJoEoFKJbe46AyQgJrkSceGNcq%2BRBlU7keoPxOKh2j19rZzx8xMFKjN%2FDNaekz%2FQVdMC3ZLJDZpgGZeCVbaxYTDccRctgJWXoOo%2B9dxfHD1G0S7TyS57iy4qBC8H02dj8NdG5LiJdjVP3RRIeeLhGE8WdoxZKaEZMkVntpEaJBrqJsoaH%2BahcsKvnXJQx4AkJwSrvrKa8BYMHt6xVPWyPQBXG9KEOT7udVG%2FRLYGc8v3XHmmdcf%2BO0rfxATWWlaf3nBdcQR%2FV0N9iSRavAp1aYws%2BOkPcpIGWL9qJtYbMdCEcuQ2wRCosVD8A14ABxSQk4D%2F947%2BaaVRxPsxKScSoe1n4%2Bsboj3d3SQ%3D%3D&rb=x" class="ui-search-result__content ui-search-link" title="Pc Computador Cpu Intel Core I3 Hd 1 Tb / 8gb Mem\xc3\xb3ria Ram" rel="nofollow,sponsored"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1377 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.377</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">137 reais con 68 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">137</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">68</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Computador Cpu Intel Core I3 Hd 1 Tb / 8gb Mem\xc3\xb3ria Ram</h2></div></div><div class="ui-search-item__ad-container"><span class="ui-search-item__ad-label ui-search-item__ad-label--blue">Patrocinado</span></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2610297318" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2610297318"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core ui-search-result--advertisement andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=YAqpLVM8Plx3fVYfKbG97aoVl4UTPeSnTJkhCB7TOWSC8UZzcEWC%2BNwEdn9bMGURPCTWN0poBzbBvAKSqyR9ZZpZDumDXP9CYxtOw%2FH8AuIQ4Ci2In%2BJa82%2BjA6%2Bguaj2AahVvTxahhXp52kNj9zoD%2BXythp8dvZgjV0u4m7Dkzl0DVJrwJYSLqx3b%2BlNjrieVd2tt1KgDoGWQM3hbyfbrir0%2FBkNuAkjhelpSNswcLCPtQgiT4znCUmIz9WPIa%2FibMAdLei0%2BSph5MrlVwrElljHL7S9ocnvawqOPnSXPktcPEa%2BhJBkk9zfjv7Mg7NWB8k5mDhWJ32fvZQD4N7An9sswGM1eCmV5R6iZekq9G2PgzgLPMLOaTTF8f3E0tGPmwAFqB%2BDDe2LBi5tKLota6FONRrq%2B5234L8UbI4jIsXbBuDYIgphUXjB2pjmkhKuxMBCmCR6dDsU2rwuLG2L1Qb%2FmSmlD635nAc36ItmfSIr8QlZjB570ROkjOFO8zzPQJzWsb7TIAVE0u%2FPxQlB9neWB0u2vcjd87XiPvWOcWSy7ZFVUZENRzCQ245EQAJThl1NsCuJOqlxV76A7e96ssT7WB81pKtPh7tq2pPuXFjjHLhVcfK5XgqH5WmDDun9tbFG2lQw7IsL6PQrBV4mapmVjefByrL3pL3pYNR4Wv00qAsMow%2Fu4XmyIyDRO8wdMjAB0RoWJWQ64or%2FWxLyAaWyHbmrxn8KK8FzZrle34zGQ0Y24bHcWgjNOSpMcDFI0VaoWiTxDU2T%2FdNcgh2&rb=x" class="ui-search-link" title="Pc Gamer Barato Completo Intel I5 16gb Hd 1tb Geforce 2gb" rel="nofollow,sponsored"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_824487-MLB49401202035_032022-W.jpg" alt="Pc Gamer Barato Completo Intel I5 16gb Hd 1tb Geforce 2gb"/></div></div></div></div></div></a></div><a href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=YAqpLVM8Plx3fVYfKbG97aoVl4UTPeSnTJkhCB7TOWSC8UZzcEWC%2BNwEdn9bMGURPCTWN0poBzbBvAKSqyR9ZZpZDumDXP9CYxtOw%2FH8AuIQ4Ci2In%2BJa82%2BjA6%2Bguaj2AahVvTxahhXp52kNj9zoD%2BXythp8dvZgjV0u4m7Dkzl0DVJrwJYSLqx3b%2BlNjrieVd2tt1KgDoGWQM3hbyfbrir0%2FBkNuAkjhelpSNswcLCPtQgiT4znCUmIz9WPIa%2FibMAdLei0%2BSph5MrlVwrElljHL7S9ocnvawqOPnSXPktcPEa%2BhJBkk9zfjv7Mg7NWB8k5mDhWJ32fvZQD4N7An9sswGM1eCmV5R6iZekq9G2PgzgLPMLOaTTF8f3E0tGPmwAFqB%2BDDe2LBi5tKLota6FONRrq%2B5234L8UbI4jIsXbBuDYIgphUXjB2pjmkhKuxMBCmCR6dDsU2rwuLG2L1Qb%2FmSmlD635nAc36ItmfSIr8QlZjB570ROkjOFO8zzPQJzWsb7TIAVE0u%2FPxQlB9neWB0u2vcjd87XiPvWOcWSy7ZFVUZENRzCQ245EQAJThl1NsCuJOqlxV76A7e96ssT7WB81pKtPh7tq2pPuXFjjHLhVcfK5XgqH5WmDDun9tbFG2lQw7IsL6PQrBV4mapmVjefByrL3pL3pYNR4Wv00qAsMow%2Fu4XmyIyDRO8wdMjAB0RoWJWQ64or%2FWxLyAaWyHbmrxn8KK8FzZrle34zGQ0Y24bHcWgjNOSpMcDFI0VaoWiTxDU2T%2FdNcgh2&rb=x" class="ui-search-result__content ui-search-link" title="Pc Gamer Barato Completo Intel I5 16gb Hd 1tb Geforce 2gb" rel="nofollow,sponsored"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 3122 reais con 10 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">3.122</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">10</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">3122 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">3.122</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">312 reais con 21 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">312</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">21</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Gamer Barato Completo Intel I5 16gb Hd 1tb Geforce 2gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div><div class="ui-search-item__ad-container"><span class="ui-search-item__ad-label ui-search-item__ad-label--blue">Patrocinado</span></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2210259535" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2210259535"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-2669020387-cpu-desktop-core-2-duo-4gb-ssd-120gb-wi-fi-windows-10-_JM#position=31&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Cpu Desktop Core 2 Duo / 4gb / Ssd 120gb / Wi-fi/ Windows 10"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_794520-MLB50118705093_052022-W.jpg" alt="Cpu Desktop Core 2 Duo / 4gb / Ssd 120gb / Wi-fi/ Windows 10"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-2669020387-cpu-desktop-core-2-duo-4gb-ssd-120gb-wi-fi-windows-10-_JM#position=31&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Cpu Desktop Core 2 Duo / 4gb / Ssd 120gb / Wi-fi/ Windows 10"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">779 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">779</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">75 reais con 52 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">75</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">52</span></span></span></div></div></span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Cr\xc3\xa9dito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Cpu Desktop Core 2 Duo / 4gb / Ssd 120gb / Wi-fi/ Windows 10</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2669020387" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2669020387"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://www.mercadolivre.com.br/disco-solido-interno-kingston-suv400s37240g-240gb/p/MLB6189662?pdp_filters=category:MLB1648#searchVariation=MLB6189662&position=8&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Disco s\xc3\xb3lido interno Kingston SUV400S37/240G 240GB"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_760570-MLA40662362283_022020-W.jpg" alt="Disco s\xc3\xb3lido interno Kingston SUV400S37/240G 240GB"/></div></div></div></div></div></a></div><a href="https://www.mercadolivre.com.br/disco-solido-interno-kingston-suv400s37240g-240gb/p/MLB6189662?pdp_filters=category:MLB1648#searchVariation=MLB6189662&position=8&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Disco s\xc3\xb3lido interno Kingston SUV400S37/240G 240GB"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">195 reais con 89 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">195</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">89</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">18 reais con 99 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">18</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">99</span></span></span></div></div></span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Disco s\xc3\xb3lido interno Kingston SUV400S37/240G 240GB</h2></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-half" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-half"></use></svg></span><span class="ui-search-reviews__amount">1102</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2610554493" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2610554493"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-book-pc319-preta-14-intel-pentium-n3700-4gb-de-ram-64gb-hdd-intel-hd-graphics-braswell-1366x768px-windows-10-home/p/MLB18941410?pdp_filters=category:MLB1648#searchVariation=MLB18941410&position=9&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Notebook Multilaser Legacy Book PC319 preta 14", Intel Pentium N3700 4GB de RAM 64GB HDD, Intel HD Graphics (Braswell) 1366x768px Windows 10 Home"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_683939-MLA49170389796_022022-W.jpg" alt="Notebook Multilaser Legacy Book PC319 preta 14", Intel Pentium N3700 4GB de RAM 64GB HDD, Intel HD Graphics (Braswell) 1366x768px Windows 10 Home"/></div></div></div></div></div></a></div><a href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-book-pc319-preta-14-intel-pentium-n3700-4gb-de-ram-64gb-hdd-intel-hd-graphics-braswell-1366x768px-windows-10-home/p/MLB18941410?pdp_filters=category:MLB1648#searchVariation=MLB18941410&position=9&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Notebook Multilaser Legacy Book PC319 preta 14", Intel Pentium N3700 4GB de RAM 64GB HDD, Intel HD Graphics (Braswell) 1366x768px Windows 10 Home"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">2250 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.250</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">218 reais con 13 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">218</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">13</span></span></span></div></div></span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Notebook Multilaser Legacy Book PC319 preta 14", Intel Pentium N3700 4GB de RAM 64GB HDD, Intel HD Graphics (Braswell) 1366x768px Windows 10 Home</h2></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-half" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-half"></use></svg></span><span class="ui-search-reviews__amount">36</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2199976353" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2199976353"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-1986322829-pc-computador-cpu-intel-core-i5-ssd-240gb-8gb-memoria-ram-_JM#position=32&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_804398-MLB47170053830_082021-W.jpg" alt="Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-1986322829-pc-computador-cpu-intel-core-i5-ssd-240gb-8gb-memoria-ram-_JM#position=32&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1298 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.298</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">129 reais con 80 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">129</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">80</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Cr\xc3\xa9dito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1986322829" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1986322829"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-1680063928-pc-computador-cpu-core-i5-3470-ssd-240gb-16gb-memoria-ram-_JM#position=33&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Pc Computador Cpu Core I5 3470 Ssd 240gb + 16gb Mem\xc3\xb3ria Ram"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_670003-MLB50614039338_072022-W.jpg" alt="Pc Computador Cpu Core I5 3470 Ssd 240gb + 16gb Mem\xc3\xb3ria Ram"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-1680063928-pc-computador-cpu-core-i5-3470-ssd-240gb-16gb-memoria-ram-_JM#position=33&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Pc Computador Cpu Core I5 3470 Ssd 240gb + 16gb Mem\xc3\xb3ria Ram"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2219 reais con 90 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.219</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">90</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1598 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.598</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">28% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">159 reais con 83 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">159</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">83</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Cr\xc3\xa9dito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Computador Cpu Core I5 3470 Ssd 240gb + 16gb Mem\xc3\xb3ria Ram</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1680063928" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1680063928"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-1899027328-cpu-pc-torre-core-i5-3470-320ghz-8gb-ssd-240gb-com-nf-_JM#position=34&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title=" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_869749-MLB47473329590_092021-W.jpg" alt=" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-1899027328-cpu-pc-torre-core-i5-3470-320ghz-8gb-ssd-240gb-com-nf-_JM#position=34&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title=" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1370 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.370</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">132 reais con 82 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">132</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">82</span></span></span></div></div></span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Cr\xc3\xa9dito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p><span class="ui-search-item__fulfillment"><svg class="ui-search-icon ui-search-icon--full" viewBox="0 0 100 32" xmlns="http://www.w3.org/2000/svg" aria-label="full"><use href="#full"></use></svg></span></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element"> Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1899027328" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1899027328"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-1506134141-cpu-desktop-dell-core-i5-32ghz-8gb-ssd-240gb-win10-_JM#position=37&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Cpu Desktop Dell Core-i5 3.2ghz 8gb Ssd 240gb Win10"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_912432-MLB49974695962_052022-W.jpg" alt="Cpu Desktop Dell Core-i5 3.2ghz 8gb Ssd 240gb Win10"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-1506134141-cpu-desktop-dell-core-i5-32ghz-8gb-ssd-240gb-win10-_JM#position=37&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Cpu Desktop Dell Core-i5 3.2ghz 8gb Ssd 240gb Win10"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2059 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.059</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1812 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.812</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">175 reais con 67 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">175</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">67</span></span></span></div></div></span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Cr\xc3\xa9dito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Cpu Desktop Dell Core-i5 3.2ghz 8gb Ssd 240gb Win10</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1506134141" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1506134141"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-1983288676-computador-facil-intel-core-i3-8gb-ssd-240gb-_JM#position=38&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Computador F\xc3\xa1cil Intel Core I3 8gb Ssd 240gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_699910-MLB47145668957_082021-W.jpg" alt="Computador F\xc3\xa1cil Intel Core I3 8gb Ssd 240gb"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-1983288676-computador-facil-intel-core-i3-8gb-ssd-240gb-_JM#position=38&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Computador F\xc3\xa1cil Intel Core I3 8gb Ssd 240gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--deal_of_the_day" style="background:#3483FA"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#FFFFFF">OFERTA DO DIA</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1180 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.180</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1038 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.038</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">103 reais con 84 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">103</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">84</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Cr\xc3\xa9dito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador F\xc3\xa1cil Intel Core I3 8gb Ssd 240gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983288676" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1983288676"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-1983279518-computador-completo-facil-intel-i5-08-gb-ddr3-ssd-120-gb-_JM#position=39&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Computador Completo F\xc3\xa1cil Intel I5 08 Gb Ddr3 Ssd 120 Gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_932170-MLB47230342741_082021-W.jpg" alt="Computador Completo F\xc3\xa1cil Intel I5 08 Gb Ddr3 Ssd 120 Gb"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-1983279518-computador-completo-facil-intel-i5-08-gb-ddr3-ssd-120-gb-_JM#position=39&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Computador Completo F\xc3\xa1cil Intel I5 08 Gb Ddr3 Ssd 120 Gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2009 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.009</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1768 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.768</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">176 reais con 79 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">176</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">79</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Completo F\xc3\xa1cil Intel I5 08 Gb Ddr3 Ssd 120 Gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983279518" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1983279518"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-2022879801-pc-gamer-completo-facil-intel-i5-3-16gb-ssd-240gb-gt420-4gb-_JM#position=40&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Pc Gamer Completo F\xc3\xa1cil Intel I5 3\xc2\xaa 16gb Ssd 240gb Gt420 4gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_749265-MLB50697629795_072022-W.jpg" alt="Pc Gamer Completo F\xc3\xa1cil Intel I5 3\xc2\xaa 16gb Ssd 240gb Gt420 4gb"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-2022879801-pc-gamer-completo-facil-intel-i5-3-16gb-ssd-240gb-gt420-4gb-_JM#position=40&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Pc Gamer Completo F\xc3\xa1cil Intel I5 3\xc2\xaa 16gb Ssd 240gb Gt420 4gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 3529 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">3.529</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">3106 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">3.106</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">310 reais con 55 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">310</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">55</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Cr\xc3\xa9dito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Gamer Completo F\xc3\xa1cil Intel I5 3\xc2\xaa 16gb Ssd 240gb Gt420 4gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2022879801" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2022879801"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-2096063553-computador-facil-intel-core-i3-4gb-ssd-120gb-_JM#position=41&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Computador F\xc3\xa1cil Intel Core I3 4gb Ssd 120gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_766782-MLB47145738530_082021-W.jpg" alt="Computador F\xc3\xa1cil Intel Core I3 4gb Ssd 120gb"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-2096063553-computador-facil-intel-core-i3-4gb-ssd-120gb-_JM#position=41&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Computador F\xc3\xa1cil Intel Core I3 4gb Ssd 120gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 939 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">939</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">826 reais con 32 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">826</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">32</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">80 reais con 11 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">80</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">11</span></span></span></div></div></span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Cr\xc3\xa9dito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador F\xc3\xa1cil Intel Core I3 4gb Ssd 120gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2096063553" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2096063553"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core ui-search-result--advertisement andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=kjBFWOIfeQlMHdWANCwPV%2BR1xYh%2BOBx2sEwU%2FPiwfjPaySRx%2Bd97nHHukWqK6ZZVlZAt76SvwdgLdSKS37kCcD9Rif%2BJ8p6lYxtJkZ3kfwvX%2BtX0zRcRVkH2zJlBAjI%2Bgic9u%2Fff%2B04P1V1EFkmpujOPy5RyaicJnabe0%2B765wSt7hr6K8tnY1wcfX6RpRZjQpvo94VVFeoQNK3zoQHc6y38TPD3AiVUcpCvDYDf2AJcZxRjHBuH7Y%2B7QhmjTDisSZVtT%2F15wrLIps19o3t8qwf%2BbGWSO7pWrXtgoFMmAGFepHzuNEpRtQRAjuOvEktz6ut%2FzQnvYmaMsOcZsdicjDvdwzuLxW28hanyb%2FPz8WpAreKkbiPb0s1bIt3a9wub%2BqZ2DpqbQfA3mH2Ifgv6lXuJrm%2BSj8L97nCItYy2t62rfHke3N0j9ThXFghPcDAgAvAQDlSfHcRLJJawRR6kG69Lt3meA%2B5macZX4aHEueSTCCi46PlBAft4FCDTaj3uQAFd6k130pVwk%2FbHO7l4x1Ymmnra2ijgVx%2BgsSSb2y2M7mQaaQJ18%2B6P63JXo6IiL8k508Oi8qwstIXdPUEX5XpQ9Bi8BitNnEHp7%2FuVtjTrWPPOCjB2ZgKOvgdPLAtsB8mNvWZXT94q0Wdqe1FXjsq%2FHG99hGJOXP9XipPaEYFe0Ic01OUfgETIat8J%2Be4YE1PO5Fqc3gSzOUuNTUZh8LfR2NZvcthmosjrleeHH%2BYhNPCMjUgOkADduLf2Op4V5e1%2F7LDx%2BbjTAVH3Pw%3D%3D&rb=x" class="ui-search-link" title="Ssd Kingston Q500 Disco S\xc3\xb3lido Interno 240gb Vers\xc3\xa3o 2023" rel="nofollow,sponsored"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_882634-MLB48986961738_012022-W.jpg" alt="Ssd Kingston Q500 Disco S\xc3\xb3lido Interno 240gb Vers\xc3\xa3o 2023"/></div></div></div></div></div></a></div><a href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=kjBFWOIfeQlMHdWANCwPV%2BR1xYh%2BOBx2sEwU%2FPiwfjPaySRx%2Bd97nHHukWqK6ZZVlZAt76SvwdgLdSKS37kCcD9Rif%2BJ8p6lYxtJkZ3kfwvX%2BtX0zRcRVkH2zJlBAjI%2Bgic9u%2Fff%2B04P1V1EFkmpujOPy5RyaicJnabe0%2B765wSt7hr6K8tnY1wcfX6RpRZjQpvo94VVFeoQNK3zoQHc6y38TPD3AiVUcpCvDYDf2AJcZxRjHBuH7Y%2B7QhmjTDisSZVtT%2F15wrLIps19o3t8qwf%2BbGWSO7pWrXtgoFMmAGFepHzuNEpRtQRAjuOvEktz6ut%2FzQnvYmaMsOcZsdicjDvdwzuLxW28hanyb%2FPz8WpAreKkbiPb0s1bIt3a9wub%2BqZ2DpqbQfA3mH2Ifgv6lXuJrm%2BSj8L97nCItYy2t62rfHke3N0j9ThXFghPcDAgAvAQDlSfHcRLJJawRR6kG69Lt3meA%2B5macZX4aHEueSTCCi46PlBAft4FCDTaj3uQAFd6k130pVwk%2FbHO7l4x1Ymmnra2ijgVx%2BgsSSb2y2M7mQaaQJ18%2B6P63JXo6IiL8k508Oi8qwstIXdPUEX5XpQ9Bi8BitNnEHp7%2FuVtjTrWPPOCjB2ZgKOvgdPLAtsB8mNvWZXT94q0Wdqe1FXjsq%2FHG99hGJOXP9XipPaEYFe0Ic01OUfgETIat8J%2Be4YE1PO5Fqc3gSzOUuNTUZh8LfR2NZvcthmosjrleeHH%2BYhNPCMjUgOkADduLf2Op4V5e1%2F7LDx%2BbjTAVH3Pw%3D%3D&rb=x" class="ui-search-result__content ui-search-link" title="Ssd Kingston Q500 Disco S\xc3\xb3lido Interno 240gb Vers\xc3\xa3o 2023" rel="nofollow,sponsored"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">229 reais con 90 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">229</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">90</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">22 reais con 29 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">22</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">29</span></span></span></div></div></span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Ssd Kingston Q500 Disco S\xc3\xb3lido Interno 240gb Vers\xc3\xa3o 2023</h2></div></div><div class="ui-search-item__ad-container"><span class="ui-search-item__ad-label ui-search-item__ad-label--blue">Patrocinado</span></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2161556728" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2161556728"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core ui-search-result--advertisement andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=582f%2FoYl1X%2BFutuD2yRC5H4qq1VPXHnAzz8eV4XElq4C8oxbgVOHEV9wmRut9klpXaYwRDFfj0x0cPCWDs%2Fu8xHVXqq4XkVmQHCehlHZTGARsw1lVwPBFAw1O9PB5W0p873uSjnfD5xm%2Ft9yWd%2BWEpPFZ1jkkqLYiLr3y6g%2Fv6CyhpsuMvWIoDjELNcnU81HlAGPyuoyj95yDHbc1eqCBaJ%2FHo5Wd%2F6RcELjkKI85H0M%2FJvokxa5gLoW%2BRPTW4SJ7SeZAWhV54oE51q2tr7UvIyzM%2FTxwCmmSGXbxNaenZESmxXjvRXd2Uwczlg4FjwdafTwCqF0ihSPPu%2Fscx61RL0BUCiFUvcf03gHkR8MKZfCt5dHg%2FalxH4eA9DJFB5c0q55QvCbBqyGbNjFyA3l6MaKiUtgu73swtd%2F1uNbN%2BU5IZPjR6hw2G5OQOBDzItdZgnNOhJJXwdzWZwO2fS%2Bbd2PufyOn%2Bay6Nw53NfTXN%2FHvgINyaIr%2BeqwHqOk3lx2MnanZDs%2Blx%2FKoQQSflDy4xCo%2BCOTsmS2xwHm4USuFa3iYGyVXnAXsWG7BKQCxI3GTh%2BxCuwXyH%2BPjUDclCq%2B2bwn4y7wXg6fxJtcJCoQOL7a5ZTPAKSj45k6eVpji6ItiWNxAMbCd%2Bb%2BIPw1CoTyWSVWOzGBRh%2FdN7Y4ZEmJKlKM%2FO9rmuRxBdS%2Belq6oyQqGWQV7WwKDc6NLxAle3WzlfWDrBHV1Wua8Y7NbTTAgcEE5ly%2FVJCUypbuZJB%2BirAonJD8tGImHJiIuoEaYi99&rb=x" class="ui-search-link" title="Pc Gamer Intel Core I5 3\xc2\xaa Gera\xc3\xa7\xc3\xa3o 16gb Gt 420 4gb Ssd 240gb" rel="nofollow,sponsored"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_786420-MLB50697456897_072022-W.jpg" alt="Pc Gamer Intel Core I5 3\xc2\xaa Gera\xc3\xa7\xc3\xa3o 16gb Gt 420 4gb Ssd 240gb"/></div></div></div></div></div></a></div><a href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=582f%2FoYl1X%2BFutuD2yRC5H4qq1VPXHnAzz8eV4XElq4C8oxbgVOHEV9wmRut9klpXaYwRDFfj0x0cPCWDs%2Fu8xHVXqq4XkVmQHCehlHZTGARsw1lVwPBFAw1O9PB5W0p873uSjnfD5xm%2Ft9yWd%2BWEpPFZ1jkkqLYiLr3y6g%2Fv6CyhpsuMvWIoDjELNcnU81HlAGPyuoyj95yDHbc1eqCBaJ%2FHo5Wd%2F6RcELjkKI85H0M%2FJvokxa5gLoW%2BRPTW4SJ7SeZAWhV54oE51q2tr7UvIyzM%2FTxwCmmSGXbxNaenZESmxXjvRXd2Uwczlg4FjwdafTwCqF0ihSPPu%2Fscx61RL0BUCiFUvcf03gHkR8MKZfCt5dHg%2FalxH4eA9DJFB5c0q55QvCbBqyGbNjFyA3l6MaKiUtgu73swtd%2F1uNbN%2BU5IZPjR6hw2G5OQOBDzItdZgnNOhJJXwdzWZwO2fS%2Bbd2PufyOn%2Bay6Nw53NfTXN%2FHvgINyaIr%2BeqwHqOk3lx2MnanZDs%2Blx%2FKoQQSflDy4xCo%2BCOTsmS2xwHm4USuFa3iYGyVXnAXsWG7BKQCxI3GTh%2BxCuwXyH%2BPjUDclCq%2B2bwn4y7wXg6fxJtcJCoQOL7a5ZTPAKSj45k6eVpji6ItiWNxAMbCd%2Bb%2BIPw1CoTyWSVWOzGBRh%2FdN7Y4ZEmJKlKM%2FO9rmuRxBdS%2Belq6oyQqGWQV7WwKDc6NLxAle3WzlfWDrBHV1Wua8Y7NbTTAgcEE5ly%2FVJCUypbuZJB%2BirAonJD8tGImHJiIuoEaYi99&rb=x" class="ui-search-result__content ui-search-link" title="Pc Gamer Intel Core I5 3\xc2\xaa Gera\xc3\xa7\xc3\xa3o 16gb Gt 420 4gb Ssd 240gb" rel="nofollow,sponsored"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2629 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.629</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">2366 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.366</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">10% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">236 reais con 61 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">236</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">61</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Gamer Intel Core I5 3\xc2\xaa Gera\xc3\xa7\xc3\xa3o 16gb Gt 420 4gb Ssd 240gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div><div class="ui-search-item__ad-container"><span class="ui-search-item__ad-label ui-search-item__ad-label--blue">Patrocinado</span></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983287147" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1983287147"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-cloud-pc131-gray-14-intel-atom-x5-z8350-2gb-de-ram-32gb-ssd-1366x768px-windows-10-home/p/MLB17739841?pdp_filters=category:MLB1648#searchVariation=MLB17739841&position=10&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Notebook Multilaser Legacy Cloud PC131 gray 14", Intel Atom X5-Z8350 2GB de RAM 32GB SSD 1366x768px Windows 10 Home"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_663420-MLA45638372671_042021-W.jpg" alt="Notebook Multilaser Legacy Cloud PC131 gray 14", Intel Atom X5-Z8350 2GB de RAM 32GB SSD 1366x768px Windows 10 Home"/></div></div></div></div></div></a></div><a href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-cloud-pc131-gray-14-intel-atom-x5-z8350-2gb-de-ram-32gb-ssd-1366x768px-windows-10-home/p/MLB17739841?pdp_filters=category:MLB1648#searchVariation=MLB17739841&position=10&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Notebook Multilaser Legacy Cloud PC131 gray 14", Intel Atom X5-Z8350 2GB de RAM 32GB SSD 1366x768px Windows 10 Home"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1650 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.650</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1324 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.324</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">19% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">132 reais con 40 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">132</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">40</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Notebook Multilaser Legacy Cloud PC131 gray 14", Intel Atom X5-Z8350 2GB de RAM 32GB SSD 1366x768px Windows 10 Home</h2></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-half" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-half"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 11 10"><use href="#start-empty"></use></svg></span><span class="ui-search-reviews__amount">158</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2103940157" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2103940157"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://www.mercadolivre.com.br/notebook-compaq-presario-cq-25-gray-141-intel-pentium-n3700-4gb-de-ram-120gb-ssd-intel-hd-graphics-1366x768px-windows-10-home/p/MLB17966310?pdp_filters=category:MLB1648#searchVariation=MLB17966310&position=13&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Notebook Compaq Presario CQ-25 gray 14.1", Intel Pentium N3700 4GB de RAM 120GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_686771-MLA48742378207_012022-W.jpg" alt="Notebook Compaq Presario CQ-25 gray 14.1", Intel Pentium N3700 4GB de RAM 120GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"/></div></div></div></div></div></a></div><a href="https://www.mercadolivre.com.br/notebook-compaq-presario-cq-25-gray-141-intel-pentium-n3700-4gb-de-ram-120gb-ssd-intel-hd-graphics-1366x768px-windows-10-home/p/MLB17966310?pdp_filters=category:MLB1648#searchVariation=MLB17966310&position=13&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Notebook Compaq Presario CQ-25 gray 14.1", Intel Pentium N3700 4GB de RAM 120GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1979 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.979</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">197 reais con 90 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">197</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">90</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Notebook Compaq Presario CQ-25 gray 14.1", Intel Pentium N3700 4GB de RAM 120GB SSD, Intel HD Graphics 1366x768px Windows 10 Home</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por SincPlace</p></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 11 10"><use href="#start-empty"></use></svg></span><span class="ui-search-reviews__amount">61</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2724080796" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2724080796"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-1983296789-computador-facil-completo-intel-core-i5-8gb-hd-1-tb-_JM#position=42&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Computador F\xc3\xa1cil Completo Intel Core I5 8gb Hd 1 Tb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_940955-MLB47230441512_082021-W.jpg" alt="Computador F\xc3\xa1cil Completo Intel Core I5 8gb Hd 1 Tb"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-1983296789-computador-facil-completo-intel-core-i5-8gb-hd-1-tb-_JM#position=42&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Computador F\xc3\xa1cil Completo Intel Core I5 8gb Hd 1 Tb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--deal_of_the_day" style="background:#3483FA"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#FFFFFF">OFERTA DO DIA</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2219 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.219</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1953 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.953</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">195 reais con 27 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">195</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">27</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Cr\xc3\xa9dito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador F\xc3\xa1cil Completo Intel Core I5 8gb Hd 1 Tb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983296789" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1983296789"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-2618767197-cpu-desktop-core-i3-ssd-240gb-4gb-memoria-wi-fi-win10-_JM#position=43&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Cpu Desktop Core I3 / Ssd 240gb / 4gb Mem\xc3\xb3ria / Wi-fi /win10"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_638057-MLB49747629097_042022-W.jpg" alt="Cpu Desktop Core I3 / Ssd 240gb / 4gb Mem\xc3\xb3ria / Wi-fi /win10"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-2618767197-cpu-desktop-core-i3-ssd-240gb-4gb-memoria-wi-fi-win10-_JM#position=43&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Cpu Desktop Core I3 / Ssd 240gb / 4gb Mem\xc3\xb3ria / Wi-fi /win10"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1149 reais con 99 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.149</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">99</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1012 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.012</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">101 reais con 20 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">101</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">20</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Cpu Desktop Core I3 / Ssd 240gb / 4gb Mem\xc3\xb3ria / Wi-fi /win10</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2618767197" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2618767197"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://www.mercadolivre.com.br/monitor-pctop-mlp170hdmi-led-17-preto-100v240v/p/MLB18459542?pdp_filters=category:MLB1648#searchVariation=MLB18459542&position=14&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Monitor Pctop MLP170HDMI led 17\xc2\xa0" preto 100V/240V"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_734440-MLA47873401457_102021-W.jpg" alt="Monitor Pctop MLP170HDMI led 17\xc2\xa0" preto 100V/240V"/></div></div></div></div></div></a></div><a href="https://www.mercadolivre.com.br/monitor-pctop-mlp170hdmi-led-17-preto-100v240v/p/MLB18459542?pdp_filters=category:MLB1648#searchVariation=MLB18459542&position=14&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Monitor Pctop MLP170HDMI led 17\xc2\xa0" preto 100V/240V"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 579 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">579</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">394 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">394</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">31% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">38 reais con 20 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">38</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">20</span></span></span></div></div></span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p><span class="ui-search-item__fulfillment"><svg class="ui-search-icon ui-search-icon--full" viewBox="0 0 100 32" xmlns="http://www.w3.org/2000/svg" aria-label="full"><use href="#full"></use></svg></span></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Monitor Pctop MLP170HDMI led 17\xc2\xa0" preto 100V/240V</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por VIKING</p></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 11 10"><use href="#start-empty"></use></svg></span><span class="ui-search-reviews__amount">649</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2145104504" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2145104504"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-2626699161-pc-gamer-completo-i5-16gb-1tb-monitor-kit-gamer-full-hd-_JM#position=44&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Pc Gamer Completo I5 16gb 1tb Monitor + Kit Gamer Full Hd"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_637939-MLB49359922906_032022-W.jpg" alt="Pc Gamer Completo I5 16gb 1tb Monitor + Kit Gamer Full Hd"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-2626699161-pc-gamer-completo-i5-16gb-1tb-monitor-kit-gamer-full-hd-_JM#position=44&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Pc Gamer Completo I5 16gb 1tb Monitor + Kit Gamer Full Hd"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2849 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.849</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">2507 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.507</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">243 reais con 07 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">243</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">07</span></span></span></div></div></span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Gamer Completo I5 16gb 1tb Monitor + Kit Gamer Full Hd</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por Imperiums</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2626699161" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2626699161"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-1983286920-computador-completo-facil-intel-core-i5-08gb-ddr3-ssd-480-gb-_JM#position=45&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Computador Completo F\xc3\xa1cil Intel Core I5 08gb Ddr3 Ssd 480 Gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_633631-MLB47230376736_082021-W.jpg" alt="Computador Completo F\xc3\xa1cil Intel Core I5 08gb Ddr3 Ssd 480 Gb"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-1983286920-computador-completo-facil-intel-core-i5-08gb-ddr3-ssd-480-gb-_JM#position=45&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Computador Completo F\xc3\xa1cil Intel Core I5 08gb Ddr3 Ssd 480 Gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--deal_of_the_day" style="background:#3483FA"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#FFFFFF">OFERTA DO DIA</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2249 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.249</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1979 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.979</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">197 reais con 91 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">197</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">91</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Cr\xc3\xa9dito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Completo F\xc3\xa1cil Intel Core I5 08gb Ddr3 Ssd 480 Gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983286920" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1983286920"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-1983288815-pc-completo-facil-intel-i5-08gb-ssd-240gb-monitor-led-15-_JM#position=46&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Pc Completo F\xc3\xa1cil Intel I5 08gb Ssd 240gb + Monitor Led 15''"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_661140-MLB47230543122_082021-W.jpg" alt="Pc Completo F\xc3\xa1cil Intel I5 08gb Ssd 240gb + Monitor Led 15''"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-1983288815-pc-completo-facil-intel-i5-08gb-ssd-240gb-monitor-led-15-_JM#position=46&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Pc Completo F\xc3\xa1cil Intel I5 08gb Ssd 240gb + Monitor Led 15''"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--deal_of_the_day" style="background:#3483FA"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#FFFFFF">OFERTA DO DIA</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2049 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.049</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1803 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.803</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">180 reais con 31 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">180</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">31</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Completo F\xc3\xa1cil Intel I5 08gb Ssd 240gb + Monitor Led 15''</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983288815" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1983288815"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-1786478708-computador-cpu-intel-i3-4gb-ssd-120gb-hdmi-pronta-entrega-_JM#position=47&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Computador Cpu Intel I3 4gb Ssd 120gb Hdmi Pronta Entrega"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_783932-MLB43487722056_092020-W.jpg" alt="Computador Cpu Intel I3 4gb Ssd 120gb Hdmi Pronta Entrega"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-1786478708-computador-cpu-intel-i3-4gb-ssd-120gb-hdmi-pronta-entrega-_JM#position=47&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Computador Cpu Intel I3 4gb Ssd 120gb Hdmi Pronta Entrega"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1180 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.180</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1038 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.038</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">103 reais con 84 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">103</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">84</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Cpu Intel I3 4gb Ssd 120gb Hdmi Pronta Entrega</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1786478708" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1786478708"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-2618802287-cpu-desktop-core-i5-ssd-120gb-4gb-memoria-wi-fi-win10-_JM#position=48&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Cpu Desktop Core I5 / Ssd 120gb / 4gb Mem\xc3\xb3ria / Wi-fi /win10"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_836376-MLB49747627011_042022-W.jpg" alt="Cpu Desktop Core I5 / Ssd 120gb / 4gb Mem\xc3\xb3ria / Wi-fi /win10"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-2618802287-cpu-desktop-core-i5-ssd-120gb-4gb-memoria-wi-fi-win10-_JM#position=48&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Cpu Desktop Core I5 / Ssd 120gb / 4gb Mem\xc3\xb3ria / Wi-fi /win10"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1149 reais con 99 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.149</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">99</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1012 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.012</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">101 reais con 20 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">101</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">20</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Cpu Desktop Core I5 / Ssd 120gb / 4gb Mem\xc3\xb3ria / Wi-fi /win10</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2618802287" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2618802287"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://www.mercadolivre.com.br/disco-solido-interno-kingston-sa400s37480g-480gb-preto/p/MLB17978326?pdp_filters=category:MLB1648#searchVariation=MLB17978326&position=15&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Disco s\xc3\xb3lido interno Kingston SA400S37/480G 480GB preto"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_751939-MLA46221843872_052021-W.jpg" alt="Disco s\xc3\xb3lido interno Kingston SA400S37/480G 480GB preto"/></div></div></div></div></div></a></div><a href="https://www.mercadolivre.com.br/disco-solido-interno-kingston-sa400s37480g-480gb-preto/p/MLB17978326?pdp_filters=category:MLB1648#searchVariation=MLB17978326&position=15&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Disco s\xc3\xb3lido interno Kingston SA400S37/480G 480GB preto"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">273 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">273</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">26 reais con 47 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">26</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">47</span></span></span></div></div></span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Disco s\xc3\xb3lido interno Kingston SA400S37/480G 480GB preto</h2></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-half" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-half"></use></svg></span><span class="ui-search-reviews__amount">5776</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2044748327" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2044748327"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-1885917902-pc-computador-cpu-intel-core-i3-ssd-240gb-8gb-memoria-ram-_JM#position=49&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Pc Computador Cpu Intel Core I3 Ssd 240gb / 8gb Mem\xc3\xb3ria Ram"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_993555-MLB50683816791_072022-W.jpg" alt="Pc Computador Cpu Intel Core I3 Ssd 240gb / 8gb Mem\xc3\xb3ria Ram"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-1885917902-pc-computador-cpu-intel-core-i3-ssd-240gb-8gb-memoria-ram-_JM#position=49&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Pc Computador Cpu Intel Core I3 Ssd 240gb / 8gb Mem\xc3\xb3ria Ram"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1666 reais con 90 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.666</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">90</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1183 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.183</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">29% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">118 reais con 35 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">118</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">35</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Computador Cpu Intel Core I3 Ssd 240gb / 8gb Mem\xc3\xb3ria Ram</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1885917902" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1885917902"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-2222645583-computador-desktop-intel-core-i3-293-ghz-4gb-ssd-120gb-hdmi-_JM#position=50&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Computador Desktop Intel Core I3 2.93 Ghz 4gb Ssd 120gb Hdmi"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_998384-MLB49523568301_032022-W.jpg" alt="Computador Desktop Intel Core I3 2.93 Ghz 4gb Ssd 120gb Hdmi"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-2222645583-computador-desktop-intel-core-i3-293-ghz-4gb-ssd-120gb-hdmi-_JM#position=50&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Computador Desktop Intel Core I3 2.93 Ghz 4gb Ssd 120gb Hdmi"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">989 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">989</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">95 reais con 88 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">95</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">88</span></span></span></div></div></span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Desktop Intel Core I3 2.93 Ghz 4gb Ssd 120gb Hdmi</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2222645583" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2222645583"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-1615760527-cpu-pc-torre-core-i5-3470-320ghz-8gb-ssd-240gb-com-nf-_JM#position=51&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title=" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_601489-MLB42991126172_082020-W.jpg" alt=" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-1615760527-cpu-pc-torre-core-i5-3470-320ghz-8gb-ssd-240gb-com-nf-_JM#position=51&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title=" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1350 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.350</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1188 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.188</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">118 reais con 80 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">118</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">80</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Cr\xc3\xa9dito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element"> Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1615760527" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB1615760527"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-2025342637-computador-completo-facil-intel-core-i3-8gb-ssd-120gb-_JM#position=52&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Computador Completo F\xc3\xa1cil Intel Core I3 8gb Ssd 120gb "><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_627010-MLB47542956152_092021-W.jpg" alt="Computador Completo F\xc3\xa1cil Intel Core I3 8gb Ssd 120gb "/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-2025342637-computador-completo-facil-intel-core-i3-8gb-ssd-120gb-_JM#position=52&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Computador Completo F\xc3\xa1cil Intel Core I3 8gb Ssd 120gb "><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--deal_of_the_day" style="background:#3483FA"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#FFFFFF">OFERTA DO DIA</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1859 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.859</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1636 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.636</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">163 reais con 59 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">163</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">59</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label for="" class="ui-search-styled-label ui-search-item__highlight-label__text" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Cr\xc3\xa9dito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Completo F\xc3\xa1cil Intel Core I3 8gb Ssd 120gb </h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2025342637" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2025342637"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-2032160315-computador-pc-completo-i5-intel-8gb-ssd-240gb-wi-fi-nfe-_JM#position=53&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Computador Pc Completo I5 Intel 8gb Ssd 240gb Wi-fi + Nfe"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_631357-MLB48790718761_012022-W.jpg" alt="Computador Pc Completo I5 Intel 8gb Ssd 240gb Wi-fi + Nfe"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-2032160315-computador-pc-completo-i5-intel-8gb-ssd-240gb-wi-fi-nfe-_JM#position=53&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Computador Pc Completo I5 Intel 8gb Ssd 240gb Wi-fi + Nfe"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2390 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.390</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">2103 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.103</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">203 reais con 91 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">203</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">91</span></span></span></div></div></span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Pc Completo I5 Intel 8gb Ssd 240gb Wi-fi + Nfe</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2032160315" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2032160315"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://produto.mercadolivre.com.br/MLB-2625920831-pc-facil-intel-pentium-g6400-10-geraco-8gb-ddr4-ssd-240gb-_JM#position=54&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Pc F\xc3\xa1cil Intel Pentium G6400 10\xc2\xaa Gera\xc3\xa7\xc3\xa3o 8gb Ddr4 Ssd 240gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_969909-MLB49794162322_042022-W.jpg" alt="Pc F\xc3\xa1cil Intel Pentium G6400 10\xc2\xaa Gera\xc3\xa7\xc3\xa3o 8gb Ddr4 Ssd 240gb"/></div></div></div></div></div></a></div><a href="https://produto.mercadolivre.com.br/MLB-2625920831-pc-facil-intel-pentium-g6400-10-geraco-8gb-ddr4-ssd-240gb-_JM#position=54&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Pc F\xc3\xa1cil Intel Pentium G6400 10\xc2\xaa Gera\xc3\xa7\xc3\xa3o 8gb Ddr4 Ssd 240gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1749 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.749</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1539 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.539</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">153 reais con 91 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">153</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">91</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete gr\xc3\xa1tis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc F\xc3\xa1cil Intel Pentium G6400 10\xc2\xaa Gera\xc3\xa7\xc3\xa3o 8gb Ddr4 Ssd 240gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2625920831" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2625920831"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-air-pc222-prata-133-intel-celeron-n3350-4gb-de-ram-64gb-ssd-intel-hd-graphics-500-1920x1080px-windows-10-home/p/MLB15297208?pdp_filters=category:MLB1648#searchVariation=MLB15297208&position=16&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-link" title="Notebook Multilaser Legacy Air PC222 prata 13.3", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1920x1080px Windows 10 Home"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div role="presentation" class="slick-list"><div class="slick-track"><div data-index="0" class="slick-slide slick-active" tabindex="-1"><img width="284" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_985174-MLA40583676380_012020-W.jpg" alt="Notebook Multilaser Legacy Air PC222 prata 13.3", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1920x1080px Windows 10 Home"/></div></div></div></div></div></a></div><a href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-air-pc222-prata-133-intel-celeron-n3350-4gb-de-ram-64gb-ssd-intel-hd-graphics-500-1920x1080px-windows-10-home/p/MLB15297208?pdp_filters=category:MLB1648#searchVariation=MLB15297208&position=16&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" class="ui-search-result__content ui-search-link" title="Notebook Multilaser Legacy Air PC222 prata 13.3", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1920x1080px Windows 10 Home"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1573 reais con 90 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.573</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">90</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1495 reais</span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.495</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">5% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">149 reais con 49 centavos </span><span class="price-tag-amount" aria-hidden="true"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">149</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">49</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Notebook Multilaser Legacy Air PC222 prata 13.3", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1920x1080px Windows 10 Home</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por Loja MMPLACE</p></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 10 10" fill="#3483fa"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" width="100%" height="100%" viewBox="0 0 11 10"><use href="#start-empty"></use></svg></span><span class="ui-search-reviews__amount">132</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2685001475" class="ui-search-bookmark" method="POST"><button type="submit" class="ui-search-bookmark__btn" role="switch" aria-checked="false" aria-label="Favorito"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewBox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input type="hidden" name="logginUrl" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input type="hidden" name="_csrf" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input type="hidden" name="method" value="add"/><input type="hidden" name="itemId" value="MLB2685001475"/></form></div></div></div></li></ol><div style="display:contents"><div class="ui-search-listing-disclaimer ui-search-listing-disclaimer--grid"><div class="ui-search-listing-disclaimer__card ui-search-listing-disclaimer__card--grid"><div aria-hidden="true" aria-label="" class="andes-badge andes-badge--notification andes-badge--neutral ui-search-listing-disclaimer__icon andes-badge--small" hierarchy="loud"><svg class="andes-badge__icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g fill="none" fill-rule="evenodd"><g transform="matrix(1 0 0 -1 0 16)"><path d="M7.03 3.879h1.94l-.243 5.333H7.273z" class="andes-badge__icon-inner"></path><circle cx="8" cy="11.152" r="1" transform="matrix(1 0 0 -1 0 22.303)" class="andes-badge__icon-inner"></circle></g></g></svg></div><p class="ui-search-listing-disclaimer__text">O frete gr\xc3\xa1tis est\xc3\xa1 sujeito ao peso, pre\xc3\xa7o e dist\xc3\xa2ncia do envio.</p></div></div></div><div class="ui-search-pagination"><ul class="ui-search-pagination andes-pagination" role="navigation"><li class="andes-pagination__button andes-pagination__button--current"><span class="andes-pagination__link">1</span></li><li class="andes-pagination__page-count">de <!-- -->42</li><li class="andes-pagination__button andes-pagination__button--next"><a href="https://informatica.mercadolivre.com.br/computador_Desde_49_NoIndex_True" class="andes-pagination__link ui-search-link" title="Seguinte" role="button" rel="nofollow"><span class="andes-pagination__arrow-title">Seguinte</span><span class="andes-pagination__arrow"></span></a></li></ul></div><div style="display:contents"></div><div style="display:contents"></div><div style="display:contents"></div></section></div><div id="ui-search-bottom-ads__wrapper" class="ui-search-bottom-ads__wrapper"><div class="ui-search-bottom-ads__container"></div></div></div></main><input type="checkbox" id="nav-footer-access-switch" checked=""/><div class="nav-footer-access"><label for="nav-footer-access-switch">Mais informa\xc3\xa7\xc3\xb5es <i class="nav-icon-chevron-up"></i></label><div class="nav-footer-access-content"><div class="nav-bounds"><div class="nav-footer-access-col"><h5 class="nav-footer-access-title">Sobre o</h5><ul><li><a href="https://www.mercadolivre.com.br/institucional">Mercado Livre</a></li><li><a href="https://investor.mercadolibre.com">Investor relations</a></li><li><a href="https://tendencias.mercadolivre.com.br">Tend\xc3\xaancias</a></li><li><a href="https://sustentabilidadmercadolibre.com/pt">Sustentabilidade</a></li></ul></div><div class="nav-footer-access-col"><h5 class="nav-footer-access-title">Outros sites</h5><ul><li><a href="https://developers.mercadolibre.com">Desenvolvedores</a></li><li><a href="https://www.mercadopago.com.br">Mercado Pago</a></li><li><a href="https://envios.mercadolivre.com.br">Mercado Envios</a></li><li><a href="https://www.mercadoshops.com.br">Mercado Shops</a></li><li><a href="https://ads.mercadolivre.com.br">Mercado Ads</a></li><li><a href="https://ideias.mercadolivre.com.br/">Mercado Livre Ideias</a></li></ul></div><div class="nav-footer-access-col"><h5 class="nav-footer-access-title">Contato</h5><ul><li><a href="https://www.mercadolivre.com.br/ajuda/Compras_638">Comprar</a></li><li><a href="https://www.mercadolivre.com.br/ajuda/Vender-un-producto_988">Vender</a></li><li><a href="https://www.mercadolivre.com.br/ajuda">Solu\xc3\xa7\xc3\xa3o de problemas</a></li><li><a href="https://www.mercadolivre.com.br/ajuda/seguranca_663">Seguran\xc3\xa7a</a></li></ul></div><div class="nav-footer-access-col"><h5 class="nav-footer-access-title">Redes sociais</h5><ul><li><a href="https://twitter.com/MercadoLivre">Twitter</a></li><li><a href="https://www.facebook.com/MercadoLivre">Facebook</a></li><li><a href="https://www.instagram.com/mercadolivre">Instagram</a></li><li><a href="https://www.youtube.com/user/mercadolivreoficial">YouTube</a></li></ul></div><div class="nav-footer-access-col"><h5 class="nav-footer-access-title">Minha conta</h5><ul><li><a href="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit">Entre</a></li><li><a href="https://www.mercadolivre.com.br/anuncie">Vender</a></li></ul></div><div class="nav-footer-access-col"><h5 class="nav-footer-access-title">Mercado Pontos</h5><ul><li><a href="https://www.mercadolivre.com.br/assinaturas/nivel-6#origin=footer_ml">Nivel 6</a></li><li><a href="https://www.mercadolivre.com.br/assinaturas/nivel-6#origin=footer_ml">Disney+</a></li><li><a href="https://www.mercadolivre.com.br/assinaturas/nivel-6#origin=footer_ml">Star+</a></li><li><a href="https://www.mercadolivre.com.br/assinaturas/hbo#origin=footer_ml">HBO MAX</a></li><li><a href="https://www.mercadolivre.com.br/assinaturas/paramount#origin=footer_ml">Paramount+</a></li><li><a href="https://www.mercadolivre.com.br/assinaturas/deezer#origin=footer_ml">Deezer</a></li></ul></div></div></div></div><footer role="contentinfo" class="nav-footer"><div class="nav-footer-user-info nav-bounds"><div class="nav-footer-info-wrapper"><div class="nav-footer-primaryinfo"><small class="nav-footer-copyright">Copyright \xc2\xa9\xc2\xa01999-2022 Ebazar.com.br LTDA.</small><nav class="nav-footer-navigation"><a href="https://careers-meli.mercadolibre.com/pt?utm_campaign=site-mlb&utm_source=mercadolibre&utm_medium=mercadolibre">Trabalhe conosco</a><a href="https://www.mercadolivre.com.br/ajuda/Termos-e-condicoes-gerais-de-uso_1409">Termos e condi\xc3\xa7\xc3\xb5es</a><a href="https://www.mercadolivre.com.br/privacidade">Como cuidamos da sua privacidade</a><a href="https://www.mercadolivre.com.br/acessibilidade">Acessibilidade</a><a href="https://www.mercadolivre.com.br/ajuda">Contato</a><a href="https://www.mercadolivre.com.br/ajuda/23303">Informa\xc3\xa7\xc3\xb5es sobre seguros</a></nav></div><p class="nav-footer-secondaryinfo">CNPJ n.\xc2\xba 03.007.331/0001-41 / Av. das Na\xc3\xa7\xc3\xb5es Unidas, n\xc2\xba 3.003, Bonfim, Osasco/SP - CEP 06233-903 - empresa do grupo Mercado Livre.</p></div><div class="nav-footer-downloadapp-wrapper"><a class="nav-footer-downloadapp" target="_blank" id="footer-applink" href="https://www.mercadolivre.com.br/l/app"><i class="nav-icon nav-icon-downloadapp"></i><span>Baixe gr\xc3\xa1tis o app do Mercado Livre!</span></a></div></div><a class="nav-footer-hp" href="https://hp.mercadolibre.com/?p=ML&s=MLB&d=desktop">Mercado Livre</a></footer><div><div role="region" class="cookie-consent-banner-opt-out"><div class="cookie-consent-banner-opt-out__message-container"><h2 data-testid="text:header-text" class="cookie-consent-banner-opt-out__header">Este site usa cookies</h2><p data-testid="text:main-text" class="cookie-consent-banner-opt-out__message">Ao navegar no nosso site voc\xc3\xaa aceita o uso de cookies para <a rel="noopener noreferrer nofollow" target="_blank" data-testid="link:more-info" href="https://www.mercadolivre.com.br/privacidade#tech-and-cookies" class="cookie-consent-banner-opt-out__more-info">personalizar sua experi\xc3\xaancia</a> de acordo com a Declara\xc3\xa7\xc3\xa3o de Privacidade.</p></div><div class="cookie-consent-banner-opt-out__actions"><button type="button" data-testid="action:understood-button" class="cookie-consent-banner-opt-out__action cookie-consent-banner-opt-out__action--primary cookie-consent-banner-opt-out__action--key-accept">Entendi</button><button type="button" data-testid="action:customize-button" class="cookie-consent-banner-opt-out__action cookie-consent-banner-opt-out__action--key-customize">Configurar cookies</button></div></div><div id="js-modal-cookie-consent-banner-opt-out" class="cookie-consent-banner-opt-out__modal" aria-label="Prefer\xc3\xaancias de cookies" aria-hidden="true"><div class="cookie-consent-banner-opt-out__modal-overlay" data-a11y-dialog-hide="js-modal-cookie-consent-banner-opt-out"></div><div class="cookie-consent-banner-opt-out__modal-wrapper"></div></div><div role="region" class="cookie-consent-snackbar cookie-consent-snackbar--hidden cookie-consent-snackbar--collapsed cookie-consent-snackbar--success"><div class="cookie-consent-snackbar__content"><div class="cookie-consent-snackbar__message">Pronto! Suas prefer\xc3\xaancias foram salvas.</div><button class="cookie-consent-snackbar__close">Fechar</button></div></div><div role="region" class="cookie-consent-snackbar cookie-consent-snackbar--hidden cookie-consent-snackbar--collapsed cookie-consent-snackbar--error"><div class="cookie-consent-snackbar__content"><div class="cookie-consent-snackbar__message">Ocorreu um erro. Por favor, tente novamente.</div><button class="cookie-consent-snackbar__close">Fechar</button></div></div></div><script >\n(function(w, r) {\n w[r] = w[r] || function() {\n (w[r].q = w[r].q || []).push(arguments)\n }\n})(window,\'melidata\');\n(function(d,u) {\n if (!document.getElementById("MelidataIframe")) {\n var i = d.createElement(\'iframe\');\n (i.frameElement || i).style.cssText = "width: 0; height: 0; border: 0; position: absolute";\n i.src = "about:srcdoc";\n i.srcdoc="\\<script\\ src=\'" + u + "\'>\\</script\\>";\n i.id = "MelidataIframe";\n var t = d.getElementsByTagName(\'script\')[0];\n t.parentNode.insertBefore(i, t);\n var doc = i.contentWindow.document;\n var script = doc.createElement(\'script\');\n script.type = \'text/javascript\';\n script.text =\'window.inDapIF = true;\';\n doc.documentElement.appendChild(script);\n } else {\n // This page is charged async via AJAX and inserted into another one who has\n // already download melidata js lib => Just clean the track\n melidata("clean");\n }\n})(document,\'https://http2.mlstatic.com/storage/melidata-js-sdk/js/3/0.3.27/melidata.min.js\');\n\nmelidata("add", "id", "048d3d1b-7d76-43c9-bd22-ff3035a6235f");\nmelidata("add", "server_id", "048d3d1b-7d76-43c9-bd22-ff3035a6235f" );\nmelidata("add", "application", {"version":"1.130.1-hotfix-1","server_hostname":"","server_poolname":"","app_name":"","sdk_version":{"node_version":"4.1.2"},"business":"mercadolibre","site_id":"MLB","secured":{"encrypted":"eb91edb59193fe28e5410d592fe02c4e:014c2d5b9e164816e8076c1d102a4bfe2d2bb3469575ae6c3b5f2533f90d50ebf5ee6bc201014b074e495e5c80e477399216f839af83b457cbebd2c7063d78ffd2110e5541ea01b1b2a30d389ac723a28322c037168792fb0825b23f611e641296b1310d97b0dfd14cfc014410a6e19d9c70ff557a1d8fb98c8b9b57a43699c588b9db5b97498270b3","signature":"eyJhbGciOiJIUzI1NiJ9.eyJ1aWQiOiI1M2ZkMWIxNC03ODdjLTQ4Y2MtYjcxNi1hYjVlOWExYWE3YjUiLCJzaXRlX2lkIjoiTUxCIiwicGxhdGZvcm0iOiIvd2ViL2Rlc2t0b3AifQ.276NMg495qi_QInduW1MMwmkolanrS67tx7DCmfXhs8"}});\nmelidata("add", "user", {"uid":"53fd1b14-787c-48cc-b716-ab5e9a1aa7b5","user_tags":[]});\nmelidata("add", "device", {"platform":"/web/desktop","user_agent":"python-requests/2.22.0"});\nmelidata("add", "platform", {"http":{"cookies":{},"headers":{"host":"lista.mercadolivre.com.br","x-d2id":"53fd1b14-787c-48cc-b716-ab5e9a1aa7b5","x-device-js":"true","x-platform":"ml"},"http_url":"http://lista.mercadolivre.com.br/computador"}});\nmelidata("add", "experiments", {"mclics/grid-layout":"12899","search/new-search-api":"8650","mclics/show-pads-search-list":"5146","mclics/pseudo-search-buybox-query":"9461","mclics/show-pads-global":"5176","mclics/pseudo-search-pads-buybox":"7708","frontend/assetsCdnDomainMLB":"DEFAULT","frontend/assetsCdnDomainMLU":"DEFAULT"});\nmelidata("add", "experiments_timestamp", "null");\nmelidata("add", "event_data", {"query":"computador","limit":50,"offset":0,"total":547937,"category_id":"MLB1648","domain":"MLB-COMPUTER_EQUIPMENT_AND_SPARE_PARTS","category_path":["MLB1648"],"sort_id":"relevance","filters":{"category":"MLB1648"},"available_filters":{},"displayed_filters":[{"id":"shipping_highlighted_fulfillment","name":"Tipo de envio","type":"highlighted","position":1,"values_quantity":1},{"id":"shipping_cost_highlighted","name":"Custo do frete","type":"highlighted","position":2,"values_quantity":1},{"id":"SHIPPING_ORIGIN_HIGHLIGHTED","name":"Origem do frete","type":"highlighted","position":3,"values_quantity":1},{"id":"category","name":"Categorias","type":"text","position":4,"values_quantity":14},{"id":"PROCESSOR_TYPE","name":"Processador","type":"STRING","position":5,"values_quantity":25},{"id":"shipping","name":"Tipo de envio","type":"text","position":6,"values_quantity":1},{"id":"RAM_SIZE","name":"RAM","type":"range","position":7,"values_quantity":5},{"id":"ITEM_CONDITION","name":"Condi\xc3\xa7\xc3\xa3o","type":"STRING","position":8,"values_quantity":3},{"id":"WITH_MONITOR","name":"Monitor","type":"boolean","position":9,"values_quantity":2},{"id":"shipping_cost","name":"Custo do frete","type":"text","position":10,"values_quantity":1},{"id":"price","name":"Pre\xc3\xa7o","type":"range","position":11,"values_quantity":3},{"id":"OPERATIVE_SYSTEM","name":"Sistema operativo","type":"STRING","position":12,"values_quantity":7},{"id":"state","name":"Localiza\xc3\xa7\xc3\xa3o","type":"text","position":13,"values_quantity":17},{"id":"HDD_SIZE","name":"Disco r\xc3\xadgido","type":"range","position":14,"values_quantity":4},{"id":"DISPLAY_SIZE","name":"Tamanho da tela","type":"range","position":15,"values_quantity":4},{"id":"BRAND","name":"Marca","type":"STRING","position":16,"values_quantity":192},{"id":"SHIPPING_ORIGIN","name":"Origem do frete","type":"STRING","position":17,"values_quantity":2},{"id":"official_store","name":"Lojas oficiais","type":"text","position":18,"values_quantity":1},{"id":"installments","name":"Pagamento","type":"text","position":19,"values_quantity":1},{"id":"discount","name":"Descontos","type":"numeric","position":20,"values_quantity":7},{"id":"promotion_type","name":"Tipo de promo\xc3\xa7\xc3\xa3o","type":"text","position":21,"values_quantity":1},{"id":"IS_GAMER","name":"Outras caracter\xc3\xadsticas","type":"boolean","position":22,"values_quantity":0},{"id":"power_seller","name":"Filtro MercadoL\xc3\xadderes","type":"refine_by","position":23,"values_quantity":1}],"autoselected_filters":["category"],"view_mode":"GRID","results":["MLB1983288877","MLB1930876153","MLB1937079157","MLB1607748387","MLB1983278713","MLB2131342947","MLB2025368730","MLB1937076326","MLB2081933352","MLB2114151338","MLB1983288732","MLB2603247328","MLB1983288643","MLB2614218974","MLB1983278831","MLB2696339147","MLB1663773541","MLB1837442511","MLB1983279452","MLB2669020387","MLB2610554493","MLB2199976353","MLB1986322829","MLB1680063928","MLB1899027328","MLB1506134141","MLB1983288676","MLB1983279518","MLB2022879801","MLB2096063553","MLB2103940157","MLB2724080796","MLB1983296789","MLB2618767197","MLB2145104504","MLB2626699161","MLB1983286920","MLB1983288815","MLB1786478708","MLB2618802287","MLB2044748327","MLB1885917902","MLB2222645583","MLB1615760527","MLB2025342637","MLB2032160315","MLB2625920831","MLB2685001475"],"billboards":[],"pads_info":{"vertical":"CORE","blocks_strategy":"P11P12","ids":["MLB2153875378","MLB1669162236","MLB2610297318","MLB2210259535","MLB2161556728","MLB1983287147"],"item_ids":["MLB2153875378","MLB1669162236","MLB2610297318","MLB2210259535","MLB2161556728","MLB1983287147"],"discarded_ids":["MLB2648112718","MLB1539097035","MLB2610318517","MLB1666513223","MLB2610291368","MLB1736173494","MLB1983492060","MLB1911268639","MLB2130219063","MLB2104599245","MLB1960923234","MLB2657810063","MLB2611561822","MLB1946622365","MLB2641021752","MLB2220510769","MLB1559647663","MLB1734778447","MLB1882031499","MLB2094487168","MLB1763722828","MLB2700169586","MLB2022879801","MLB2087413462","MLB1867159797","MLB2181336339","MLB2649428704","MLB2649506643"],"printed_ads_prices":[2987.1,3865.91,1376.83,3122.1,229.9,2366.1],"discarded_ads_prices":[1709.1,1376.99,1274.34,64.9,1446.8,19.99,1890.99,1529.1,3644.1,2799.99,168.9,2872,29.9,1466.99,1459,1591.58,1394.99,27.94,57.9,54.89,22.69,2589,3105.52,24.49,29.79,2969.1,100.83,128.54],"results_avg_ads_asp":1405.83,"results_avg_printed_ads_asp":2324.65,"results_avg_discarded_ads_asp":1208.94,"results_avg_items_asp":1363.93,"printed_positions":[10,11,21,22,34,35],"original_positions":[10,11,21,22,34,35],"empty_positions":[],"suggested_positions":[712,451,915,379,529,543,536,439,442,505,368,714,757,557,115,136,626,463,834,251,868,292,243,801,477,767,933,222,28,237,847,98,100,71],"original_suggested_positions":[712,451,915,379,529,543,536,439,442,505,368,714,757,557,115,136,626,463,834,251,868,292,243,801,477,767,933,222,28,237,847,98,100,71],"discarded_original_suggested_positions":[536,439,442,505,368,714,757,557,115,136,626,463,834,251,868,292,243,801,477,767,933,222,28,237,847,98,100,71],"printed_original_suggested_positions":[712,451,915,379,529,543],"blocks_sizes":[],"printed_positions_size":6,"domain":"VQCATCORE_LST","strategy":"DPCTRAVG_P11P12_BB_ITEM_BIDBSMULT","is_api_migrated":false},"catalog_product_id":"","backend_data":{"request_flow":{"origin":"backend"}},"promise_items":{"nextday":[],"sameday":[]},"official_stores_carousel_shown":[],"user_zone":"","pdp_rows":[{"item_id":"MLB1930876153","product_id":"MLB16263913"},{"item_id":"MLB2131342947","product_id":"MLB18624590"},{"item_id":"MLB2081933352","product_id":"MLB18366754"},{"item_id":"MLB2114151338","product_id":"MLB18621000"},{"item_id":"MLB2603247328","product_id":"MLB18632909"},{"item_id":"MLB2614218974","product_id":"MLB19035706"},{"item_id":"MLB2696339147","product_id":"MLB19158523"},{"item_id":"MLB2610554493","product_id":"MLB6189662"},{"item_id":"MLB2199976353","product_id":"MLB18941410"},{"item_id":"MLB2103940157","product_id":"MLB17739841"},{"item_id":"MLB2724080796","product_id":"MLB17966310"},{"item_id":"MLB2145104504","product_id":"MLB18459542"},{"item_id":"MLB2044748327","product_id":"MLB17978326"},{"item_id":"MLB2685001475","product_id":"MLB15297208"}],"carousel_filters":[],"show_supermarket_carousel":false,"tracking_id":"fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pdp_grouped_search":false,"highlights_info":{"best_seller_info":{"candidates":22,"selected":["MLB2614218974"]},"meli_choice_info":{"candidates":4,"selected":[{"item_id":"MLB1930876153","product_id":"MLB16263913","origin":"killer_matched"},{"item_id":"MLB2131342947","product_id":"MLB18624590","origin":"killer_matched"}],"overrides":[]}},"tag_tracking_info":{"crypto_cashback":[],"best_seller":[{"type":"best_seller","item_id":"MLB2614218974","product_id":"MLB19035706","position":14}],"highlights":[],"lightning_deal":[],"shipping_guaranteed":[],"deal_of_the_day":[{"type":"deal_of_the_day","item_id":"MLB1983288877","position":1},{"type":"deal_of_the_day","item_id":"MLB1983278713","position":5},{"type":"deal_of_the_day","item_id":"MLB2025368730","position":7},{"type":"deal_of_the_day","item_id":"MLB2114151338","product_id":"MLB18621000","position":10},{"type":"deal_of_the_day","item_id":"MLB1983288732","position":11},{"type":"deal_of_the_day","item_id":"MLB1983288643","position":13},{"type":"deal_of_the_day","item_id":"MLB1983288676","position":27},{"type":"deal_of_the_day","item_id":"MLB1983296789","position":33},{"type":"deal_of_the_day","item_id":"MLB1983286920","position":37},{"type":"deal_of_the_day","item_id":"MLB1983288815","position":38},{"type":"deal_of_the_day","item_id":"MLB2025342637","position":45}],"discount_volume":[],"meli_choice":[{"type":"meli_choice","item_id":"MLB1930876153","product_id":"MLB16263913","position":2},{"type":"meli_choice","item_id":"MLB2131342947","product_id":"MLB18624590","position":6}],"next_day":[],"same_day":[],"supermarket_partnership":[]},"pdp_info":[{"id":"MLB16263913","score":1,"status":"shown"},{"id":"MLB18624590","score":1,"status":"shown"},{"id":"MLB18366754","score":1,"status":"shown"},{"id":"MLB18621000","score":1,"status":"shown"},{"id":"MLB18632909","score":1,"status":"shown"},{"id":"MLB19035706","score":1,"status":"shown"},{"id":"MLB19158523","score":1,"status":"shown"},{"id":"MLB6189662","score":1,"status":"shown"},{"id":"MLB18941410","score":1,"status":"shown"},{"id":"MLB17739841","score":1,"status":"shown"},{"id":"MLB17966310","score":1,"status":"shown"},{"id":"MLB18459542","score":1,"status":"shown"},{"id":"MLB17978326","score":1,"status":"shown"},{"id":"MLB15297208","score":1,"status":"shown"}],"location_info":{},"interventions":[],"containers_flow":"N/A","banner":{"exhibitor_id":"TSB_MELHOR_DO_ELETRO","permalink":"https://lista.mercadolivre.com.br/_Deal_entrefechas?utm_source=TSB+ACHADOS+DA+SEMANA&utm_medium=TSB+ACHADOS+DA+SEMANA&utm_id=TSB+ACHADOS+DA+SEMANA#DEAL_ID=MLB10205&S=MKT&V=1&T=TSB&L=MKT_T1_ENTRE_FECHAS_ACHADOS"},"related_searches_info":{"quantity":5,"related_queries":["i3 9100f","king koil triathlon queen","celular samsung a11","computador wi fi","computadores novos"]},"canonical":{"url":"https://lista.mercadolivre.com.br/computador","no_follow_tag":false},"landing":"base","layout_forced":false,"shown_as_product":[],"geo_search":false,"is_googlebot":false,"seo":{"allowlist":{"seo_is_allowlisted":true,"seo_apply_no_index":true,"search_no_index_applied":false,"results_by_strategy":{"query_and_category_strategy":true,"sanitized_query_and_category_strategy":true,"exact_query_strategy":true}},"seo_experiments":{"status":"success","experiment_list":[{"id":"ironman","is_enabled":false,"is_active":false,"should_apply":false,"group":"Control","executed_successfully":true},{"id":"black widow","is_enabled":false,"is_active":false,"should_apply":false,"group":"Control","executed_successfully":true},{"id":"spiderman","is_enabled":false,"is_active":false,"should_apply":false,"group":"Control","executed_successfully":true},{"id":"green arrow","is_enabled":false,"is_active":false,"should_apply":false,"group":"Control","executed_successfully":true}]}},"pdp_highlight_enabled":false,"user_profile_type":"BUYER","top_keywords":[{"key":"intel core i5 8 geracao","type":"SEARCH"},{"key":"montar pc pichau","type":"SEARCH"},{"key":"hackintosh","type":"SEARCH"},{"key":"impressora portatil a4","type":"SEARCH"},{"key":"notebook com impressora","type":"SEARCH"},{"key":"tablet windows","type":"SEARCH"},{"key":"computador barato","type":"SEARCH"}]});\nmelidata("send", "view", {\n path: "/search",\n data: {}\n}, "melidata");</script>\n<script>\n(function(win, doc){\n function loadScripts (s) {\n if (!s || !s.length) return;\n s = s.slice(0);\n var h = doc.head || doc.getElementsByTagName(\'head\')[0];\n var cbStack = {}; var cbChild = {};\n\n for (var i = 0; i < s.length; i++) {\n var c = s[i];\n var t = doc.createElement(\'script\');\n\n if (typeof c.s === \'function\') {\n t.textContent = \'(\' + c.s + \').apply(window);\';\n } else {\n t.async = false;\n t.defer = true;\n t.crossOrigin = \'anonymous\';\n if (c.id) t.id = c.id;\n\n if (c.s) t.src = c.s;\n var x = t.src;\n cbStack[x] = [];\n while(s[i+1] && typeof s[i+1].s === \'function\') {\n cbStack[x].push(s[i+1].s);\n i++;\n }\n if (typeof c.c === \'function\') { \n cbChild[x] = c.c \n } else if (c.c) {\n t.textContent = c.c;\n }\n t.onerror = function(err) {\n cbStack[err.target.src] && cbStack[err.target.src].forEach(function(cb){ (cb).apply(window) });\n\n var perfillNamespace = \'_pfl\';\n (window[perfillNamespace] = window[perfillNamespace] || []).push([\'script\', err.target.src])\n\n if (typeof meli_ga !== \'undefined\') {\n meli_ga(\'send\', {\n hitType: \'event\',\n eventCategory: \'FRONTEND-ERROR\',\n eventAction: \'SCRIPT-LOAD-ERROR\',\n eventLabel: err.target.src,\n nonInteraction: true,\n });\n }\n }\n t.onload = function(e) {\n cbChild[e.target.src] && (cbChild[e.target.src]).apply(window);\n cbStack[e.target.src] && cbStack[e.target.src].forEach(function(cb){ (cb).apply(window) });\n }\n }\n h.appendChild(t);\n }\n }\n loadScripts([{s:function(){window.__NAVIGATION_PRELOADED_STATE__ = {"application":"search-nordic","siteId":"MLB","domain":"mercadolivre.com.br"};}},{s:function(){"use strict";function track(a){if(a.analytics&&"undefined"!=typeof meli_ga&&meli_ga("send",{hitType:a.analytics.hitType,eventCategory:a.analytics.category,eventAction:a.analytics.action,eventLabel:a.analytics.label}),a.melidata&&"undefined"!=typeof melidata){var b=a.melidata.data;melidata("cleanAndSend",a.melidata.type,{path:a.melidata.path,data:b})}}function navigationEventTracking(a,b,c){var d=document.querySelector(a);d&&d.addEventListener(b,function(){track(c)})}window.__navigation_tracking__=navigationEventTracking,window.__navigation_track__=track;}},{s:function(){"use strict";(function(){window.__navigation_tracking__("#nav-skip-to-main-content","click",{analytics:{category:"SKIP_TO_MAIN_CONTENT",action:"NAVIGATION",label:window.__NAVIGATION_PRELOADED_STATE__.application,hitType:"event"},melidata:{path:"/navigation/skip-to-main-content",type:"event",data:{app:window.__NAVIGATION_PRELOADED_STATE__.application}}})})();}},{s:function(){"use strict";(function(){window.__navigation_tracking__("#nav-header-menu-download-mobile","click",{analytics:{category:"MOBILE-APP-".concat(window.__NAVIGATION_PRELOADED_STATE__.os),action:"DOWNLOAD-MENU",label:window.__NAVIGATION_PRELOADED_STATE__.application,hitType:"event"}})})();}},{s:function(){"use strict";(function(){window.__navigation_tracking__("[data-js=cp]","click",{analytics:{category:"CURRENT_LOCATION",action:"NAVIGATION",label:window.__NAVIGATION_PRELOADED_STATE__.application,hitType:"event"},melidata:{path:"/current_location/navigation/pick",data:{app:window.__NAVIGATION_PRELOADED_STATE__.application},type:"event"}})})();}},{s:function(){(function() {\n var defaults = {\n imageLoadClassName: \'lazy-loadable\', // \'lazy-loadable\' || \'onload-loadable\'\n options: {\n rootMargin: \'360px\',\n loadMode: \'lazy\' // \'lazy\' || \'onload\'\n }\n };\n var dataSrcKey = \'data-src\';\n var dataSrcFallbackKey = \'data-src-fallback\';\n var dataSrcSetKey = \'data-srcset\';\n\n // IntersectionObserver has partial support in chrome <= 57 (https://caniuse.com/#feat=intersectionobserver)\n var supportIntersectionObserver = \'IntersectionObserver\' in window && \'IntersectionObserverEntry\' in window && \'isIntersecting\' in window.IntersectionObserverEntry.prototype;\n\n function mergeOptions(target, source) {\n var list = [target, source];\n var cloned = {};\n\n for (var i = 0; i <= list.length; i++) {\n if (typeof list[i] === \'object\' && list[i]) {\n for (var prop in list[i]) {\n cloned[prop] = list[i][prop];\n }\n }\n }\n return cloned;\n }\n\n function imageLazyLoading(imageLoadClassName, options) {\n if (!imageLoadClassName && options && options.loadMode === \'onload\') {\n imageLoadClassName = \'onload-loadable\';\n }\n imageLoadClassName = imageLoadClassName || defaults.imageLoadClassName;\n\n options = mergeOptions(defaults.options, options);\n\n var lazyImages = [].slice.call(document.querySelectorAll(\'.\' + imageLoadClassName));\n\n function loadImages(img) {\n function setSource(attr, srcKey, srcFallbackKey) {\n if (img.hasAttribute(srcKey)) {\n var dataSrc = img.getAttribute(srcKey);\n if (srcFallbackKey && img.hasAttribute(srcFallbackKey)) {\n var dataSrcFallback = img.getAttribute(srcFallbackKey);\n img.onload = function() {\n img.removeAttribute(srcFallbackKey);\n }\n img.onerror = function() {\n this.src = dataSrcFallback;\n this.srcset = dataSrcFallback;\n img.removeAttribute(srcFallbackKey);\n img.onerror = null;\n };\n }\n img.setAttribute(attr, dataSrc);\n img.removeAttribute(srcKey);\n }\n }\n\n setSource(\'src\', dataSrcKey, dataSrcFallbackKey);\n setSource(\'srcset\', dataSrcSetKey);\n\n img.classList.remove(imageLoadClassName);\n\n if (img.classList.length < 1) {\n img.removeAttribute(\'class\');\n }\n }\n\n function loadAllImages() {\n lazyImages.forEach(function(image) {\n loadImages(image);\n });\n }\n\n if (supportIntersectionObserver && options.loadMode === \'lazy\') {\n var lazyImageObserver = new IntersectionObserver(function(entries, observer) {\n entries.forEach(function(entry) {\n if (entry.isIntersecting) {\n var lazyImage = entry.target;\n loadImages(lazyImage);\n lazyImageObserver.unobserve(lazyImage);\n }\n });\n }, options);\n\n lazyImages.forEach(function(lazyImage) {\n lazyImageObserver.observe(lazyImage);\n });\n\n window.lazyImageObserver = lazyImageObserver;\n\n } else if ((!supportIntersectionObserver && options.loadMode === \'lazy\') || options.loadMode === \'onload\') {\n if (document.readyState === \'complete\') {\n loadAllImages();\n } else {\n window.addEventListener(\'load\', function() {\n loadAllImages();\n });\n }\n }\n }\n\n function initLazyLoading() {\n imageLazyLoading();\n imageLazyLoading(\'onload-loadable\', { loadMode: \'onload\' });\n }\n\n window.imageLazyLoading = imageLazyLoading;\n initLazyLoading();\n}());\n}}]);\n var scripts = [{s:function(){(function(){/*! For license information please see cookie-consent-banner.js.LICENSE */\nvar ccb=function(e){var t={};function n(o){if(t[o])return t[o].exports;var i=t[o]={i:o,l:!1,exports:{}};return e[o].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(o,i,function(t){return e[t]}.bind(null,i));return o},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){function o(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,o)}return n}function i(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?o(Object(n),!0).forEach((function(t){r(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):o(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var a=n(2),s=n(3).bannerOptOutModalEvents;e.exports=function(e,t,n,o,r,c){var d=arguments.length>6&&void 0!==arguments[6]?arguments[6]:"cookie-consent-banner-opt-out",l=arguments.length>7?arguments[7]:void 0,u=arguments.length>8?arguments[8]:void 0,f=d,h="cookie-consent-snackbar--success",p="cookie-consent-snackbar--error",v="cookies-banner-top-content",m=function(t,n){var o=(n||e).getElementsByClassName(t);if(0===o.length)throw new Error("No element with class ".concat(t," is present"));if(1!==o.length)throw new Error("More than one element with class ".concat(t," is present"));return o[0]},y=function(e){return e.parentNode.removeChild(e)},b=function(){try{return m(v,m(f))}catch(e){return null}},w=function(){return window.onCookieConsentBannerClosed&&window.onCookieConsentBannerClosed()},g=function(e){e.classList.add("cookie-consent-snackbar--collapsed"),setTimeout((function(){y(e),w()}),400)},_=function(){var e=m(h),t=m(p);y(e),y(t)},E=function(e){var t=e.toShow,n=e.toHide,o=e.topContentContainer,i=e.hideTimeoutInMs,r=m(n);y(r);var a=m(t);o&&a.appendChild(o),a.classList.remove("cookie-consent-snackbar--hidden"),setTimeout((function(){return a.classList.remove("cookie-consent-snackbar--collapsed")}));var s=null;i>0&&(s=setTimeout((function(){g(a)}),i)),m("cookie-consent-snackbar__close",a).addEventListener("click",(function(){clearTimeout(s),g(a)}))},S=function(e){var t=(u||{}).successSnackbar||{},n=t.canShow,o=t.hideTimeoutInMs,i=void 0===o?0:o;if(!1===n)return _(),void w();E({toShow:h,toHide:p,topContentContainer:e,hideTimeoutInMs:i})},k=function(e){var t=(u||{}).errorSnackbar||{},n=t.canShow,o=t.hideTimeoutInMs,i=void 0===o?0:o;if(!1===n)return _(),void w();E({toShow:p,toHide:h,topContentContainer:e,hideTimeoutInMs:i})},C=function(n){var o=n.cookieData,r=n.responsePreferences,a={categories:i(i({},t),r)};o.userId&&(a.userId=o.userId);var s=o.cookieName,c=o.maxAge,d=o.path,l=o.domain,u=o.secure,f=o.sameSite,h=["".concat(s,"=").concat(encodeURIComponent(JSON.stringify(a))),"domain=".concat(l),"path=".concat(d)].concat(c?"max-age=".concat(c):[]).concat(f?"samesite=".concat(f):[]).concat(u?"secure":[]).join("; ");e.cookie=h},O=function(e){var t=e.responsePreferences,n=e.topContainer;try{o&&o.length>0&&o.forEach((function(e){return e&&C({cookieData:e,responsePreferences:t})}))}catch(e){k(n)}S(n)},L=function(e){if(!n)return O({responsePreferences:null,topContainer:e}),void a(t);try{var o=new window.XMLHttpRequest;o.open("PUT",n.url,!0),o.setRequestHeader("Content-type","application/json;charset=UTF-8"),o.withCredentials=!0,o.onreadystatechange=function(){if(4===o.readyState)if(200===o.status){var n;try{n=JSON.parse(o.responseText).cookies_preferences}catch(e){n=null}O({responsePreferences:n,topContainer:e}),a(i(i({},t),n))}else k(e)},o.send(JSON.stringify(i(i({},n.payload),{},{cookies_preferences:t})))}catch(t){k(e)}},x=m("".concat(f,"__action--key-accept")),P=m("".concat(f,"__action--key-customize")),M=function(e,t){"undefined"!=typeof melidata&&melidata("cleanAndSend",e,t)};x.addEventListener("click",(function(){var e=b();try{L(e),M("event",{path:"/navigation/cookies_consent/accept_all",event_data:{consent_type:r}}),y(m(f))}catch(t){k(e)}})),P.addEventListener("click",(function(){M("event",{path:"/navigation/cookies_consent/personalize",event_data:{consent_type:r}})})),c.closeElements.forEach((function(e){m(e.className).addEventListener("click",(function(t){(e.handleChildren||t.currentTarget===t.target)&&(M("event",{path:"/navigation/cookies_consent/close",event_data:{consent_type:r}}),y(m(f)),y(m(h)),y(m(p)))}))})),s({containerClassName:f,modalParams:l,namespace:d,getOne:m,getTopContainer:b,removeElement:y,sendMelidataTrack:M,showErrorMessage:k,showSuccessMessage:S}),M("event",{path:"/navigation/cookies_consent/show",event_data:{consent_type:r}})}},function(e,t){e.exports=function(e){try{var t=new(function(){if("function"==typeof window.CustomEvent)return window.CustomEvent;return function(e,t){var n=document.createEvent("CustomEvent");return n.initCustomEvent(e,!1,!1,t.detail),n}}())("cookiesConsentChange",{detail:e});document.dispatchEvent(t)}catch(e){}}},function(e,t,n){var o=n(4),i=o.embedModeEvents,r=o.embedModeStatus,a=n(5),s=a.disableBodyScroll,c=a.enableBodyScroll,d=n(6);e.exports={bannerOptOutModalEvents:function(e){var t=e.containerClassName,n=e.modalParams,o=e.namespace,a=e.getOne,l=e.getTopContainer,u=e.removeElement,f=e.sendMelidataTrack,h=e.showErrorMessage,p=e.showSuccessMessage;if("cookie-consent-banner-opt-out"===o&&n){var v=!0,m=document.getElementById(n.id),y=new d(m),b=function(){a("".concat(o,"__modal-iframe")).contentWindow.postMessage({eventName:i.SAVE_COOKIES_PREFERENCES},"*")},w=function(e){var t=e.className,n=e.event,o=e.eventCallback,i=e.modalWrapper,r=new MutationObserver((function(){var e=document.querySelector(t);i.contains(e)&&(e.addEventListener(n,o),r.disconnect())}));r.observe(document,{attributes:!1,childList:!0,characterData:!1,subtree:!0})};y.on("show",(function(){s(document.documentElement),window.addEventListener("message",(function(e){var t=e&&e.data||{},n=t.eventName,o=t.status,a=t.payload;if(n===i.SAVE_COOKIES_PREFERENCES){var s=l();o===r.SUCCESS?(a&&f("event",a),p(s)):h(s),v=!1,y.hide()}}))})),y.on("hide",(function(){y.destroy(),v&&f("event",{path:"/privacy_preferences/cookies/close"})})),y.on("destroy",(function(){c(document.documentElement),u(m)})),a(n.openButton).addEventListener("click",(function(){var e=n.i18n||{},i=e.close?\'aria-label="\'.concat(e.close,\'"\'):"",r=\'\\n <button\\n type="button"\\n data-a11y-dialog-hide="\'.concat(n.id,\'"\\n class="\').concat(o,\'__modal-closeButton"\\n \').concat(i,\'\\n >\\n <svg width="20" height="20" viewBox="0 0 20 20" fill="white">\\n <path\\n fill="white"\\n d="M4.35156 5.19496L9.15406 9.99746L4.35156 14.8L5.20009 15.6485L10.0026 10.846L14.7963 15.6397L15.6449 \\n 14.7912L10.8511 9.99746L15.6449 5.20371L14.7963 4.35518L10.0026 9.14894L5.20009 4.34644L4.35156 5.19496Z"\\n ></path>\\n </svg>\\n </button>\\n <div class="\').concat(o,\'__modal-content">\\n <iframe\\n title="Cookies Preferences"\\n class="\').concat(o,\'__modal-iframe"\\n src="\').concat(n.iframeUrl,\'?mode=embed"\\n ></iframe>\\n </div>\\n <div class="\').concat(o,\'__modal-action">\\n <button\\n type="button"\\n class="\').concat(o,"__action\\n ").concat(o,"__action--primary\\n ").concat(o,\'__action--key-save"\\n >\\n \').concat(n.saveText,"\\n </button>\\n </div>\\n "),s=a(n.wrapperClassName);s.innerHTML=r,w({modalWrapper:s,className:".".concat(o,"__action--key-save"),event:"click",eventCallback:b}),w({modalWrapper:s,className:".".concat(o,"__modal-closeButton"),event:"click",eventCallback:function(){return y.hide()}}),u(a(t)),y.show()}))}}}},function(e,t){e.exports={embedModeEvents:{SAVE_COOKIES_PREFERENCES:"saveCookiesPreference"},embedModeStatus:{SUCCESS:"SUCCESS",FAILURE:"FAILURE"},getModalConfig:function(e){return{id:"js-modal-".concat(e),className:"".concat(e,"__modal"),overlayClassName:"".concat(e,"__modal-overlay"),wrapperClassName:"".concat(e,"__modal-wrapper")}}}},function(e,t,n){var o,i,r;i=[t],void 0===(r="function"==typeof(o=function(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=!1;if("undefined"!=typeof window){var n={get passive(){t=!0}};window.addEventListener("testPassive",null,n),window.removeEventListener("testPassive",null,n)}function o(e){return c.some((function(t){return!(!t.options.allowTouchMove||!t.options.allowTouchMove(e))}))}function i(e){var t=e||window.event;return!!o(t.target)||1<t.touches.length||(t.preventDefault&&t.preventDefault(),!1)}function r(){void 0!==h&&(document.body.style.paddingRight=h,h=void 0),void 0!==u&&(document.body.style.overflow=u,u=void 0)}function a(){if(void 0!==f){var e=-parseInt(document.body.style.top,10),t=-parseInt(document.body.style.left,10);document.body.style.position=f.position,document.body.style.top=f.top,document.body.style.left=f.left,window.scrollTo(t,e),f=void 0}}var s="undefined"!=typeof window&&window.navigator&&window.navigator.platform&&(/iP(ad|hone|od)/.test(window.navigator.platform)||"MacIntel"===window.navigator.platform&&1<window.navigator.maxTouchPoints),c=[],d=!1,l=-1,u=void 0,f=void 0,h=void 0;e.disableBodyScroll=function(e,n){if(e){if(!c.some((function(t){return t.targetElement===e}))){var r={targetElement:e,options:n||{}};c=[].concat(function(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}(c),[r]),s?window.requestAnimationFrame((function(){if(void 0===f){f={position:document.body.style.position,top:document.body.style.top,left:document.body.style.left};var e=window,t=e.scrollY,n=e.scrollX,o=e.innerHeight;document.body.style.position="fixed",document.body.style.top=-t+"px",document.body.style.left=-n+"px",setTimeout((function(){return window.requestAnimationFrame((function(){var e=o-window.innerHeight;e&&o<=t&&(document.body.style.top=-(t+e))}))}),300)}})):function(e){if(void 0===h){var t=!!e&&!0===e.reserveScrollBarGap,n=window.innerWidth-document.documentElement.clientWidth;if(t&&0<n){var o=parseInt(window.getComputedStyle(document.body).getPropertyValue("padding-right"),10);h=document.body.style.paddingRight,document.body.style.paddingRight=o+n+"px"}}void 0===u&&(u=document.body.style.overflow,document.body.style.overflow="hidden")}(n),s&&(e.ontouchstart=function(e){1===e.targetTouches.length&&(l=e.targetTouches[0].clientY)},e.ontouchmove=function(t){var n,r,a,s;1===t.targetTouches.length&&(r=e,s=(n=t).targetTouches[0].clientY-l,o(n.target)||(r&&0===r.scrollTop&&0<s||(a=r)&&a.scrollHeight-a.scrollTop<=a.clientHeight&&s<0?i(n):n.stopPropagation()))},d||(document.addEventListener("touchmove",i,t?{passive:!1}:void 0),d=!0))}}else console.error("disableBodyScroll unsuccessful - targetElement must be provided when calling disableBodyScroll on IOS devices.")},e.clearAllBodyScrollLocks=function(){s&&(c.forEach((function(e){e.targetElement.ontouchstart=null,e.targetElement.ontouchmove=null})),d&&(document.removeEventListener("touchmove",i,t?{passive:!1}:void 0),d=!1),l=-1),(s?a:r)(),c=[]},e.enableBodyScroll=function(e){e?(c=c.filter((function(t){return t.targetElement!==e})),s&&(e.ontouchstart=null,e.ontouchmove=null,d&&0===c.length&&(document.removeEventListener("touchmove",i,t?{passive:!1}:void 0),d=!1)),(s?a:r)()):console.error("enableBodyScroll unsuccessful - targetElement must be provided when calling enableBodyScroll on IOS devices.")}})?o.apply(t,i):o)||(e.exports=r)},function(e,t,n){var o,i;function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}!function(a,s){"object"===r(t)&&void 0!==e?e.exports=s():void 0===(i="function"==typeof(o=s)?o.call(t,n,t,e):o)||(e.exports=i)}(0,(function(){var e=[\'a[href]:not([tabindex^="-"])\',\'area[href]:not([tabindex^="-"])\',\'input:not([type="hidden"]):not([type="radio"]):not([disabled]):not([tabindex^="-"])\',\'input[type="radio"]:not([disabled]):not([tabindex^="-"])\',\'select:not([disabled]):not([tabindex^="-"])\',\'textarea:not([disabled]):not([tabindex^="-"])\',\'button:not([disabled]):not([tabindex^="-"])\',\'iframe:not([tabindex^="-"])\',\'audio[controls]:not([tabindex^="-"])\',\'video[controls]:not([tabindex^="-"])\',\'[contenteditable]:not([tabindex^="-"])\',\'[tabindex]:not([tabindex^="-"])\'];function t(e){this._show=this.show.bind(this),this._hide=this.hide.bind(this),this._maintainFocus=this._maintainFocus.bind(this),this._bindKeypress=this._bindKeypress.bind(this),this.$el=e,this.shown=!1,this._id=this.$el.getAttribute("data-a11y-dialog")||this.$el.id,this._previouslyFocused=null,this._listeners={},this.create()}function n(e,t){return n=(t||document).querySelectorAll(e),Array.prototype.slice.call(n);var n}function o(e){(e.querySelector("[autofocus]")||e).focus()}function i(){n("[data-a11y-dialog]").forEach((function(e){new t(e)}))}return t.prototype.create=function(){var e=this;return this.$el.setAttribute("aria-hidden",!0),this.$el.setAttribute("aria-modal",!0),this.$el.setAttribute("tabindex",-1),this.$el.hasAttribute("role")||this.$el.setAttribute("role","dialog"),this._openers=n(\'[data-a11y-dialog-show="\'.concat(this._id,\'"]\')),this._openers.forEach((function(t){t.addEventListener("click",e._show)})),this._closers=n("[data-a11y-dialog-hide]",this.$el).concat(n(\'[data-a11y-dialog-hide="\'.concat(this._id,\'"]\'))),this._closers.forEach((function(t){t.addEventListener("click",e._hide)})),this._fire("create"),this},t.prototype.show=function(e){return this.shown||(this._previouslyFocused=document.activeElement,this.$el.removeAttribute("aria-hidden"),this.shown=!0,o(this.$el),document.body.addEventListener("focus",this._maintainFocus,!0),document.addEventListener("keydown",this._bindKeypress),this._fire("show",e)),this},t.prototype.hide=function(e){return this.shown?(this.shown=!1,this.$el.setAttribute("aria-hidden","true"),this._previouslyFocused&&this._previouslyFocused.focus&&this._previouslyFocused.focus(),document.body.removeEventListener("focus",this._maintainFocus,!0),document.removeEventListener("keydown",this._bindKeypress),this._fire("hide",e),this):this},t.prototype.destroy=function(){var e=this;return this.hide(),this._openers.forEach((function(t){t.removeEventListener("click",e._show)})),this._closers.forEach((function(t){t.removeEventListener("click",e._hide)})),this._fire("destroy"),this._listeners={},this},t.prototype.on=function(e,t){return void 0===this._listeners[e]&&(this._listeners[e]=[]),this._listeners[e].push(t),this},t.prototype.off=function(e,t){var n=(this._listeners[e]||[]).indexOf(t);return n>-1&&this._listeners[e].splice(n,1),this},t.prototype._fire=function(e,t){var n=this,o=this._listeners[e]||[],i=new CustomEvent(e,{detail:t});this.$el.dispatchEvent(i),o.forEach((function(e){e(n.$el,t)}))},t.prototype._bindKeypress=function(t){this.$el.contains(document.activeElement)&&(this.shown&&27===t.which&&"alertdialog"!==this.$el.getAttribute("role")&&(t.preventDefault(),this.hide(t)),this.shown&&9===t.which&&function(t,o){var i=function(t){return n(e.join(","),t).filter((function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)}))}(t),r=i.indexOf(document.activeElement);o.shiftKey&&0===r?(i[i.length-1].focus(),o.preventDefault()):o.shiftKey||r!==i.length-1||(i[0].focus(),o.preventDefault())}(this.$el,t))},t.prototype._maintainFocus=function(e){!this.shown||e.target.closest(\'[aria-modal="true"]\')||e.target.closest("[data-a11y-dialog-ignore-focus-trap]")||o(this.$el)},"undefined"!=typeof document&&("loading"===document.readyState?document.addEventListener("DOMContentLoaded",i):window.requestAnimationFrame?window.requestAnimationFrame(i):window.setTimeout(i,16)),t}))}]);\nccb(document,{"advertising":true},null,[{"userId":null,"cookieName":"cookiesPreferencesNotLogged","path":"/","domain":"mercadolivre.com.br","secure":true,"sameSite":"none","maxAge":31556900}],"bottomOptOut",{"closeElements":[]},"cookie-consent-banner-opt-out",{"id":"js-modal-cookie-consent-banner-opt-out","wrapperClassName":"cookie-consent-banner-opt-out__modal-wrapper","openButton":"cookie-consent-banner-opt-out__action--key-customize","iframeUrl":"https://www.mercadolivre.com.br/privacy-preferences/cookies","saveText":"Salvar","i18n":{"title":"Prefer\xc3\xaancias de cookies","close":"Fechar"}},{"successSnackbar":{"canShow":false,"hideTimeoutInMs":8000},"errorSnackbar":{"canShow":true,"hideTimeoutInMs":8000}});})()}},{s:function(){\n !function(n,e){n.mitt=e()}(this,function(){function n(n){return n=n||Object.create(null),{on:function(e,t){(n[e]||(n[e]=[])).push(t)},off:function(e,t){n[e]&&n[e].splice(n[e].indexOf(t)>>>0,1)},emit:function(e,t){(n[e]||[]).map(function(n){n(t)}),(n["*"]||[]).map(function(n){n(e,t)})}}}return n});\n window.freya = mitt();\n }},{s:"https://http2.mlstatic.com/ui/searchbox/2.7.0/index.js",c:function(){\n if (window.Searchbox) {\n new window.Searchbox(\'.nav-search-input\', {\n platformId: \'ML\',\n siteId: \'MLB\',\n siteDomain: \'mercadolivre.com.br\',\n limit: 6,\n searchEndpoint: \'https://lista.mercadolivre.com.br/$query\',\n categoryEndpoint: \'https://informatica.mercadolivre.com.br/$query\',\n categoryCheckbox: document.getElementById(\'categorySearch\'),\n loggedIn: false,\n \n bus: window.freya,\n deviceType: \'desktop\'\n });\n }\n }},{s:"https://http2.mlstatic.com/frontend-assets/nav-widget-ml-modal-iframe/v1.0.6/modal.js"},{s:"https://http2.mlstatic.com/frontend-assets/nav-widget-ml-onboarding-cp/v1.1.2/onboarding-cp.js",c:function(){(function () {\n new window.OnboardingCP({\n bus: window.meli,\n isNewBuyer: true,\n isMobile: false,\n trigger: \'.nav-menu-cp\',\n locale: \'pt_BR\',\n domain: \'mercadolivre.com.br\',\n siteId: \'MLB\',\n isInferred: false,\n });\n }());\n }},{s:"https://http2.mlstatic.com/frontend-assets/nav-widget-ml-categories/v1.4.1/categories.js",c:function(){\n (function(win, freya) {\n if (win.CategoriesWidget && typeof freya !== \'undefined\') {\n new CategoriesWidget({\n bus: freya,\n endpoint: \'//www.mercadolivre.com.br/menu/departments\',\n });\n }\n })(window, window.freya);\n }},{s:function(){\n if (window.Cart) {\n new window.Cart({\n trigger: document.getElementById(\'nav-cart\'),\n isHover: true,\n small: true,\n carts: undefined,\n baseUrl: \'https://www.mercadolivre.com.br/gz/cart\',\n bus: freya,\n });\n }\n }},{s:"https://http2.mlstatic.com/frontend-assets/nav-widget-ml-cart/v1.7.2/CartWidget.js",c:function(){\n if (window.CartWidget) {\n new window.CartWidget({\n element: document.getElementById(\'nav-cart\'),\n endpoints: {\n get: \'https://www.mercadolivre.com.br/gz/cart/info/header\',\n post: \'https://www.mercadolivre.com.br/gz/cart/api/item\',\n },\n link: \'https://www.mercadolivre.com.br/gz/cart\',\n isMobile: false,\n bus: freya,\n locale: \'pt\',\n });\n }\n }},{s:"https://http2.mlstatic.com/frontend-assets/nav-widget-ml-snackbar/v1.1.0/snackbar.js",c:function(){\n (function (win, freya) {\n if (win.SnackbarWidget && typeof freya !== \'undefined\') {\n new win.SnackbarWidget({\n bus: freya,\n });\n }\n }(window, window.freya));\n }},{s:function(){!function(e,t){function n(){var n=setInterval(function(){try{var c=Math.max(t.body.scrollHeight,t.body.offsetHeight,t.documentElement.clientHeight,t.documentElement.scrollHeight,t.documentElement.offsetHeight),o=e.pageYOffset||t.documentElement.scrollTop||t.body.scrollTop||0;e.innerHeight+o>=c?clearInterval(n):e.scrollBy(0,20)}catch(e){clearInterval(n)}},15)}var c=t.getElementById("nav-footer-access-switch");e.addEventListener&&c&&c.addEventListener("change",function(){this.checked||setTimeout(n,200)})}(window,document);}},{s:function(){(function (w, p) {w[p] = w[p] || function () { (w[p].q = w[p].q || []).push(arguments) }; w[p].l = 1 * new Date();}(window, "_perfill"));_perfill(\'set\', \'scope\', "public");_perfill(\'set\', \'webview\', false);_perfill(\'set\', \'platform\', "ML");_perfill(\'set\', \'site\', "MLB");_perfill(\'set\', \'device\', "desktop");_perfill(\'set\', \'application\', "search-nordic");_perfill(\'set\', \'initiatives\', [{"id":"web-vitals"}]);_perfill(\'send\', \'start\');(function (d, s, f, t, x) {t = d.createElement(s); x = d.getElementsByTagName(s)[0]; t.crossorigin = \'anonymous\'; t.async = 1; t.src = f; x.parentNode.insertBefore(t, x);}(document, \'script\', \'https://http2.mlstatic.com/frontend-assets/perfill-agent/2.5.2/perfill-agent.min.js\'))}},{s:"https://http2.mlstatic.com/storage/tag-manager/google-gtag-search-mlb.js"},{s:function(){"use strict";(function(a){var b=a.location.hostname.substr(a.location.hostname.indexOf("."),a.location.hostname.length);if(-1!==b.indexOf("mercadolibre")||-1!==b.indexOf("mercadolivre")||-1!==b.indexOf("mercadopago")){var c="https://matt"+b,d=a.location.href;if(c=c.concat("?go=").concat(encodeURIComponent(d)),navigator&&navigator.sendBeacon)status=navigator.sendBeacon(c);else{var e=new XMLHttpRequest;e.open("GET",c),e.send()}}})(window);}},{s:function(){\n window.__PRELOADED_STATE__ =\n {"siteId":"MLB","cookies":{},"lowEnd":false,"deviceType":"desktop","country":{"id":"BR","name":"Brasil","locale":"pt_BR","currency_id":"BRL","decimal_separator":",","thousands_separator":".","time_zone":"GMT-03:00","geo_information":{"location":{"latitude":-23.6821604,"longitude":-46.875494}},"states":[{"id":"BR-AC","name":"Acre"},{"id":"BR-AL","name":"Alagoas"},{"id":"BR-AP","name":"Amap\xc3\xa1"},{"id":"BR-AM","name":"Amazonas"},{"id":"BR-BA","name":"Bahia"},{"id":"BR-CE","name":"Cear\xc3\xa1"},{"id":"BR-DF","name":"Distrito Federal"},{"id":"BR-ES","name":"Esp\xc3\xadrito Santo"},{"id":"BR-GO","name":"Goi\xc3\xa1s"},{"id":"BR-MA","name":"Maranh\xc3\xa3o"},{"id":"BR-MT","name":"Mato Grosso"},{"id":"BR-MS","name":"Mato Grosso do Sul"},{"id":"BR-MG","name":"Minas Gerais"},{"id":"BR-PR","name":"Paran\xc3\xa1"},{"id":"BR-PB","name":"Para\xc3\xadba"},{"id":"BR-PA","name":"Par\xc3\xa1"},{"id":"BR-PE","name":"Pernambuco"},{"id":"BR-PI","name":"Piau\xc3\xad"},{"id":"BR-RN","name":"Rio Grande do Norte"},{"id":"BR-RS","name":"Rio Grande do Sul"},{"id":"BR-RJ","name":"Rio de Janeiro"},{"id":"BR-RO","name":"Rond\xc3\xb4nia"},{"id":"BR-RR","name":"Roraima"},{"id":"BR-SC","name":"Santa Catarina"},{"id":"BR-SE","name":"Sergipe"},{"id":"BR-SP","name":"S\xc3\xa3o Paulo"},{"id":"BR-TO","name":"Tocantins"}],"currencies":{"BRL":{"id":"BRL","symbol":"R$","description":"Real","decimal_places":2}}},"currentUser":{"loggedIn":false,"loginUrl":"https:\\u002F\\u002Fwww.mercadolivre.com\\u002Fjms\\u002Fmlb\\u002Flgz\\u002Flogin?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit","nickname":"","id":""},"initialState":{"adult_info":{"is_zrp_adult":false,"show_adult_filter":false,"adult_results":0},"view_options":{"id":"VIEW_OPTIONS","type":"VIEW_OPTIONS","state":"VISIBLE","tooltip":{"title":"Encontre mais f\xc3\xa1cil o que voc\xc3\xaa busca!","label":{"text":"Ordene os resultados por relev\xc3\xa2ncia ou pre\xc3\xa7o e escolha v\xc3\xaa-los como lista ou grade."},"action":{"label":{"text":"Entendi"}}},"sort":{"label":"Ordenar por","sorts":[{"id":"relevance","name":"Mais relevantes","disclaimer":"","selected":true,"has_disclaimer":false},{"url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_OrderId_PRICE_NoIndex_True","id":"price_asc","name":"Menor pre\xc3\xa7o","selected":false,"has_disclaimer":false},{"url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_OrderId_PRICE*DESC_NoIndex_True","id":"price_desc","name":"Maior pre\xc3\xa7o","selected":false,"has_disclaimer":false}],"has_disclaimer":false}},"bookmark":{"label":{"text":"Favorito"},"show_user_bookmarks":true},"ads_metadata":{"destination_url":"https:\\u002F\\u002Fpublicidad.mercadolibre.com.br\\u002Fmain","title":"","label_long":"Mercado Livre Publicidade - Anuncie aqu","label_short":"Anuncie aqui","track_url":"https:\\u002F\\u002Fprint1.mercadoclics.com\\u002Fmclics\\u002Fv2\\u002Fprints\\u002Fexternal\\u002FMLB\\u002Fcount?d=bxNegmX9gRGVHJ3%2FYE09yGspOc5dPiXU8ggWnR2OE38Afdi6Ij7FylH6CHLxeIuj5aoo4hbfqkRKAJNObM7EgxixAfNJ59lH5hjkYJ3Uqhw%2FMYuz%2BVpmbst99wSifx9GmaY3Tfm%2Fv8WIrF%2BAbs6SMuE21NE2tqtyaKoLaBPtAxzPTwv69FBbVT1uTaRDhp2DH6Z4DoHpY6oJmauoFghJasjF7P1othaHFQPYMMD8ZtON27KYWvkpS2M8KivQHuy51EErS%2BquWYcDugczfyveQED2p%2FdZ08zlp8EMPj5MzrAdcTZ7N%2Fu54u4%2FBiV68d3GzGMaK5dCTDVHXfzNcEm1bMwfIrBFED%2Bar623YCNgkdTHu2f%2Bhgf6n9cWMuuHlVCnKWS%2FUl3F6pi7ginfeY6w%2FgyKwYAtK0quRPOoAi28OYzsoNpgwOaHJLfKtvyS%2BO8800RzKYd%2FWW90QX6lju8UKzaE6Davr1p9j2gjHsC%2Bb4oHGYu77Fw8kqGOzJRKsmER56%2F6ijVzCNyxsphmjHCsQPHWN8EdGVwnBAejWRwZ1qYxJHITyQ%3D%3D&rb=x","landing":"https:\\u002F\\u002Fads.mercadolivre.com.br\\u002FproductAds?ui_version=v2&utm_source=search_result_placement&utm_medium=link&utm_campaign=engagement","show_google_ads":true,"ui":{"version":"v2","font_color":"#3483FA","font_size":12}},"analytics_track":{"dimensions":{"itemId":"MLB1983288877,MLB1930876153,MLB1937079157,MLB1607748387,MLB1983278713,MLB2131342947,MLB2025368730,MLB1937076326,MLB2081933352,MLB2114151338,MLB2153875378,MLB1669162236,MLB1983288732,MLB2603247328,MLB1983288643,MLB2614218974,MLB1983278831,MLB2696339147,MLB1663773541,MLB1837442511,MLB1983279452,MLB2610297318,MLB2210259535,MLB2669020387,MLB2610554493,MLB2199976353,MLB1986322829,MLB1680063928,MLB1899027328,MLB1506134141,MLB1983288676,MLB1983279518,MLB2022879801,MLB2096063553,MLB2161556728,MLB1983287147,MLB2103940157,MLB2724080796,MLB1983296789,MLB2618767197,MLB2145104504,MLB2626699161,MLB1983286920,MLB1983288815,MLB1786478708,MLB2618802287,MLB2044748327,MLB1885917902,MLB2222645583,MLB1615760527,MLB2025342637,MLB2032160315,MLB2625920831,MLB2685001475","CategoryDomain":"MLB-COMPUTER_EQUIPMENT_AND_SPARE_PARTS","context":"PDP+officialStore","searchResults":"547937","officialStore":"NONE","experiment1":"SEO-allowlist: in - SEARCH-noindex: false","searchConfig":"115|393","melidataExperiments":"{\\"mclics\\u002Fgrid-layout\\":\\"12899\\",\\"search\\u002Fnew-search-api\\":\\"8650\\",\\"mclics\\u002Fshow-pads-search-list\\":\\"5146\\",\\"mclics\\u002Fpseudo-search-buybox-query\\":\\"9461\\",\\"mclics\\u002Fshow-pads-global\\":\\"5176\\",\\"mclics\\u002Fpseudo-search-pads-buybox\\":\\"7708\\",\\"frontend\\u002FassetsCdnDomainMLB\\":\\"DEFAULT\\",\\"frontend\\u002FassetsCdnDomainMLU\\":\\"DEFAULT\\"}","business":"MARKETPLACE","pageVertical":"CORE","itemDeals":"NONE","TrackingId":"fdbc07bf-dc75-448b-bca8-3904faaf0d2a"},"platform":"ML","section":"search","siteId":"MLB","page":"LISTING","pathFromRoot":[{"id":"MLB1648","name":"Inform\xc3\xa1tica"}],"pageVertical":"CORE","business":"MARKETPLACE","pageLayout":"gallery","search":"computador","pageCategoryL1":"MLB1648"},"canonical_info":{"canonical":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fcomputador","should_add_none_to_response":false,"q_cat_off":false},"exhibitor":{"id":"TSB_MELHOR_DO_ELETRO","type":"search_desktop_main_slider","start_time":"2022-07-18T03:00:00Z","end_time":"2022-07-25T03:00:00Z","data_track":{"exhibitor_id":"TSB_MELHOR_DO_ELETRO","permalink":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002F_Deal_entrefechas?utm_source=TSB+ACHADOS+DA+SEMANA&utm_medium=TSB+ACHADOS+DA+SEMANA&utm_id=TSB+ACHADOS+DA+SEMANA#DEAL_ID=MLB10205&S=MKT&V=1&T=TSB&L=MKT_T1_ENTRE_FECHAS_ACHADOS"},"parameters":{"background_image":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_610237-MLA50807376051_072022-OO.jpg","permalink":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002F_Deal_entrefechas?utm_source=TSB+ACHADOS+DA+SEMANA&utm_medium=TSB+ACHADOS+DA+SEMANA&utm_id=TSB+ACHADOS+DA+SEMANA#DEAL_ID=MLB10205&S=MKT&V=1&T=TSB&L=MKT_T1_ENTRE_FECHAS_ACHADOS"}},"header":{"id":"HEADER","type":"EXHIBITOR","state":"VISIBLE","background":{"pictures":{"1x":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_610237-MLA50807376051_072022-OO.jpg","2x":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_610237-MLA50807376051_072022-OO.jpg"},"permalink":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002F_Deal_entrefechas?utm_source=TSB+ACHADOS+DA+SEMANA&utm_medium=TSB+ACHADOS+DA+SEMANA&utm_id=TSB+ACHADOS+DA+SEMANA#DEAL_ID=MLB10205&S=MKT&V=1&T=TSB&L=MKT_T1_ENTRE_FECHAS_ACHADOS"}},"landing":{"type":"BASE","show_item_shipping_info":true,"show_item_installments":true,"show_item_product":true,"show_item_reviews":true,"show_item_attributes":true,"show_item_brand_logo":true,"show_item_official_store":true,"show_item_variations":true,"show_view_change_buttons":true,"show_product_header":true},"layout_options":{"id":"LAYOUT","state":"HIDDEN","current":"grid","views":[{"id":"grid","label":"Galeria","url_host":"https:\\u002F\\u002Flista.mercadolivre.com.br","url_path":"\\u002Fcomputador_DisplayType_G"}],"track":{"melidata_track":{"path":"\\u002Fsearch\\u002Fchange_view\\u002Fapply"}}},"listing_disclaimer":{"state":"VISIBLE","text":"O frete gr\xc3\xa1tis est\xc3\xa1 sujeito ao peso, pre\xc3\xa7o e dist\xc3\xa2ncia do envio."},"melidata_track":{"path":"\\u002Fsearch","event_data":{"query":"computador","limit":50,"offset":0,"total":547937,"category_id":"MLB1648","domain":"MLB-COMPUTER_EQUIPMENT_AND_SPARE_PARTS","category_path":["MLB1648"],"sort_id":"relevance","filters":{"category":"MLB1648"},"available_filters":{},"displayed_filters":[{"id":"shipping_highlighted_fulfillment","name":"Tipo de envio","type":"highlighted","position":1,"values_quantity":1},{"id":"shipping_cost_highlighted","name":"Custo do frete","type":"highlighted","position":2,"values_quantity":1},{"id":"SHIPPING_ORIGIN_HIGHLIGHTED","name":"Origem do frete","type":"highlighted","position":3,"values_quantity":1},{"id":"category","name":"Categorias","type":"text","position":4,"values_quantity":14},{"id":"PROCESSOR_TYPE","name":"Processador","type":"STRING","position":5,"values_quantity":25},{"id":"shipping","name":"Tipo de envio","type":"text","position":6,"values_quantity":1},{"id":"RAM_SIZE","name":"RAM","type":"range","position":7,"values_quantity":5},{"id":"ITEM_CONDITION","name":"Condi\xc3\xa7\xc3\xa3o","type":"STRING","position":8,"values_quantity":3},{"id":"WITH_MONITOR","name":"Monitor","type":"boolean","position":9,"values_quantity":2},{"id":"shipping_cost","name":"Custo do frete","type":"text","position":10,"values_quantity":1},{"id":"price","name":"Pre\xc3\xa7o","type":"range","position":11,"values_quantity":3},{"id":"OPERATIVE_SYSTEM","name":"Sistema operativo","type":"STRING","position":12,"values_quantity":7},{"id":"state","name":"Localiza\xc3\xa7\xc3\xa3o","type":"text","position":13,"values_quantity":17},{"id":"HDD_SIZE","name":"Disco r\xc3\xadgido","type":"range","position":14,"values_quantity":4},{"id":"DISPLAY_SIZE","name":"Tamanho da tela","type":"range","position":15,"values_quantity":4},{"id":"BRAND","name":"Marca","type":"STRING","position":16,"values_quantity":192},{"id":"SHIPPING_ORIGIN","name":"Origem do frete","type":"STRING","position":17,"values_quantity":2},{"id":"official_store","name":"Lojas oficiais","type":"text","position":18,"values_quantity":1},{"id":"installments","name":"Pagamento","type":"text","position":19,"values_quantity":1},{"id":"discount","name":"Descontos","type":"numeric","position":20,"values_quantity":7},{"id":"promotion_type","name":"Tipo de promo\xc3\xa7\xc3\xa3o","type":"text","position":21,"values_quantity":1},{"id":"IS_GAMER","name":"Outras caracter\xc3\xadsticas","type":"boolean","position":22,"values_quantity":0},{"id":"power_seller","name":"Filtro MercadoL\xc3\xadderes","type":"refine_by","position":23,"values_quantity":1}],"autoselected_filters":["category"],"view_mode":"GRID","results":["MLB1983288877","MLB1930876153","MLB1937079157","MLB1607748387","MLB1983278713","MLB2131342947","MLB2025368730","MLB1937076326","MLB2081933352","MLB2114151338","MLB1983288732","MLB2603247328","MLB1983288643","MLB2614218974","MLB1983278831","MLB2696339147","MLB1663773541","MLB1837442511","MLB1983279452","MLB2669020387","MLB2610554493","MLB2199976353","MLB1986322829","MLB1680063928","MLB1899027328","MLB1506134141","MLB1983288676","MLB1983279518","MLB2022879801","MLB2096063553","MLB2103940157","MLB2724080796","MLB1983296789","MLB2618767197","MLB2145104504","MLB2626699161","MLB1983286920","MLB1983288815","MLB1786478708","MLB2618802287","MLB2044748327","MLB1885917902","MLB2222645583","MLB1615760527","MLB2025342637","MLB2032160315","MLB2625920831","MLB2685001475"],"billboards":[],"pads_info":{"vertical":"CORE","blocks_strategy":"P11P12","ids":["MLB2153875378","MLB1669162236","MLB2610297318","MLB2210259535","MLB2161556728","MLB1983287147"],"item_ids":["MLB2153875378","MLB1669162236","MLB2610297318","MLB2210259535","MLB2161556728","MLB1983287147"],"discarded_ids":["MLB2648112718","MLB1539097035","MLB2610318517","MLB1666513223","MLB2610291368","MLB1736173494","MLB1983492060","MLB1911268639","MLB2130219063","MLB2104599245","MLB1960923234","MLB2657810063","MLB2611561822","MLB1946622365","MLB2641021752","MLB2220510769","MLB1559647663","MLB1734778447","MLB1882031499","MLB2094487168","MLB1763722828","MLB2700169586","MLB2022879801","MLB2087413462","MLB1867159797","MLB2181336339","MLB2649428704","MLB2649506643"],"printed_ads_prices":[2987.1,3865.91,1376.83,3122.1,229.9,2366.1],"discarded_ads_prices":[1709.1,1376.99,1274.34,64.9,1446.8,19.99,1890.99,1529.1,3644.1,2799.99,168.9,2872,29.9,1466.99,1459,1591.58,1394.99,27.94,57.9,54.89,22.69,2589,3105.52,24.49,29.79,2969.1,100.83,128.54],"results_avg_ads_asp":1405.83,"results_avg_printed_ads_asp":2324.65,"results_avg_discarded_ads_asp":1208.94,"results_avg_items_asp":1363.93,"printed_positions":[10,11,21,22,34,35],"original_positions":[10,11,21,22,34,35],"empty_positions":[],"suggested_positions":[712,451,915,379,529,543,536,439,442,505,368,714,757,557,115,136,626,463,834,251,868,292,243,801,477,767,933,222,28,237,847,98,100,71],"original_suggested_positions":[712,451,915,379,529,543,536,439,442,505,368,714,757,557,115,136,626,463,834,251,868,292,243,801,477,767,933,222,28,237,847,98,100,71],"discarded_original_suggested_positions":[536,439,442,505,368,714,757,557,115,136,626,463,834,251,868,292,243,801,477,767,933,222,28,237,847,98,100,71],"printed_original_suggested_positions":[712,451,915,379,529,543],"blocks_sizes":[],"printed_positions_size":6,"domain":"VQCATCORE_LST","strategy":"DPCTRAVG_P11P12_BB_ITEM_BIDBSMULT","is_api_migrated":false},"catalog_product_id":"","backend_data":{"request_flow":{"origin":"backend"}},"promise_items":{"nextday":[],"sameday":[]},"official_stores_carousel_shown":[],"user_zone":"","pdp_rows":[{"item_id":"MLB1930876153","product_id":"MLB16263913"},{"item_id":"MLB2131342947","product_id":"MLB18624590"},{"item_id":"MLB2081933352","product_id":"MLB18366754"},{"item_id":"MLB2114151338","product_id":"MLB18621000"},{"item_id":"MLB2603247328","product_id":"MLB18632909"},{"item_id":"MLB2614218974","product_id":"MLB19035706"},{"item_id":"MLB2696339147","product_id":"MLB19158523"},{"item_id":"MLB2610554493","product_id":"MLB6189662"},{"item_id":"MLB2199976353","product_id":"MLB18941410"},{"item_id":"MLB2103940157","product_id":"MLB17739841"},{"item_id":"MLB2724080796","product_id":"MLB17966310"},{"item_id":"MLB2145104504","product_id":"MLB18459542"},{"item_id":"MLB2044748327","product_id":"MLB17978326"},{"item_id":"MLB2685001475","product_id":"MLB15297208"}],"carousel_filters":[],"show_supermarket_carousel":false,"tracking_id":"fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pdp_grouped_search":false,"highlights_info":{"best_seller_info":{"candidates":22,"selected":["MLB2614218974"]},"meli_choice_info":{"candidates":4,"selected":[{"item_id":"MLB1930876153","product_id":"MLB16263913","origin":"killer_matched"},{"item_id":"MLB2131342947","product_id":"MLB18624590","origin":"killer_matched"}],"overrides":[]}},"tag_tracking_info":{"crypto_cashback":[],"best_seller":[{"type":"best_seller","item_id":"MLB2614218974","product_id":"MLB19035706","position":14}],"highlights":[],"lightning_deal":[],"shipping_guaranteed":[],"deal_of_the_day":[{"type":"deal_of_the_day","item_id":"MLB1983288877","position":1},{"type":"deal_of_the_day","item_id":"MLB1983278713","position":5},{"type":"deal_of_the_day","item_id":"MLB2025368730","position":7},{"type":"deal_of_the_day","item_id":"MLB2114151338","product_id":"MLB18621000","position":10},{"type":"deal_of_the_day","item_id":"MLB1983288732","position":11},{"type":"deal_of_the_day","item_id":"MLB1983288643","position":13},{"type":"deal_of_the_day","item_id":"MLB1983288676","position":27},{"type":"deal_of_the_day","item_id":"MLB1983296789","position":33},{"type":"deal_of_the_day","item_id":"MLB1983286920","position":37},{"type":"deal_of_the_day","item_id":"MLB1983288815","position":38},{"type":"deal_of_the_day","item_id":"MLB2025342637","position":45}],"discount_volume":[],"meli_choice":[{"type":"meli_choice","item_id":"MLB1930876153","product_id":"MLB16263913","position":2},{"type":"meli_choice","item_id":"MLB2131342947","product_id":"MLB18624590","position":6}],"next_day":[],"same_day":[],"supermarket_partnership":[]},"pdp_info":[{"id":"MLB16263913","score":1,"status":"shown"},{"id":"MLB18624590","score":1,"status":"shown"},{"id":"MLB18366754","score":1,"status":"shown"},{"id":"MLB18621000","score":1,"status":"shown"},{"id":"MLB18632909","score":1,"status":"shown"},{"id":"MLB19035706","score":1,"status":"shown"},{"id":"MLB19158523","score":1,"status":"shown"},{"id":"MLB6189662","score":1,"status":"shown"},{"id":"MLB18941410","score":1,"status":"shown"},{"id":"MLB17739841","score":1,"status":"shown"},{"id":"MLB17966310","score":1,"status":"shown"},{"id":"MLB18459542","score":1,"status":"shown"},{"id":"MLB17978326","score":1,"status":"shown"},{"id":"MLB15297208","score":1,"status":"shown"}],"location_info":{},"interventions":[],"containers_flow":"N\\u002FA","banner":{"exhibitor_id":"TSB_MELHOR_DO_ELETRO","permalink":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002F_Deal_entrefechas?utm_source=TSB+ACHADOS+DA+SEMANA&utm_medium=TSB+ACHADOS+DA+SEMANA&utm_id=TSB+ACHADOS+DA+SEMANA#DEAL_ID=MLB10205&S=MKT&V=1&T=TSB&L=MKT_T1_ENTRE_FECHAS_ACHADOS"},"related_searches_info":{"quantity":5,"related_queries":["i3 9100f","king koil triathlon queen","celular samsung a11","computador wi fi","computadores novos"]},"canonical":{"url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fcomputador","no_follow_tag":false},"landing":"base","layout_forced":false,"shown_as_product":[],"geo_search":false,"is_googlebot":false,"seo":{"allowlist":{"seo_is_allowlisted":true,"seo_apply_no_index":true,"search_no_index_applied":false,"results_by_strategy":{"query_and_category_strategy":true,"sanitized_query_and_category_strategy":true,"exact_query_strategy":true}},"seo_experiments":{"status":"success","experiment_list":[{"id":"ironman","is_enabled":false,"is_active":false,"should_apply":false,"group":"Control","executed_successfully":true},{"id":"black widow","is_enabled":false,"is_active":false,"should_apply":false,"group":"Control","executed_successfully":true},{"id":"spiderman","is_enabled":false,"is_active":false,"should_apply":false,"group":"Control","executed_successfully":true},{"id":"green arrow","is_enabled":false,"is_active":false,"should_apply":false,"group":"Control","executed_successfully":true}]}},"pdp_highlight_enabled":false,"user_profile_type":"BUYER","top_keywords":[{"key":"intel core i5 8 geracao","type":"SEARCH"},{"key":"montar pc pichau","type":"SEARCH"},{"key":"hackintosh","type":"SEARCH"},{"key":"impressora portatil a4","type":"SEARCH"},{"key":"notebook com impressora","type":"SEARCH"},{"key":"tablet windows","type":"SEARCH"},{"key":"computador barato","type":"SEARCH"}]},"experiments":{"mclics\\u002Fgrid-layout":"12899","search\\u002Fnew-search-api":"8650","mclics\\u002Fshow-pads-search-list":"5146","mclics\\u002Fpseudo-search-buybox-query":"9461","mclics\\u002Fshow-pads-global":"5176","mclics\\u002Fpseudo-search-pads-buybox":"7708","frontend\\u002FassetsCdnDomainMLB":"DEFAULT","frontend\\u002FassetsCdnDomainMLU":"DEFAULT"}},"pagination":{"page_count":42,"first_page":1,"last_page":1,"selected_page":1,"show_pagination":true,"previous_page":{"value":"Anterior","show":false},"pagination_nodes_url":[{"value":"1","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True","is_actual_page":true}],"next_page":{"value":"Seguinte","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_Desde_49_NoIndex_True","show":true},"results_limit":2000},"query":"computador","related_searches":{"q":"computador","related_searches":[{"q":"i3 9100f","url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fi3-9100f#D[R:computador,P:1,Q:5]"},{"q":"king koil triathlon queen","url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fking-koil-triathlon-queen#D[R:computador,P:2,Q:5]"},{"q":"celular samsung a11","url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fcelular-samsung-a11#D[R:computador,P:3,Q:5]"},{"q":"computador wi fi","url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fcomputador-wi-fi#D[R:computador,P:4,Q:5]"},{"q":"computadores novos","url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fcomputadores-novos#D[R:computador,P:5,Q:5]"}],"label":"Outras pessoas pesquisaram"},"results":[{"id":"MLB1983288877","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-1983288877-computador-completo-facil-intel-core-i5-08gb-ddr3-ssd-240-gb-_JM#position=17&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_726435-MLB47230369709_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Completo F\xc3\xa1cil Intel Core I5 08gb Ddr3 Ssd 240 Gb"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_726435-MLB47230369709_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Completo F\xc3\xa1cil Intel Core I5 08gb Ddr3 Ssd 240 Gb"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Computador Completo F\xc3\xa1cil Intel Core I5 08gb Ddr3 Ssd 240 Gb","class_name":"list-view-item-figure"}}},"price":{"amount":1830,"currency_id":"BRL","original_price":2079,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Completo F\xc3\xa1cil Intel Core I5 08gb Ddr3 Ssd 240 Gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002F2eletro","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":182.95,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","deal_of_the_day"],"item_highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"image_ratio":"1.71","category_id":"MLB1649","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Cr\xc3\xa9dito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":157},{"id":"MLB1930876153","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":564615359,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","eshop","mshops","large_seller","credits_profile","messages_as_seller"],"address":{"id":1101840087,"comment":"","address_line":"","zip_code":"04571900","country":{"id":"BR","name":"Brasil"},"city":{"id":"BR-SP-44","name":"S\xc3\xa3o Paulo"}},"official_store_id":"2972","official_store_name":"VIKING","official_store_text":"por VIKING","official_store_verbose_text":"Vendido por VIKING"},"permalink":"https:\\u002F\\u002Fwww.mercadolivre.com.br\\u002Fnotebook-multilaser-legacy-book-pc310-preta-141-intel-celeron-n3000-4gb-de-ram-64gb-ssd-intel-hd-graphics-1366x768px-windows-10-home\\u002Fp\\u002FMLB16263913?pdp_filters=category:MLB1648#searchVariation=MLB16263913&position=1&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_892016-MLA44927459054_022021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Notebook Multilaser Legacy Book PC310 preta 14.1\\", Intel Celeron N3000 4GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_892016-MLA44927459054_022021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Notebook Multilaser Legacy Book PC310 preta 14.1\\", Intel Celeron N3000 4GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Notebook Multilaser Legacy Book PC310 preta 14.1\\", Intel Celeron N3000 4GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home","class_name":"list-view-item-figure"}}},"price":{"amount":1199,"currency_id":"BRL","original_price":1999,"discount_rate":40,"discount_label":{"text":"40% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB16263913","name":"Notebook Multilaser Legacy Book PC310 preta 14.1\\", Intel Celeron N3000 4GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"},"title":"Notebook Multilaser Legacy Book PC310 preta 14.1\\", Intel Celeron N3000 4GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por VIKING","color":"GRAY"},"verbose_text":{"text":"Vendido por VIKING","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002Fviking","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"2972"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":119.9,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","fulfillment","cart_eligible","product_item","best_seller_candidate","meli_choice","meli_choice"],"reviews":{"rating_average":4.1,"total":351},"image_ratio":"1.29","category_id":"MLB1652","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"RECOMENDADO","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"RECOMENDADO","color":"#FFFFFF"},"type":"meli_choice","icon":{"id":"meli_icon"},"background":"#333333"},"pictures_quantity":5,"value_propositions":[],"available_quantity":272},{"id":"MLB1937079157","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":298832663,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","mshops","messages_as_seller"],"address":{"id":618250284,"comment":"","address_line":"","zip_code":"01040000","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"S\xc3\xa3o Paulo"},"city":{"id":"BR-SP-44","name":"S\xc3\xa3o Paulo"}}},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-1937079157-pc-computador-cpu-core-i5-650-ssd-240gb-8gb-memoria-ram-_JM#position=18&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_618178-MLB46611223438_072021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_618178-MLB46611223438_072021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram","class_name":"list-view-item-figure"}}},"price":{"amount":1231,"currency_id":"BRL","original_price":1399,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":123.11,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"0.86","category_id":"MLB1649","pictures_quantity":3,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Cr\xc3\xa9dito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":84},{"id":"MLB1607748387","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":459757635,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","messages_as_seller"],"address":{"id":1089134583,"comment":"","address_line":"","zip_code":"15025050","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"S\xc3\xa3o Paulo"},"city":{"id":"BR-SP-28","name":"S\xc3\xa3o Jos\xc3\xa9 do Rio Preto"}}},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-1607748387-pc-computador-cpu-intel-core-i5-ssd-240gb-8gb-memoria-ram-_JM#position=19&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_674762-MLB50613865527_072022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_674762-MLB50613865527_072022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram","class_name":"list-view-item-figure"}}},"price":{"amount":1446,"currency_id":"BRL","original_price":1829.99,"discount_rate":21,"discount_label":{"text":"21% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":144.57,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","best_seller_candidate"],"image_ratio":"0.86","category_id":"MLB1649","pictures_quantity":11,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Cr\xc3\xa9dito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":260},{"id":"MLB1983278713","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-1983278713-computador-facil-intel-core-i3-4gb-ssd-120gb-_JM#position=20&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_766782-MLB47145738530_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador F\xc3\xa1cil Intel Core I3 4gb Ssd 120gb"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_766782-MLB47145738530_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador F\xc3\xa1cil Intel Core I3 4gb Ssd 120gb"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Computador F\xc3\xa1cil Intel Core I3 4gb Ssd 120gb","class_name":"list-view-item-figure"}}},"price":{"amount":852.72,"currency_id":"BRL","original_price":969,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador F\xc3\xa1cil Intel Core I3 4gb Ssd 120gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002F2eletro","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":85.27,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","deal_of_the_day"],"item_highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"image_ratio":"0.67","category_id":"MLB1649","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"pictures_quantity":4,"rebates":[],"value_propositions":[],"available_quantity":156},{"id":"MLB2131342947","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":85263796,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","eshop","credits_profile","mshops","messages_as_seller"],"address":{"id":1055030833,"comment":"","address_line":"","zip_code":"07174005","country":{"id":"BR","name":"Brasil"},"city":{"id":"BR-SP-41","name":"Guarulhos"}},"official_store_id":"3401","official_store_name":"123 Comprou","official_store_text":"por 123 Comprou","official_store_verbose_text":"Vendido por 123 Comprou"},"permalink":"https:\\u002F\\u002Fwww.mercadolivre.com.br\\u002Fnotebook-multilaser-legacy-cloud-pc134-cinza-141-intel-atom-z8350-2gb-de-ram-64gb-ssd-intel-hd-graphics-1366x768px-windows-10-home\\u002Fp\\u002FMLB18624590?pdp_filters=category:MLB1648#searchVariation=MLB18624590&position=2&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_690494-MLA48633785018_122021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Notebook Multilaser Legacy Cloud PC134 cinza 14.1\\", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_690494-MLA48633785018_122021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Notebook Multilaser Legacy Cloud PC134 cinza 14.1\\", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Notebook Multilaser Legacy Cloud PC134 cinza 14.1\\", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home","class_name":"list-view-item-figure"}}},"price":{"amount":1199,"currency_id":"BRL","original_price":1529,"discount_rate":21,"discount_label":{"text":"21% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB18624590","name":"Notebook Multilaser Legacy Cloud PC134 cinza 14.1\\", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"},"title":"Notebook Multilaser Legacy Cloud PC134 cinza 14.1\\", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 123 Comprou","color":"GRAY"},"verbose_text":{"text":"Vendido por 123 Comprou","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002F123-comprou","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3401"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":119.9,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","fulfillment","cart_eligible","product_item","best_seller_candidate","meli_choice","meli_choice"],"reviews":{"rating_average":4.2,"total":94},"image_ratio":"1.23","category_id":"MLB1652","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"RECOMENDADO","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"RECOMENDADO","color":"#FFFFFF"},"type":"meli_choice","icon":{"id":"meli_icon"},"background":"#333333"},"pictures_quantity":6,"value_propositions":[],"available_quantity":111},{"id":"MLB2025368730","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-2025368730-computador-completo-facil-intel-core-i3-8gb-ssd-240gb-_JM#position=21&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_704139-MLB47542929423_092021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Completo F\xc3\xa1cil Intel Core I3 8gb Ssd 240gb "}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_704139-MLB47542929423_092021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Completo F\xc3\xa1cil Intel Core I3 8gb Ssd 240gb "}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Computador Completo F\xc3\xa1cil Intel Core I3 8gb Ssd 240gb ","class_name":"list-view-item-figure"}}},"price":{"amount":1706,"currency_id":"BRL","original_price":1939,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Completo F\xc3\xa1cil Intel Core I3 8gb Ssd 240gb ","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002F2eletro","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":170.63,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","deal_of_the_day"],"item_highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"image_ratio":"1.61","category_id":"MLB1649","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Cr\xc3\xa9dito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":137},{"id":"MLB1937076326","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":298832663,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","mshops","messages_as_seller"],"address":{"id":618250284,"comment":"","address_line":"","zip_code":"01040000","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"S\xc3\xa3o Paulo"},"city":{"id":"BR-SP-44","name":"S\xc3\xa3o Paulo"}}},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-1937076326-pc-computador-cpu-core-i5-650-ssd-240gb-8gb-memoria-ram-_JM#position=24&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_618178-MLB46611223438_072021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_618178-MLB46611223438_072021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram","class_name":"list-view-item-figure"}}},"price":{"amount":1100,"currency_id":"BRL","original_price":1250,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":106.65,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible","best_seller_candidate"],"image_ratio":"0.86","category_id":"MLB1649","pictures_quantity":3,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Cr\xc3\xa9dito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":68},{"id":"MLB2081933352","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":703236581,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","mshops","credits_profile","messages_as_seller"],"address":{"id":1177954353,"comment":"","address_line":"","zip_code":"03116000","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"S\xc3\xa3o Paulo"},"city":{"id":"BR-SP-44","name":"S\xc3\xa3o Paulo"}}},"permalink":"https:\\u002F\\u002Fwww.mercadolivre.com.br\\u002Fnotebook-multilaser-legacy-book-pc250-preta-141-intel-celeron-n3350-4gb-de-ram-64gb-ssd-intel-hd-graphics-500-1366x768px-windows-10-home\\u002Fp\\u002FMLB18366754?pdp_filters=category:MLB1648#searchVariation=MLB18366754&position=3&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_739810-MLA47202566066_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Notebook Multilaser Legacy Book PC250 preta 14.1\\", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1366x768px Windows 10 Home"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_739810-MLA47202566066_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Notebook Multilaser Legacy Book PC250 preta 14.1\\", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1366x768px Windows 10 Home"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Notebook Multilaser Legacy Book PC250 preta 14.1\\", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1366x768px Windows 10 Home","class_name":"list-view-item-figure"}}},"price":{"amount":1281,"currency_id":"BRL","original_price":1281.23,"discount_rate":0,"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB18366754","name":"Notebook Multilaser Legacy Book PC250 preta 14.1\\", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1366x768px Windows 10 Home"},"title":"Notebook Multilaser Legacy Book PC250 preta 14.1\\", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1366x768px Windows 10 Home","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":128.12,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","product_item","best_seller_candidate"],"reviews":{"rating_average":4.1,"total":101},"image_ratio":"1.23","category_id":"MLB1652","pictures_quantity":7,"value_propositions":[],"available_quantity":20},{"id":"MLB2114151338","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":418149407,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","messages_as_seller"],"address":{"id":1060728947,"comment":"","address_line":"","zip_code":"07750020","country":{"id":"BR","name":"Brasil"},"city":{"id":"QlItU1BDYWphbWFy","name":"Cajamar"}},"official_store_id":"2359","official_store_name":"Tedge por Mercado Livre","official_store_text":"por Tedge por Mercado Livre","official_store_verbose_text":"Vendido por Tedge por Mercado Livre"},"permalink":"https:\\u002F\\u002Fwww.mercadolivre.com.br\\u002Fmouse-para-jogo-tedge-ml-gmh48-preto\\u002Fp\\u002FMLB18621000?pdp_filters=category:MLB1648#searchVariation=MLB18621000&position=4&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_952471-MLA48392889529_112021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Mouse para jogo Tedge ML-GMH48 preto"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_952471-MLA48392889529_112021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Mouse para jogo Tedge ML-GMH48 preto"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Mouse para jogo Tedge ML-GMH48 preto","class_name":"list-view-item-figure"}}},"price":{"amount":39,"currency_id":"BRL","original_price":69.55,"discount_rate":43,"discount_label":{"text":"43% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB18621000","name":"Mouse para jogo Tedge ML-GMH48 preto"},"title":"Mouse para jogo Tedge ML-GMH48 preto","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por Tedge por Mercado Livre","color":"GRAY"},"verbose_text":{"text":"Vendido por Tedge por Mercado Livre","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002Ftedge-por-mercado-livre","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"2359"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":6.33,"currency_id":"BRL","text":"7x {price}","color":"BLACK"},"tags":["free_shipping","fulfillment","cart_eligible","product_item","deal_of_the_day","best_seller_candidate"],"reviews":{"rating_average":4.8,"total":82},"item_highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"image_ratio":"0.49","category_id":"MLB1714","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"pictures_quantity":3,"value_propositions":[],"available_quantity":816},{"id":"MLB2153875378","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\\u002F\\u002Fclick1.mercadolivre.com.br\\u002Fmclics\\u002Fclicks\\u002Fexternal\\u002FMLB\\u002Fcount?a=94stkOnzXBuyRVec0xp5j%2Bhw9ejO3y3p1X4gbH2W%2F2B3Ws0oGx1t0c51IOrE3ElqJjHfsLhzB1vWo2WmDdcie9X0hA%2BhIzl3lG%2FDPl7nZBYLO8Q7IiDtfmMQ359XN3JJRnVMddXfJcmy6st5Ca8%2Fn8M6NNVimWm5tcR5gmwCpiH9qSKAXlfHIzdUHp6MpvtcvsVnVGIsis9zaY6V%2Bgd6dkihONd9BLhTNjx7XAjrj7VV%2FcG4wWRJSe6gE8hmAbXOSqbx%2BEYb5Tsj225FM92iJa1ASqSgfvfZ97Noe5INkqDamD4iEkjlYyYvkXMyKBIbbFsPWVtgt6AWPh1NTLg%2FPDSK08CzsymhXRk4SCTxIBlb1BeNuV1yjnsiec9%2F3%2F6jjT4nLt6l5xre83x%2F2V7cNIe%2FLv8StVe9KfgctIBdZhiovh7by4H5o6J6cJ4MLs3i2J%2B%2Bo8vkm15XfKbEnp8cy9699Lei2cOlARzWSzlvpljEBMMcF%2Bj0lo5hsdv4ZdIEzuXOoh9pE%2Byz1IjjszR%2FGge074oIvOnCf6b7m0VcvEeJeAsaSsFS7CdSNHOnO00tI3WBc0aK7rKMEGpzWK6ejudbyZmGdNQ%2BWxCJfIjZUEUtMHDODenalwjxKf6cNk0FmCwyiQvVuBFBjlN1czESudu3ABB%2FOvRg8CSord2HAqTZaw8i6sldx2%2BINR5eowD2bPKLa8XPmu5qZyEAtM9aFOzoVNSJ485UD7CSG%2B2Uo7mJkxQjFtd%2Bc%2FvTMV5rn7eHfjR2j2doGqFmJdwN&rb=x","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_965508-MLB50709325431_072022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Gamer F\xc3\xa1cil Intel Core I7 16gb Ssd 240gb Radeon 4gb"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_965508-MLB50709325431_072022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Gamer F\xc3\xa1cil Intel Core I7 16gb Ssd 240gb Radeon 4gb"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Pc Gamer F\xc3\xa1cil Intel Core I7 16gb Ssd 240gb Radeon 4gb","class_name":"list-view-item-figure"}}},"price":{"amount":2987,"currency_id":"BRL","original_price":3319,"discount_rate":10,"discount_label":{"text":"10% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"}},"title":"Pc Gamer F\xc3\xa1cil Intel Core I7 16gb Ssd 240gb Radeon 4gb","subtitles":{},"vertical":"CORE","is_ad":true,"ad_label":"Patrocinado","ad_version":"v2","official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002F2eletro","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":298.71,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","product_ad","cart_eligible"],"image_ratio":"0.71","category_id":"MLB1649","value_propositions":[],"available_quantity":40},{"id":"MLB1669162236","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":174969713,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","eshop","mshops","credits_profile","messages_as_seller"],"address":{"id":156518652,"comment":"","address_line":"","zip_code":"84010240","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-PR","name":"Paran\xc3\xa1"},"city":{"id":"TUxCQ1BPTjJjY2I5","name":"Ponta Grossa"}}},"permalink":"https:\\u002F\\u002Fclick1.mercadolivre.com.br\\u002Fmclics\\u002Fclicks\\u002Fexternal\\u002FMLB\\u002Fcount?a=F1%2BH3uml52TEeQUYeMd6gv8Lw7KLDRU81YyCSmeBXv9SUx%2BaO%2BzjpnbJGaK%2BtOHyVg31OsT7GKxN4tpLAks0dzD7nFwb8nAinxBuc%2BRX6mqqBzxrLzt0%2Fsj5fHhZ5XQmAG2BY5SJ48zQE3BIKvnEeby0TrchXVx4YYKBv3NxTCStdUTN0loXg7E6sDN%2Fu8H4XlW6x35mr1o6%2FjgVfsSaa%2FPOzFijT89nw0gZNYHXUPQjSR7z6zQQqLwFH%2FLuYDLheCIku3lApnKD0719pgAZLmyiqz1pwpmAWdi%2FaxUh8YJ5d3dXHId5H8oTTJ6Nxhyrow9B%2BvH8EW0TpYbSWIKrK0k5PSour9jDJyCxviHO0YCyN%2BftnJEPE5bTRJZxSqYSUOn4yTVMjHl4WbvDGs9E8MI0Khiz9IfMh3DRnVUR6GjxnzytgnlD8QPkUDHE2vA%2BDqmbrLUR7XjkixKAbAIVCVQe2awHitEQI8RFjVxUVkwQzE3Qkei53dZLKYBzShwQ3ih9mH0Hm1r69fCAOnZ%2BwPgMnL6TbK7tJLgWtdEy78Hw%2BjSjcXouB8%2Fll1qaWbqJ0kcBwD8gltT%2FOI8a6EpBNYTy2rCh7%2FakFyywvnDSVqGmeTFX2nvDmqPJ0QIdT1FfHRjKv3o8WtzBUJgrXRL4mYa5FuApqwqn58moxSnnDCb6%2FjqJNLBkB7LDyLteNDv6KW8qALbXmFba7tvuUjMgEsmEas7VGQmULjCf69B4npmur%2FvU9DBtubYvI%2FbGHjYngXpxo7SaTH4lciCPWN3zoEE%3D&rb=x","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_636240-MLB49254216707_032022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Gamer Computador Completo Ryzen 5 16gb Ssd 480gb Nfe Wifi"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_636240-MLB49254216707_032022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Gamer Computador Completo Ryzen 5 16gb Ssd 480gb Nfe Wifi"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Pc Gamer Computador Completo Ryzen 5 16gb Ssd 480gb Nfe Wifi","class_name":"list-view-item-figure"}}},"price":{"amount":3866,"currency_id":"BRL","original_price":4295.46,"discount_rate":10,"discount_label":{"text":"10% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"}},"title":"Pc Gamer Computador Completo Ryzen 5 16gb Ssd 480gb Nfe Wifi","subtitles":{},"vertical":"CORE","is_ad":true,"ad_label":"Patrocinado","ad_version":"v2","installments":{"amount":386.59,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","product_ad","cart_eligible"],"image_ratio":"1.01","category_id":"MLB1649","value_propositions":[],"available_quantity":60},{"id":"MLB1983288732","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-1983288732-computador-facil-intel-core-i5-8gb-ssd-120gb-_JM#position=25&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_955480-MLB47145766982_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador F\xc3\xa1cil Intel Core I5 8gb Ssd 120gb"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_955480-MLB47145766982_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador F\xc3\xa1cil Intel Core I5 8gb Ssd 120gb"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Computador F\xc3\xa1cil Intel Core I5 8gb Ssd 120gb","class_name":"list-view-item-figure"}}},"price":{"amount":1038,"currency_id":"BRL","original_price":1179,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador F\xc3\xa1cil Intel Core I5 8gb Ssd 120gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002F2eletro","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":100.59,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible","deal_of_the_day","best_seller_candidate"],"item_highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"image_ratio":"0.67","category_id":"MLB1649","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Cr\xc3\xa9dito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":162},{"id":"MLB2603247328","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":427664221,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","eshop","mshops","messages_as_seller"],"address":{"id":1063274754,"comment":"","address_line":"","zip_code":"03526000","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"S\xc3\xa3o Paulo"},"city":{"id":"BR-SP-44","name":"S\xc3\xa3o Paulo"}}},"permalink":"https:\\u002F\\u002Fwww.mercadolivre.com.br\\u002Fnotebook-multilaser-legacy-cloud-pc-135-vinho-141-intel-atom-z8350-2gb-de-ram-64gb-ssd-intel-hd-graphics-1366x768px-windows-10-home\\u002Fp\\u002FMLB18632909?pdp_filters=category:MLB1648#searchVariation=MLB18632909&position=5&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_913969-MLA48644020818_122021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Notebook Multilaser Legacy Cloud PC 135 vinho 14.1\\", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_913969-MLA48644020818_122021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Notebook Multilaser Legacy Cloud PC 135 vinho 14.1\\", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Notebook Multilaser Legacy Cloud PC 135 vinho 14.1\\", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home","class_name":"list-view-item-figure"}}},"price":{"amount":1269,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB18632909","name":"Notebook Multilaser Legacy Cloud PC 135 vinho 14.1\\", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"},"title":"Notebook Multilaser Legacy Cloud PC 135 vinho 14.1\\", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":123.03,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible","product_item","best_seller_candidate"],"reviews":{"rating_average":4.1,"total":134},"image_ratio":"1.23","category_id":"MLB1652","pictures_quantity":6,"value_propositions":[],"available_quantity":2},{"id":"MLB1983288643","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-1983288643-computador-completo-facil-intel-i3-04-gb-ssd-120-gb-_JM#position=26&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_875008-MLB47230148073_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Completo F\xc3\xa1cil Intel I3 04 Gb Ssd 120 Gb"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_875008-MLB47230148073_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Completo F\xc3\xa1cil Intel I3 04 Gb Ssd 120 Gb"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Computador Completo F\xc3\xa1cil Intel I3 04 Gb Ssd 120 Gb","class_name":"list-view-item-figure"}}},"price":{"amount":1522,"currency_id":"BRL","original_price":1729,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Completo F\xc3\xa1cil Intel I3 04 Gb Ssd 120 Gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002F2eletro","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":152.15,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","deal_of_the_day"],"item_highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"image_ratio":"1.61","category_id":"MLB1649","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Cr\xc3\xa9dito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":250},{"id":"MLB2614218974","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":190665974,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","mshops","credits_profile","messages_as_seller"],"address":{"id":167851878,"comment":"","address_line":"","zip_code":"13563808","country":{"id":"BR","name":"Brasil"},"city":{"id":"BR-SP-25","name":"S\xc3\xa3o Carlos"}}},"permalink":"https:\\u002F\\u002Fwww.mercadolivre.com.br\\u002Fdisco-solido-interno-kingston-sa400s37240g-240gb-preto\\u002Fp\\u002FMLB19035706?pdp_filters=category:MLB1648#searchVariation=MLB19035706&position=6&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_804287-MLA49587128302_042022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Disco s\xc3\xb3lido interno Kingston SA400S37\\u002F240G 240GB preto"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_804287-MLA49587128302_042022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Disco s\xc3\xb3lido interno Kingston SA400S37\\u002F240G 240GB preto"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Disco s\xc3\xb3lido interno Kingston SA400S37\\u002F240G 240GB preto","class_name":"list-view-item-figure"}}},"price":{"amount":179.9,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB19035706","name":"Disco s\xc3\xb3lido interno Kingston SA400S37\\u002F240G 240GB preto"},"title":"Disco s\xc3\xb3lido interno Kingston SA400S37\\u002F240G 240GB preto","subtitles":{},"vertical":"CORE","is_ad":false,"variations":{"label":"Dispon\xc3\xadvel em 2 cores"},"installments":{"amount":17.44,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","fulfillment","cart_eligible","product_item","best_seller_candidate"],"reviews":{"rating_average":4.9,"total":11121},"image_ratio":"1.43","category_id":"MLB1672","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"MAIS VENDIDO","color":"#FFFFFF"},"type":"best_seller","background":"#FF7733"},"pictures_quantity":2,"value_propositions":[],"available_quantity":14},{"id":"MLB1983278831","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-1983278831-computador-facil-intel-core-i5-8gb-ssd-240gb-_JM#position=27&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_617813-MLB47145821935_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador F\xc3\xa1cil Intel Core I5 8gb Ssd 240gb"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_617813-MLB47145821935_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador F\xc3\xa1cil Intel Core I5 8gb Ssd 240gb"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Computador F\xc3\xa1cil Intel Core I5 8gb Ssd 240gb","class_name":"list-view-item-figure"}}},"price":{"amount":1161,"currency_id":"BRL","original_price":1319,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador F\xc3\xa1cil Intel Core I5 8gb Ssd 240gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002F2eletro","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":116.07,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"0.67","category_id":"MLB1649","pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Cr\xc3\xa9dito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":157},{"id":"MLB2696339147","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":757589497,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","messages_as_seller"],"address":{"id":1171598204,"comment":"","address_line":"","zip_code":"29167650","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ1NFUmI1ZGQx","name":"Serra"}},"official_store_id":"3027","official_store_name":"Ponto Certo Eletro","official_store_text":"por Ponto Certo Eletro","official_store_verbose_text":"Vendido por Ponto Certo Eletro"},"permalink":"https:\\u002F\\u002Fwww.mercadolivre.com.br\\u002Fnotebook-multilaser-m11w-prime-pc280-prateada-tactil-116-intel-celeron-n4020-4gb-de-ram-64gb-ssd-intel-uhd-graphics-600-1366x768px-windows-11-home\\u002Fp\\u002FMLB19158523?pdp_filters=category:MLB1648#searchVariation=MLB19158523&position=7&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_626936-MLA50293629492_062022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Notebook Multilaser M11W Prime PC280 prateada t\xc3\xa1ctil 11.6\\", Intel Celeron N4020 4GB de RAM 64GB SSD, Intel UHD Graphics 600 1366x768px Windows 11 Home"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_626936-MLA50293629492_062022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Notebook Multilaser M11W Prime PC280 prateada t\xc3\xa1ctil 11.6\\", Intel Celeron N4020 4GB de RAM 64GB SSD, Intel UHD Graphics 600 1366x768px Windows 11 Home"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Notebook Multilaser M11W Prime PC280 prateada t\xc3\xa1ctil 11.6\\", Intel Celeron N4020 4GB de RAM 64GB SSD, Intel UHD Graphics 600 1366x768px Windows 11 Home","class_name":"list-view-item-figure"}}},"price":{"amount":1332,"currency_id":"BRL","original_price":2217.99,"discount_rate":39,"discount_label":{"text":"39% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB19158523","name":"Notebook Multilaser M11W Prime PC280 prateada t\xc3\xa1ctil 11.6\\", Intel Celeron N4020 4GB de RAM 64GB SSD, Intel UHD Graphics 600 1366x768px Windows 11 Home"},"title":"Notebook Multilaser M11W Prime PC280 prateada t\xc3\xa1ctil 11.6\\", Intel Celeron N4020 4GB de RAM 64GB SSD, Intel UHD Graphics 600 1366x768px Windows 11 Home","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por Ponto Certo Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por Ponto Certo Eletro","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002Fponto-certo-eletro","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3027"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":133.25,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","product_item","best_seller_candidate"],"reviews":{"rating_average":4.8,"total":26},"image_ratio":"1.31","category_id":"MLB1652","pictures_quantity":4,"value_propositions":[],"available_quantity":22},{"id":"MLB1663773541","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":12127293,"power_seller_status":"gold","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_active_borrower","mshops","messages_as_seller"],"address":{"id":1107841544,"comment":"","address_line":"","zip_code":"21341270","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-RJ","name":"Rio de Janeiro"},"city":{"id":"BR-RJ-01","name":"Rio de Janeiro"}}},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-1663773541-pc-gamer-intel-core-i5-34ghz-8gb-ssd240gb-lol-freefire-_JM#position=28&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_629183-MLB50464838976_062022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Gamer Intel Core I5 3.4ghz 8gb Ssd240gb Lol Freefire"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_629183-MLB50464838976_062022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Gamer Intel Core I5 3.4ghz 8gb Ssd240gb Lol Freefire"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Pc Gamer Intel Core I5 3.4ghz 8gb Ssd240gb Lol Freefire","class_name":"list-view-item-figure"}}},"price":{"amount":1890,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc Gamer Intel Core I5 3.4ghz 8gb Ssd240gb Lol Freefire","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":189,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","best_seller_candidate"],"image_ratio":"1.13","category_id":"MLB1649","pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Cr\xc3\xa9dito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":416},{"id":"MLB1837442511","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":459757635,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","messages_as_seller"],"address":{"id":1089134583,"comment":"","address_line":"","zip_code":"15025050","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"S\xc3\xa3o Paulo"},"city":{"id":"BR-SP-28","name":"S\xc3\xa3o Jos\xc3\xa9 do Rio Preto"}}},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-1837442511-pc-computador-cpu-i5-ssd-480gb-16gb-ram-fonte-500w-_JM#position=29&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_772003-MLB50614267207_072022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Computador Cpu I5 \\u002F Ssd 480gb \\u002F 16gb Ram \\u002F Fonte 500w"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_772003-MLB50614267207_072022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Computador Cpu I5 \\u002F Ssd 480gb \\u002F 16gb Ram \\u002F Fonte 500w"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Pc Computador Cpu I5 \\u002F Ssd 480gb \\u002F 16gb Ram \\u002F Fonte 500w","class_name":"list-view-item-figure"}}},"price":{"amount":1889,"currency_id":"BRL","original_price":2221.9,"discount_rate":15,"discount_label":{"text":"15% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc Computador Cpu I5 \\u002F Ssd 480gb \\u002F 16gb Ram \\u002F Fonte 500w","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":188.86,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"0.86","category_id":"MLB1649","pictures_quantity":10,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Cr\xc3\xa9dito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":272},{"id":"MLB1983279452","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-1983279452-computador-facil-intel-core-i3-10100f-8gb-ddr4-ssd-240gb-_JM#position=30&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_865725-MLB47234340005_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador F\xc3\xa1cil Intel Core I3 10100f 8gb Ddr4 Ssd 240gb"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_865725-MLB47234340005_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador F\xc3\xa1cil Intel Core I3 10100f 8gb Ddr4 Ssd 240gb"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Computador F\xc3\xa1cil Intel Core I3 10100f 8gb Ddr4 Ssd 240gb","class_name":"list-view-item-figure"}}},"price":{"amount":1856,"currency_id":"BRL","original_price":2109,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador F\xc3\xa1cil Intel Core I3 10100f 8gb Ddr4 Ssd 240gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002F2eletro","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":185.59,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"0.67","category_id":"MLB1649","pictures_quantity":4,"rebates":[],"value_propositions":[],"available_quantity":36},{"id":"MLB2610297318","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":321947226,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","eshop","mshops","credits_profile","messages_as_seller"],"address":{"id":940594398,"comment":"","address_line":"","zip_code":"03376000","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"S\xc3\xa3o Paulo"},"city":{"id":"BR-SP-44","name":"S\xc3\xa3o Paulo"}}},"permalink":"https:\\u002F\\u002Fclick1.mercadolivre.com.br\\u002Fmclics\\u002Fclicks\\u002Fexternal\\u002FMLB\\u002Fcount?a=GeV8zlag4h1%2FXCJd28LNrAS7KocOG0PQaNkymMXw3YZyKMix2Ei8ep6AFc%2B4HtPqHVJ1Se3UkRi1Rb4a4ySEMJvVUjLkVhSotB3rB%2F3AF5f9kYbST4vLiGlpw7lmDKY9Jgq2smW4wMb0LTCg5Wc2xEfdgk6WJeVLT0F95hv3pNOvlvcodukhabFHg2pEfoKKv9C%2FznRmRBxubXFkBCHUvuO5i3MafrcyxzNNeKbhvHBA26gGQPz2aQp5VQ%2FaovnOPH9TfU%2F2msgMLnmrlk3RYOwOyVONx6SrCR5pF3TC%2FmVb%2BYXzodwMEZryZjrsz%2FGXWBcEYgcUGUkwAhivy49Z32yYFlQFf4vVJBDjqZ7HZ%2BpJqYp4rptv4A7cCijl3lqqUXGfZVlPFvgiq7rRCSdDNtb9vjM7cw4PsueyX3u%2BONUVZkktJoEoFKJbe46AyQgJrkSceGNcq%2BRBlU7keoPxOKh2j19rZzx8xMFKjN%2FDNaekz%2FQVdMC3ZLJDZpgGZeCVbaxYTDccRctgJWXoOo%2B9dxfHD1G0S7TyS57iy4qBC8H02dj8NdG5LiJdjVP3RRIeeLhGE8WdoxZKaEZMkVntpEaJBrqJsoaH%2BahcsKvnXJQx4AkJwSrvrKa8BYMHt6xVPWyPQBXG9KEOT7udVG%2FRLYGc8v3XHmmdcf%2BO0rfxATWWlaf3nBdcQR%2FV0N9iSRavAp1aYws%2BOkPcpIGWL9qJtYbMdCEcuQ2wRCosVD8A14ABxSQk4D%2F947%2BaaVRxPsxKScSoe1n4%2Bsboj3d3SQ%3D%3D&rb=x","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_905103-MLB49635935018_042022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Computador Cpu Intel Core I3 Hd 1 Tb \\u002F 8gb Mem\xc3\xb3ria Ram"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_905103-MLB49635935018_042022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Computador Cpu Intel Core I3 Hd 1 Tb \\u002F 8gb Mem\xc3\xb3ria Ram"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Pc Computador Cpu Intel Core I3 Hd 1 Tb \\u002F 8gb Mem\xc3\xb3ria Ram","class_name":"list-view-item-figure"}}},"price":{"amount":1377,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"}},"title":"Pc Computador Cpu Intel Core I3 Hd 1 Tb \\u002F 8gb Mem\xc3\xb3ria Ram","subtitles":{},"vertical":"CORE","is_ad":true,"ad_label":"Patrocinado","ad_version":"v2","installments":{"amount":137.68,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","product_ad","cart_eligible"],"image_ratio":"1.03","category_id":"MLB1649","value_propositions":[],"available_quantity":4},{"id":"MLB2210259535","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\\u002F\\u002Fclick1.mercadolivre.com.br\\u002Fmclics\\u002Fclicks\\u002Fexternal\\u002FMLB\\u002Fcount?a=YAqpLVM8Plx3fVYfKbG97aoVl4UTPeSnTJkhCB7TOWSC8UZzcEWC%2BNwEdn9bMGURPCTWN0poBzbBvAKSqyR9ZZpZDumDXP9CYxtOw%2FH8AuIQ4Ci2In%2BJa82%2BjA6%2Bguaj2AahVvTxahhXp52kNj9zoD%2BXythp8dvZgjV0u4m7Dkzl0DVJrwJYSLqx3b%2BlNjrieVd2tt1KgDoGWQM3hbyfbrir0%2FBkNuAkjhelpSNswcLCPtQgiT4znCUmIz9WPIa%2FibMAdLei0%2BSph5MrlVwrElljHL7S9ocnvawqOPnSXPktcPEa%2BhJBkk9zfjv7Mg7NWB8k5mDhWJ32fvZQD4N7An9sswGM1eCmV5R6iZekq9G2PgzgLPMLOaTTF8f3E0tGPmwAFqB%2BDDe2LBi5tKLota6FONRrq%2B5234L8UbI4jIsXbBuDYIgphUXjB2pjmkhKuxMBCmCR6dDsU2rwuLG2L1Qb%2FmSmlD635nAc36ItmfSIr8QlZjB570ROkjOFO8zzPQJzWsb7TIAVE0u%2FPxQlB9neWB0u2vcjd87XiPvWOcWSy7ZFVUZENRzCQ245EQAJThl1NsCuJOqlxV76A7e96ssT7WB81pKtPh7tq2pPuXFjjHLhVcfK5XgqH5WmDDun9tbFG2lQw7IsL6PQrBV4mapmVjefByrL3pL3pYNR4Wv00qAsMow%2Fu4XmyIyDRO8wdMjAB0RoWJWQ64or%2FWxLyAaWyHbmrxn8KK8FzZrle34zGQ0Y24bHcWgjNOSpMcDFI0VaoWiTxDU2T%2FdNcgh2&rb=x","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_824487-MLB49401202035_032022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Gamer Barato Completo Intel I5 16gb Hd 1tb Geforce 2gb"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_824487-MLB49401202035_032022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Gamer Barato Completo Intel I5 16gb Hd 1tb Geforce 2gb"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Pc Gamer Barato Completo Intel I5 16gb Hd 1tb Geforce 2gb","class_name":"list-view-item-figure"}}},"price":{"amount":3122,"currency_id":"BRL","original_price":3122.1,"discount_rate":0,"rebate_price":{"text":"em","color":"#000000"}},"title":"Pc Gamer Barato Completo Intel I5 16gb Hd 1tb Geforce 2gb","subtitles":{},"vertical":"CORE","is_ad":true,"ad_label":"Patrocinado","ad_version":"v2","official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002F2eletro","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":312.21,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","product_ad","cart_eligible"],"image_ratio":"1.46","category_id":"MLB1649","value_propositions":[],"available_quantity":39},{"id":"MLB2669020387","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":735605761,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","messages_as_seller"],"address":{"id":1170353570,"comment":"","address_line":"","zip_code":"01208001","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"S\xc3\xa3o Paulo"},"city":{"id":"BR-SP-44","name":"S\xc3\xa3o Paulo"}}},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-2669020387-cpu-desktop-core-2-duo-4gb-ssd-120gb-wi-fi-windows-10-_JM#position=31&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_794520-MLB50118705093_052022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Cpu Desktop Core 2 Duo \\u002F 4gb \\u002F Ssd 120gb \\u002F Wi-fi\\u002F Windows 10"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_794520-MLB50118705093_052022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Cpu Desktop Core 2 Duo \\u002F 4gb \\u002F Ssd 120gb \\u002F Wi-fi\\u002F Windows 10"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Cpu Desktop Core 2 Duo \\u002F 4gb \\u002F Ssd 120gb \\u002F Wi-fi\\u002F Windows 10","class_name":"list-view-item-figure"}}},"price":{"amount":779,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Cpu Desktop Core 2 Duo \\u002F 4gb \\u002F Ssd 120gb \\u002F Wi-fi\\u002F Windows 10","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":75.52,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible"],"image_ratio":"1.14","category_id":"MLB1649","pictures_quantity":2,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Cr\xc3\xa9dito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":860},{"id":"MLB2610554493","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":23059556,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","eshop","credits_profile","messages_as_seller"],"address":{"id":162182874,"comment":"","address_line":"","zip_code":"02271000","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"S\xc3\xa3o Paulo"},"city":{"id":"BR-SP-44","name":"S\xc3\xa3o Paulo"}}},"permalink":"https:\\u002F\\u002Fwww.mercadolivre.com.br\\u002Fdisco-solido-interno-kingston-suv400s37240g-240gb\\u002Fp\\u002FMLB6189662?pdp_filters=category:MLB1648#searchVariation=MLB6189662&position=8&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_760570-MLA40662362283_022020-V.jpg","tags":{"heigth":160,"width":160,"alt":"Disco s\xc3\xb3lido interno Kingston SUV400S37\\u002F240G 240GB"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_760570-MLA40662362283_022020-W.jpg","tags":{"heigth":284,"width":284,"alt":"Disco s\xc3\xb3lido interno Kingston SUV400S37\\u002F240G 240GB"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Disco s\xc3\xb3lido interno Kingston SUV400S37\\u002F240G 240GB","class_name":"list-view-item-figure"}}},"price":{"amount":195.89,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB6189662","name":"Disco s\xc3\xb3lido interno Kingston SUV400S37\\u002F240G 240GB"},"title":"Disco s\xc3\xb3lido interno Kingston SUV400S37\\u002F240G 240GB","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":18.99,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible","product_item","best_seller_candidate"],"reviews":{"rating_average":4.9,"total":1102},"image_ratio":"1.40","category_id":"MLB1672","pictures_quantity":3,"value_propositions":[],"available_quantity":594},{"id":"MLB2199976353","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":151392870,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","eshop","mshops","messages_as_seller"],"address":{"id":1181731207,"comment":"","address_line":"","zip_code":"14730000","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"S\xc3\xa3o Paulo"},"city":{"id":"QlItU1BNb250ZSBBenVsIFBhdWxpc3Rh","name":"Monte Azul Paulista"}}},"permalink":"https:\\u002F\\u002Fwww.mercadolivre.com.br\\u002Fnotebook-multilaser-legacy-book-pc319-preta-14-intel-pentium-n3700-4gb-de-ram-64gb-hdd-intel-hd-graphics-braswell-1366x768px-windows-10-home\\u002Fp\\u002FMLB18941410?pdp_filters=category:MLB1648#searchVariation=MLB18941410&position=9&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_683939-MLA49170389796_022022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Notebook Multilaser Legacy Book PC319 preta 14\\", Intel Pentium N3700 4GB de RAM 64GB HDD, Intel HD Graphics (Braswell) 1366x768px Windows 10 Home"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_683939-MLA49170389796_022022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Notebook Multilaser Legacy Book PC319 preta 14\\", Intel Pentium N3700 4GB de RAM 64GB HDD, Intel HD Graphics (Braswell) 1366x768px Windows 10 Home"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Notebook Multilaser Legacy Book PC319 preta 14\\", Intel Pentium N3700 4GB de RAM 64GB HDD, Intel HD Graphics (Braswell) 1366x768px Windows 10 Home","class_name":"list-view-item-figure"}}},"price":{"amount":2250,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB18941410","name":"Notebook Multilaser Legacy Book PC319 preta 14\\", Intel Pentium N3700 4GB de RAM 64GB HDD, Intel HD Graphics (Braswell) 1366x768px Windows 10 Home"},"title":"Notebook Multilaser Legacy Book PC319 preta 14\\", Intel Pentium N3700 4GB de RAM 64GB HDD, Intel HD Graphics (Braswell) 1366x768px Windows 10 Home","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":218.13,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible","product_item","best_seller_candidate"],"reviews":{"rating_average":4.5,"total":36},"image_ratio":"1.22","category_id":"MLB1652","pictures_quantity":4,"value_propositions":[],"available_quantity":1},{"id":"MLB1986322829","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":125349787,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","mshops","messages_as_seller"],"address":{"id":1057749874,"comment":"","address_line":"","zip_code":"02415002","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"S\xc3\xa3o Paulo"},"city":{"id":"BR-SP-44","name":"S\xc3\xa3o Paulo"}}},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-1986322829-pc-computador-cpu-intel-core-i5-ssd-240gb-8gb-memoria-ram-_JM#position=32&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_804398-MLB47170053830_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_804398-MLB47170053830_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram","class_name":"list-view-item-figure"}}},"price":{"amount":1298,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Mem\xc3\xb3ria Ram","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":129.8,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","best_seller_candidate"],"image_ratio":"0.92","category_id":"MLB1649","pictures_quantity":1,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Cr\xc3\xa9dito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":777},{"id":"MLB1680063928","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":459757635,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","messages_as_seller"],"address":{"id":1089134583,"comment":"","address_line":"","zip_code":"15025050","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"S\xc3\xa3o Paulo"},"city":{"id":"BR-SP-28","name":"S\xc3\xa3o Jos\xc3\xa9 do Rio Preto"}}},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-1680063928-pc-computador-cpu-core-i5-3470-ssd-240gb-16gb-memoria-ram-_JM#position=33&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_670003-MLB50614039338_072022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Computador Cpu Core I5 3470 Ssd 240gb + 16gb Mem\xc3\xb3ria Ram"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_670003-MLB50614039338_072022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Computador Cpu Core I5 3470 Ssd 240gb + 16gb Mem\xc3\xb3ria Ram"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Pc Computador Cpu Core I5 3470 Ssd 240gb + 16gb Mem\xc3\xb3ria Ram","class_name":"list-view-item-figure"}}},"price":{"amount":1598,"currency_id":"BRL","original_price":2219.9,"discount_rate":28,"discount_label":{"text":"28% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc Computador Cpu Core I5 3470 Ssd 240gb + 16gb Mem\xc3\xb3ria Ram","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":159.83,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","best_seller_candidate"],"image_ratio":"0.86","category_id":"MLB1649","pictures_quantity":10,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Cr\xc3\xa9dito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":194},{"id":"MLB1899027328","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":155871484,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","eshop","mshops","credits_profile","messages_as_seller"],"address":{"id":170298963,"comment":"","address_line":"","zip_code":"01039000","country":{"id":"BR","name":"Brasil"},"city":{"id":"BR-SP-44","name":"S\xc3\xa3o Paulo"}}},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-1899027328-cpu-pc-torre-core-i5-3470-320ghz-8gb-ssd-240gb-com-nf-_JM#position=34&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_869749-MLB47473329590_092021-V.jpg","tags":{"heigth":160,"width":160,"alt":" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_869749-MLB47473329590_092021-W.jpg","tags":{"heigth":284,"width":284,"alt":" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf","class_name":"list-view-item-figure"}}},"price":{"amount":1370,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":132.82,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","fulfillment","cart_eligible","best_seller_candidate"],"image_ratio":"1.07","category_id":"MLB1649","pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Cr\xc3\xa9dito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":6},{"id":"MLB1506134141","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":306628733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","eshop","mshops","credits_profile","messages_as_seller"],"address":{"id":1052266839,"comment":"","address_line":"","zip_code":"09715350","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"S\xc3\xa3o Paulo"},"city":{"id":"BR-SP-39","name":"S\xc3\xa3o Bernardo do Campo"}}},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-1506134141-cpu-desktop-dell-core-i5-32ghz-8gb-ssd-240gb-win10-_JM#position=37&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_912432-MLB49974695962_052022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Cpu Desktop Dell Core-i5 3.2ghz 8gb Ssd 240gb Win10"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_912432-MLB49974695962_052022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Cpu Desktop Dell Core-i5 3.2ghz 8gb Ssd 240gb Win10"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Cpu Desktop Dell Core-i5 3.2ghz 8gb Ssd 240gb Win10","class_name":"list-view-item-figure"}}},"price":{"amount":1812,"currency_id":"BRL","original_price":2059,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Cpu Desktop Dell Core-i5 3.2ghz 8gb Ssd 240gb Win10","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":175.67,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible","best_seller_candidate"],"image_ratio":"0.77","category_id":"MLB1649","pictures_quantity":5,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Cr\xc3\xa9dito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":60},{"id":"MLB1983288676","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-1983288676-computador-facil-intel-core-i3-8gb-ssd-240gb-_JM#position=38&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_699910-MLB47145668957_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador F\xc3\xa1cil Intel Core I3 8gb Ssd 240gb"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_699910-MLB47145668957_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador F\xc3\xa1cil Intel Core I3 8gb Ssd 240gb"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Computador F\xc3\xa1cil Intel Core I3 8gb Ssd 240gb","class_name":"list-view-item-figure"}}},"price":{"amount":1038,"currency_id":"BRL","original_price":1180,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador F\xc3\xa1cil Intel Core I3 8gb Ssd 240gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002F2eletro","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":103.84,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","deal_of_the_day"],"item_highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"image_ratio":"0.67","category_id":"MLB1649","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Cr\xc3\xa9dito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":128},{"id":"MLB1983279518","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-1983279518-computador-completo-facil-intel-i5-08-gb-ddr3-ssd-120-gb-_JM#position=39&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_932170-MLB47230342741_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Completo F\xc3\xa1cil Intel I5 08 Gb Ddr3 Ssd 120 Gb"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_932170-MLB47230342741_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Completo F\xc3\xa1cil Intel I5 08 Gb Ddr3 Ssd 120 Gb"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Computador Completo F\xc3\xa1cil Intel I5 08 Gb Ddr3 Ssd 120 Gb","class_name":"list-view-item-figure"}}},"price":{"amount":1768,"currency_id":"BRL","original_price":2009,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Completo F\xc3\xa1cil Intel I5 08 Gb Ddr3 Ssd 120 Gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002F2eletro","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":176.79,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"1.71","category_id":"MLB1649","pictures_quantity":4,"rebates":[],"value_propositions":[],"available_quantity":148},{"id":"MLB2022879801","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-2022879801-pc-gamer-completo-facil-intel-i5-3-16gb-ssd-240gb-gt420-4gb-_JM#position=40&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_749265-MLB50697629795_072022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Gamer Completo F\xc3\xa1cil Intel I5 3\xc2\xaa 16gb Ssd 240gb Gt420 4gb"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_749265-MLB50697629795_072022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Gamer Completo F\xc3\xa1cil Intel I5 3\xc2\xaa 16gb Ssd 240gb Gt420 4gb"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Pc Gamer Completo F\xc3\xa1cil Intel I5 3\xc2\xaa 16gb Ssd 240gb Gt420 4gb","class_name":"list-view-item-figure"}}},"price":{"amount":3106,"currency_id":"BRL","original_price":3529,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc Gamer Completo F\xc3\xa1cil Intel I5 3\xc2\xaa 16gb Ssd 240gb Gt420 4gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002F2eletro","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":310.55,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"1.39","category_id":"MLB1649","pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Cr\xc3\xa9dito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":46},{"id":"MLB2096063553","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-2096063553-computador-facil-intel-core-i3-4gb-ssd-120gb-_JM#position=41&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_766782-MLB47145738530_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador F\xc3\xa1cil Intel Core I3 4gb Ssd 120gb"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_766782-MLB47145738530_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador F\xc3\xa1cil Intel Core I3 4gb Ssd 120gb"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Computador F\xc3\xa1cil Intel Core I3 4gb Ssd 120gb","class_name":"list-view-item-figure"}}},"price":{"amount":826.32,"currency_id":"BRL","original_price":939,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador F\xc3\xa1cil Intel Core I3 4gb Ssd 120gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002F2eletro","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":80.11,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible"],"image_ratio":"0.67","category_id":"MLB1649","pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Cr\xc3\xa9dito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":156},{"id":"MLB2161556728","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":480575953,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","eshop","mshops","credits_profile","messages_as_seller"],"address":{"id":1198104981,"comment":"","address_line":"","zip_code":"13330210","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"S\xc3\xa3o Paulo"},"city":{"id":"BR-SP-10","name":"Indaiatuba"}}},"permalink":"https:\\u002F\\u002Fclick1.mercadolivre.com.br\\u002Fmclics\\u002Fclicks\\u002Fexternal\\u002FMLB\\u002Fcount?a=kjBFWOIfeQlMHdWANCwPV%2BR1xYh%2BOBx2sEwU%2FPiwfjPaySRx%2Bd97nHHukWqK6ZZVlZAt76SvwdgLdSKS37kCcD9Rif%2BJ8p6lYxtJkZ3kfwvX%2BtX0zRcRVkH2zJlBAjI%2Bgic9u%2Fff%2B04P1V1EFkmpujOPy5RyaicJnabe0%2B765wSt7hr6K8tnY1wcfX6RpRZjQpvo94VVFeoQNK3zoQHc6y38TPD3AiVUcpCvDYDf2AJcZxRjHBuH7Y%2B7QhmjTDisSZVtT%2F15wrLIps19o3t8qwf%2BbGWSO7pWrXtgoFMmAGFepHzuNEpRtQRAjuOvEktz6ut%2FzQnvYmaMsOcZsdicjDvdwzuLxW28hanyb%2FPz8WpAreKkbiPb0s1bIt3a9wub%2BqZ2DpqbQfA3mH2Ifgv6lXuJrm%2BSj8L97nCItYy2t62rfHke3N0j9ThXFghPcDAgAvAQDlSfHcRLJJawRR6kG69Lt3meA%2B5macZX4aHEueSTCCi46PlBAft4FCDTaj3uQAFd6k130pVwk%2FbHO7l4x1Ymmnra2ijgVx%2BgsSSb2y2M7mQaaQJ18%2B6P63JXo6IiL8k508Oi8qwstIXdPUEX5XpQ9Bi8BitNnEHp7%2FuVtjTrWPPOCjB2ZgKOvgdPLAtsB8mNvWZXT94q0Wdqe1FXjsq%2FHG99hGJOXP9XipPaEYFe0Ic01OUfgETIat8J%2Be4YE1PO5Fqc3gSzOUuNTUZh8LfR2NZvcthmosjrleeHH%2BYhNPCMjUgOkADduLf2Op4V5e1%2F7LDx%2BbjTAVH3Pw%3D%3D&rb=x","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_882634-MLB48986961738_012022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Ssd Kingston Q500 Disco S\xc3\xb3lido Interno 240gb Vers\xc3\xa3o 2023"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_882634-MLB48986961738_012022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Ssd Kingston Q500 Disco S\xc3\xb3lido Interno 240gb Vers\xc3\xa3o 2023"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Ssd Kingston Q500 Disco S\xc3\xb3lido Interno 240gb Vers\xc3\xa3o 2023","class_name":"list-view-item-figure"}}},"price":{"amount":229.9,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"}},"title":"Ssd Kingston Q500 Disco S\xc3\xb3lido Interno 240gb Vers\xc3\xa3o 2023","subtitles":{},"vertical":"CORE","is_ad":true,"ad_label":"Patrocinado","ad_version":"v2","installments":{"amount":22.29,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","product_ad","cart_eligible"],"image_ratio":"0.74","category_id":"MLB1672","value_propositions":[],"available_quantity":532},{"id":"MLB1983287147","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\\u002F\\u002Fclick1.mercadolivre.com.br\\u002Fmclics\\u002Fclicks\\u002Fexternal\\u002FMLB\\u002Fcount?a=582f%2FoYl1X%2BFutuD2yRC5H4qq1VPXHnAzz8eV4XElq4C8oxbgVOHEV9wmRut9klpXaYwRDFfj0x0cPCWDs%2Fu8xHVXqq4XkVmQHCehlHZTGARsw1lVwPBFAw1O9PB5W0p873uSjnfD5xm%2Ft9yWd%2BWEpPFZ1jkkqLYiLr3y6g%2Fv6CyhpsuMvWIoDjELNcnU81HlAGPyuoyj95yDHbc1eqCBaJ%2FHo5Wd%2F6RcELjkKI85H0M%2FJvokxa5gLoW%2BRPTW4SJ7SeZAWhV54oE51q2tr7UvIyzM%2FTxwCmmSGXbxNaenZESmxXjvRXd2Uwczlg4FjwdafTwCqF0ihSPPu%2Fscx61RL0BUCiFUvcf03gHkR8MKZfCt5dHg%2FalxH4eA9DJFB5c0q55QvCbBqyGbNjFyA3l6MaKiUtgu73swtd%2F1uNbN%2BU5IZPjR6hw2G5OQOBDzItdZgnNOhJJXwdzWZwO2fS%2Bbd2PufyOn%2Bay6Nw53NfTXN%2FHvgINyaIr%2BeqwHqOk3lx2MnanZDs%2Blx%2FKoQQSflDy4xCo%2BCOTsmS2xwHm4USuFa3iYGyVXnAXsWG7BKQCxI3GTh%2BxCuwXyH%2BPjUDclCq%2B2bwn4y7wXg6fxJtcJCoQOL7a5ZTPAKSj45k6eVpji6ItiWNxAMbCd%2Bb%2BIPw1CoTyWSVWOzGBRh%2FdN7Y4ZEmJKlKM%2FO9rmuRxBdS%2Belq6oyQqGWQV7WwKDc6NLxAle3WzlfWDrBHV1Wua8Y7NbTTAgcEE5ly%2FVJCUypbuZJB%2BirAonJD8tGImHJiIuoEaYi99&rb=x","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_786420-MLB50697456897_072022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Gamer Intel Core I5 3\xc2\xaa Gera\xc3\xa7\xc3\xa3o 16gb Gt 420 4gb Ssd 240gb"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_786420-MLB50697456897_072022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Gamer Intel Core I5 3\xc2\xaa Gera\xc3\xa7\xc3\xa3o 16gb Gt 420 4gb Ssd 240gb"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Pc Gamer Intel Core I5 3\xc2\xaa Gera\xc3\xa7\xc3\xa3o 16gb Gt 420 4gb Ssd 240gb","class_name":"list-view-item-figure"}}},"price":{"amount":2366,"currency_id":"BRL","original_price":2629,"discount_rate":10,"discount_label":{"text":"10% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"}},"title":"Pc Gamer Intel Core I5 3\xc2\xaa Gera\xc3\xa7\xc3\xa3o 16gb Gt 420 4gb Ssd 240gb","subtitles":{},"vertical":"CORE","is_ad":true,"ad_label":"Patrocinado","ad_version":"v2","official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002F2eletro","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":236.61,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","product_ad","cart_eligible"],"image_ratio":"0.72","category_id":"MLB1649","value_propositions":[],"available_quantity":50},{"id":"MLB2103940157","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":731415204,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","mshops","credits_profile","messages_as_seller"],"address":{"id":1188611289,"comment":"","address_line":"","zip_code":"06803000","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"S\xc3\xa3o Paulo"},"city":{"id":"QlItU1BFbWJ1IGRhcyBBcnRlcw","name":"Embu das Artes"}}},"permalink":"https:\\u002F\\u002Fwww.mercadolivre.com.br\\u002Fnotebook-multilaser-legacy-cloud-pc131-gray-14-intel-atom-x5-z8350-2gb-de-ram-32gb-ssd-1366x768px-windows-10-home\\u002Fp\\u002FMLB17739841?pdp_filters=category:MLB1648#searchVariation=MLB17739841&position=10&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_663420-MLA45638372671_042021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Notebook Multilaser Legacy Cloud PC131 gray 14\\", Intel Atom X5-Z8350 2GB de RAM 32GB SSD 1366x768px Windows 10 Home"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_663420-MLA45638372671_042021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Notebook Multilaser Legacy Cloud PC131 gray 14\\", Intel Atom X5-Z8350 2GB de RAM 32GB SSD 1366x768px Windows 10 Home"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Notebook Multilaser Legacy Cloud PC131 gray 14\\", Intel Atom X5-Z8350 2GB de RAM 32GB SSD 1366x768px Windows 10 Home","class_name":"list-view-item-figure"}}},"price":{"amount":1324,"currency_id":"BRL","original_price":1650,"discount_rate":19,"discount_label":{"text":"19% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB17739841","name":"Notebook Multilaser Legacy Cloud PC131 gray 14\\", Intel Atom X5-Z8350 2GB de RAM 32GB SSD 1366x768px Windows 10 Home"},"title":"Notebook Multilaser Legacy Cloud PC131 gray 14\\", Intel Atom X5-Z8350 2GB de RAM 32GB SSD 1366x768px Windows 10 Home","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":132.4,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","product_item","best_seller_candidate"],"reviews":{"rating_average":3.8,"total":158},"image_ratio":"1.30","category_id":"MLB1652","pictures_quantity":7,"value_propositions":[],"available_quantity":1},{"id":"MLB2724080796","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":277842919,"power_seller_status":"gold","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":311310120,"comment":"","address_line":"","zip_code":"18087170","country":{"id":"BR","name":"Brasil"},"city":{"id":"BR-SP-29","name":"Sorocaba"}},"official_store_id":"1367","official_store_name":"SincPlace","official_store_text":"por SincPlace","official_store_verbose_text":"Vendido por SincPlace"},"permalink":"https:\\u002F\\u002Fwww.mercadolivre.com.br\\u002Fnotebook-compaq-presario-cq-25-gray-141-intel-pentium-n3700-4gb-de-ram-120gb-ssd-intel-hd-graphics-1366x768px-windows-10-home\\u002Fp\\u002FMLB17966310?pdp_filters=category:MLB1648#searchVariation=MLB17966310&position=13&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_686771-MLA48742378207_012022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Notebook Compaq Presario CQ-25 gray 14.1\\", Intel Pentium N3700 4GB de RAM 120GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_686771-MLA48742378207_012022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Notebook Compaq Presario CQ-25 gray 14.1\\", Intel Pentium N3700 4GB de RAM 120GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Notebook Compaq Presario CQ-25 gray 14.1\\", Intel Pentium N3700 4GB de RAM 120GB SSD, Intel HD Graphics 1366x768px Windows 10 Home","class_name":"list-view-item-figure"}}},"price":{"amount":1979,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB17966310","name":"Notebook Compaq Presario CQ-25 gray 14.1\\", Intel Pentium N3700 4GB de RAM 120GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"},"title":"Notebook Compaq Presario CQ-25 gray 14.1\\", Intel Pentium N3700 4GB de RAM 120GB SSD, Intel HD Graphics 1366x768px Windows 10 Home","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por SincPlace","color":"GRAY"},"verbose_text":{"text":"Vendido por SincPlace","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002Fsincplace","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"1367"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":197.9,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","product_item"],"reviews":{"rating_average":4,"total":61},"image_ratio":"1.38","category_id":"MLB1652","pictures_quantity":3,"value_propositions":[],"available_quantity":22},{"id":"MLB1983296789","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-1983296789-computador-facil-completo-intel-core-i5-8gb-hd-1-tb-_JM#position=42&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_940955-MLB47230441512_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador F\xc3\xa1cil Completo Intel Core I5 8gb Hd 1 Tb"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_940955-MLB47230441512_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador F\xc3\xa1cil Completo Intel Core I5 8gb Hd 1 Tb"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Computador F\xc3\xa1cil Completo Intel Core I5 8gb Hd 1 Tb","class_name":"list-view-item-figure"}}},"price":{"amount":1953,"currency_id":"BRL","original_price":2219,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador F\xc3\xa1cil Completo Intel Core I5 8gb Hd 1 Tb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002F2eletro","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":195.27,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","deal_of_the_day"],"item_highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"image_ratio":"1.71","category_id":"MLB1649","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Cr\xc3\xa9dito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":150},{"id":"MLB2618767197","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":735605761,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","messages_as_seller"],"address":{"id":1170353570,"comment":"","address_line":"","zip_code":"01208001","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"S\xc3\xa3o Paulo"},"city":{"id":"BR-SP-44","name":"S\xc3\xa3o Paulo"}}},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-2618767197-cpu-desktop-core-i3-ssd-240gb-4gb-memoria-wi-fi-win10-_JM#position=43&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_638057-MLB49747629097_042022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Cpu Desktop Core I3 \\u002F Ssd 240gb \\u002F 4gb Mem\xc3\xb3ria \\u002F Wi-fi \\u002Fwin10"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_638057-MLB49747629097_042022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Cpu Desktop Core I3 \\u002F Ssd 240gb \\u002F 4gb Mem\xc3\xb3ria \\u002F Wi-fi \\u002Fwin10"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Cpu Desktop Core I3 \\u002F Ssd 240gb \\u002F 4gb Mem\xc3\xb3ria \\u002F Wi-fi \\u002Fwin10","class_name":"list-view-item-figure"}}},"price":{"amount":1012,"currency_id":"BRL","original_price":1149.99,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Cpu Desktop Core I3 \\u002F Ssd 240gb \\u002F 4gb Mem\xc3\xb3ria \\u002F Wi-fi \\u002Fwin10","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":101.2,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"1.01","category_id":"MLB1649","pictures_quantity":2,"rebates":[],"value_propositions":[],"available_quantity":859},{"id":"MLB2145104504","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":564615359,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","eshop","mshops","large_seller","credits_profile","messages_as_seller"],"address":{"id":1101840087,"comment":"","address_line":"","zip_code":"04571900","country":{"id":"BR","name":"Brasil"},"city":{"id":"BR-SP-44","name":"S\xc3\xa3o Paulo"}},"official_store_id":"2972","official_store_name":"VIKING","official_store_text":"por VIKING","official_store_verbose_text":"Vendido por VIKING"},"permalink":"https:\\u002F\\u002Fwww.mercadolivre.com.br\\u002Fmonitor-pctop-mlp170hdmi-led-17-preto-100v240v\\u002Fp\\u002FMLB18459542?pdp_filters=category:MLB1648#searchVariation=MLB18459542&position=14&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_734440-MLA47873401457_102021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Monitor Pctop MLP170HDMI led 17\xc2\xa0\\" preto 100V\\u002F240V"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_734440-MLA47873401457_102021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Monitor Pctop MLP170HDMI led 17\xc2\xa0\\" preto 100V\\u002F240V"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Monitor Pctop MLP170HDMI led 17\xc2\xa0\\" preto 100V\\u002F240V","class_name":"list-view-item-figure"}}},"price":{"amount":394,"currency_id":"BRL","original_price":579,"discount_rate":31,"discount_label":{"text":"31% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB18459542","name":"Monitor Pctop MLP170HDMI led 17\xc2\xa0\\" preto 100V\\u002F240V"},"title":"Monitor Pctop MLP170HDMI led 17\xc2\xa0\\" preto 100V\\u002F240V","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por VIKING","color":"GRAY"},"verbose_text":{"text":"Vendido por VIKING","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002Fviking","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"2972"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":38.2,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","fulfillment","cart_eligible","product_item","best_seller_candidate"],"reviews":{"rating_average":4,"total":649},"image_ratio":"1.26","category_id":"MLB99245","pictures_quantity":2,"value_propositions":[],"available_quantity":2813},{"id":"MLB2626699161","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":173063257,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","eshop","mshops","messages_as_seller"],"address":{"id":1069051997,"comment":"","address_line":"","zip_code":"88708708","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ1RVQjk1ODEw","name":"Tubar\xc3\xa3o"}},"official_store_id":"1587","official_store_name":"Imperiums","official_store_text":"por Imperiums","official_store_verbose_text":"Vendido por Imperiums"},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-2626699161-pc-gamer-completo-i5-16gb-1tb-monitor-kit-gamer-full-hd-_JM#position=44&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_637939-MLB49359922906_032022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Gamer Completo I5 16gb 1tb Monitor + Kit Gamer Full Hd"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_637939-MLB49359922906_032022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Gamer Completo I5 16gb 1tb Monitor + Kit Gamer Full Hd"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Pc Gamer Completo I5 16gb 1tb Monitor + Kit Gamer Full Hd","class_name":"list-view-item-figure"}}},"price":{"amount":2507,"currency_id":"BRL","original_price":2849,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc Gamer Completo I5 16gb 1tb Monitor + Kit Gamer Full Hd","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por Imperiums","color":"GRAY"},"verbose_text":{"text":"Vendido por Imperiums","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002Fimperiums","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"1587"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":243.07,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible"],"image_ratio":"1.25","category_id":"MLB1649","pictures_quantity":2,"rebates":[],"value_propositions":[],"available_quantity":156},{"id":"MLB1983286920","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-1983286920-computador-completo-facil-intel-core-i5-08gb-ddr3-ssd-480-gb-_JM#position=45&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_633631-MLB47230376736_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Completo F\xc3\xa1cil Intel Core I5 08gb Ddr3 Ssd 480 Gb"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_633631-MLB47230376736_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Completo F\xc3\xa1cil Intel Core I5 08gb Ddr3 Ssd 480 Gb"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Computador Completo F\xc3\xa1cil Intel Core I5 08gb Ddr3 Ssd 480 Gb","class_name":"list-view-item-figure"}}},"price":{"amount":1979,"currency_id":"BRL","original_price":2249,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Completo F\xc3\xa1cil Intel Core I5 08gb Ddr3 Ssd 480 Gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002F2eletro","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":197.91,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","deal_of_the_day"],"item_highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"image_ratio":"1.71","category_id":"MLB1649","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Cr\xc3\xa9dito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":151},{"id":"MLB1983288815","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-1983288815-pc-completo-facil-intel-i5-08gb-ssd-240gb-monitor-led-15-_JM#position=46&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_661140-MLB47230543122_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Completo F\xc3\xa1cil Intel I5 08gb Ssd 240gb + Monitor Led 15\'\'"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_661140-MLB47230543122_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Completo F\xc3\xa1cil Intel I5 08gb Ssd 240gb + Monitor Led 15\'\'"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Pc Completo F\xc3\xa1cil Intel I5 08gb Ssd 240gb + Monitor Led 15\'\'","class_name":"list-view-item-figure"}}},"price":{"amount":1803,"currency_id":"BRL","original_price":2049,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc Completo F\xc3\xa1cil Intel I5 08gb Ssd 240gb + Monitor Led 15\'\'","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002F2eletro","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":180.31,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","deal_of_the_day"],"item_highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"image_ratio":"1.71","category_id":"MLB1649","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"pictures_quantity":4,"rebates":[],"value_propositions":[],"available_quantity":148},{"id":"MLB1786478708","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":298832663,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","mshops","messages_as_seller"],"address":{"id":618250284,"comment":"","address_line":"","zip_code":"01040000","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"S\xc3\xa3o Paulo"},"city":{"id":"BR-SP-44","name":"S\xc3\xa3o Paulo"}}},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-1786478708-computador-cpu-intel-i3-4gb-ssd-120gb-hdmi-pronta-entrega-_JM#position=47&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_783932-MLB43487722056_092020-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Cpu Intel I3 4gb Ssd 120gb Hdmi Pronta Entrega"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_783932-MLB43487722056_092020-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Cpu Intel I3 4gb Ssd 120gb Hdmi Pronta Entrega"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Computador Cpu Intel I3 4gb Ssd 120gb Hdmi Pronta Entrega","class_name":"list-view-item-figure"}}},"price":{"amount":1038,"currency_id":"BRL","original_price":1180,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Cpu Intel I3 4gb Ssd 120gb Hdmi Pronta Entrega","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":103.84,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"0.69","category_id":"MLB1649","pictures_quantity":2,"rebates":[],"value_propositions":[],"available_quantity":122},{"id":"MLB2618802287","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":735605761,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","messages_as_seller"],"address":{"id":1170353570,"comment":"","address_line":"","zip_code":"01208001","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"S\xc3\xa3o Paulo"},"city":{"id":"BR-SP-44","name":"S\xc3\xa3o Paulo"}}},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-2618802287-cpu-desktop-core-i5-ssd-120gb-4gb-memoria-wi-fi-win10-_JM#position=48&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_836376-MLB49747627011_042022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Cpu Desktop Core I5 \\u002F Ssd 120gb \\u002F 4gb Mem\xc3\xb3ria \\u002F Wi-fi \\u002Fwin10"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_836376-MLB49747627011_042022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Cpu Desktop Core I5 \\u002F Ssd 120gb \\u002F 4gb Mem\xc3\xb3ria \\u002F Wi-fi \\u002Fwin10"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Cpu Desktop Core I5 \\u002F Ssd 120gb \\u002F 4gb Mem\xc3\xb3ria \\u002F Wi-fi \\u002Fwin10","class_name":"list-view-item-figure"}}},"price":{"amount":1012,"currency_id":"BRL","original_price":1149.99,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Cpu Desktop Core I5 \\u002F Ssd 120gb \\u002F 4gb Mem\xc3\xb3ria \\u002F Wi-fi \\u002Fwin10","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":101.2,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"1.01","category_id":"MLB1649","pictures_quantity":2,"rebates":[],"value_propositions":[],"available_quantity":866},{"id":"MLB2044748327","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":233360930,"car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","messages_as_seller"],"address":{"id":1128839669,"comment":"","address_line":"","zip_code":"40296520","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-BA","name":"Bahia"},"city":{"id":"TUxCQ1NBTDg4YjQ5","name":"Salvador"}}},"permalink":"https:\\u002F\\u002Fwww.mercadolivre.com.br\\u002Fdisco-solido-interno-kingston-sa400s37480g-480gb-preto\\u002Fp\\u002FMLB17978326?pdp_filters=category:MLB1648#searchVariation=MLB17978326&position=15&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_751939-MLA46221843872_052021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Disco s\xc3\xb3lido interno Kingston SA400S37\\u002F480G 480GB preto"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_751939-MLA46221843872_052021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Disco s\xc3\xb3lido interno Kingston SA400S37\\u002F480G 480GB preto"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Disco s\xc3\xb3lido interno Kingston SA400S37\\u002F480G 480GB preto","class_name":"list-view-item-figure"}}},"price":{"amount":273,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB17978326","name":"Disco s\xc3\xb3lido interno Kingston SA400S37\\u002F480G 480GB preto"},"title":"Disco s\xc3\xb3lido interno Kingston SA400S37\\u002F480G 480GB preto","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":26.47,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible","product_item","best_seller_candidate"],"reviews":{"rating_average":4.9,"total":5776},"image_ratio":"1.43","category_id":"MLB1672","pictures_quantity":4,"value_propositions":[],"available_quantity":6},{"id":"MLB1885917902","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":463164252,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","messages_as_seller"],"address":{"id":1171942178,"comment":"","address_line":"","zip_code":"15025050","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"S\xc3\xa3o Paulo"},"city":{"id":"BR-SP-28","name":"S\xc3\xa3o Jos\xc3\xa9 do Rio Preto"}}},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-1885917902-pc-computador-cpu-intel-core-i3-ssd-240gb-8gb-memoria-ram-_JM#position=49&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_993555-MLB50683816791_072022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Computador Cpu Intel Core I3 Ssd 240gb \\u002F 8gb Mem\xc3\xb3ria Ram"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_993555-MLB50683816791_072022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Computador Cpu Intel Core I3 Ssd 240gb \\u002F 8gb Mem\xc3\xb3ria Ram"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Pc Computador Cpu Intel Core I3 Ssd 240gb \\u002F 8gb Mem\xc3\xb3ria Ram","class_name":"list-view-item-figure"}}},"price":{"amount":1183,"currency_id":"BRL","original_price":1666.9,"discount_rate":29,"discount_label":{"text":"29% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc Computador Cpu Intel Core I3 Ssd 240gb \\u002F 8gb Mem\xc3\xb3ria Ram","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":118.35,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"0.69","category_id":"MLB1649","pictures_quantity":10,"rebates":[],"value_propositions":[],"available_quantity":365},{"id":"MLB2222645583","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":404143670,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","mshops","credits_profile","messages_as_seller"],"address":{"id":1211353959,"comment":"","address_line":"","zip_code":"33105496","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-MG","name":"Minas Gerais"},"city":{"id":"TUxCQ1NBTmIzZTAz","name":"Santa Luzia"}}},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-2222645583-computador-desktop-intel-core-i3-293-ghz-4gb-ssd-120gb-hdmi-_JM#position=50&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_998384-MLB49523568301_032022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Desktop Intel Core I3 2.93 Ghz 4gb Ssd 120gb Hdmi"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_998384-MLB49523568301_032022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Desktop Intel Core I3 2.93 Ghz 4gb Ssd 120gb Hdmi"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Computador Desktop Intel Core I3 2.93 Ghz 4gb Ssd 120gb Hdmi","class_name":"list-view-item-figure"}}},"price":{"amount":989,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Desktop Intel Core I3 2.93 Ghz 4gb Ssd 120gb Hdmi","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":95.88,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible"],"image_ratio":"1.02","category_id":"MLB1649","pictures_quantity":8,"rebates":[],"value_propositions":[],"available_quantity":175},{"id":"MLB1615760527","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":298832663,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","mshops","messages_as_seller"],"address":{"id":618250284,"comment":"","address_line":"","zip_code":"01040000","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"S\xc3\xa3o Paulo"},"city":{"id":"BR-SP-44","name":"S\xc3\xa3o Paulo"}}},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-1615760527-cpu-pc-torre-core-i5-3470-320ghz-8gb-ssd-240gb-com-nf-_JM#position=51&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_601489-MLB42991126172_082020-V.jpg","tags":{"heigth":160,"width":160,"alt":" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_601489-MLB42991126172_082020-W.jpg","tags":{"heigth":284,"width":284,"alt":" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf","class_name":"list-view-item-figure"}}},"price":{"amount":1188,"currency_id":"BRL","original_price":1350,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":118.8,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"1.06","category_id":"MLB1649","pictures_quantity":3,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Cr\xc3\xa9dito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":125},{"id":"MLB2025342637","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-2025342637-computador-completo-facil-intel-core-i3-8gb-ssd-120gb-_JM#position=52&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_627010-MLB47542956152_092021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Completo F\xc3\xa1cil Intel Core I3 8gb Ssd 120gb "}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_627010-MLB47542956152_092021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Completo F\xc3\xa1cil Intel Core I3 8gb Ssd 120gb "}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Computador Completo F\xc3\xa1cil Intel Core I3 8gb Ssd 120gb ","class_name":"list-view-item-figure"}}},"price":{"amount":1636,"currency_id":"BRL","original_price":1859,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Completo F\xc3\xa1cil Intel Core I3 8gb Ssd 120gb ","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002F2eletro","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":163.59,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","deal_of_the_day"],"item_highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"image_ratio":"1.61","category_id":"MLB1649","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Cr\xc3\xa9dito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":149},{"id":"MLB2032160315","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":418167165,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","mshops","credits_profile","messages_as_seller"],"address":{"id":1178810727,"comment":"","address_line":"","zip_code":"05089000","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"S\xc3\xa3o Paulo"},"city":{"id":"BR-SP-44","name":"S\xc3\xa3o Paulo"}}},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-2032160315-computador-pc-completo-i5-intel-8gb-ssd-240gb-wi-fi-nfe-_JM#position=53&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_631357-MLB48790718761_012022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Pc Completo I5 Intel 8gb Ssd 240gb Wi-fi + Nfe"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_631357-MLB48790718761_012022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Pc Completo I5 Intel 8gb Ssd 240gb Wi-fi + Nfe"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Computador Pc Completo I5 Intel 8gb Ssd 240gb Wi-fi + Nfe","class_name":"list-view-item-figure"}}},"price":{"amount":2103,"currency_id":"BRL","original_price":2390,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Pc Completo I5 Intel 8gb Ssd 240gb Wi-fi + Nfe","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":203.91,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible","best_seller_candidate"],"image_ratio":"1.18","category_id":"MLB1649","pictures_quantity":7,"rebates":[],"value_propositions":[],"available_quantity":17},{"id":"MLB2625920831","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete gr\xc3\xa1tis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\\u002F\\u002Fproduto.mercadolivre.com.br\\u002FMLB-2625920831-pc-facil-intel-pentium-g6400-10-geraco-8gb-ddr4-ssd-240gb-_JM#position=54&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_969909-MLB49794162322_042022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc F\xc3\xa1cil Intel Pentium G6400 10\xc2\xaa Gera\xc3\xa7\xc3\xa3o 8gb Ddr4 Ssd 240gb"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_969909-MLB49794162322_042022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc F\xc3\xa1cil Intel Pentium G6400 10\xc2\xaa Gera\xc3\xa7\xc3\xa3o 8gb Ddr4 Ssd 240gb"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Pc F\xc3\xa1cil Intel Pentium G6400 10\xc2\xaa Gera\xc3\xa7\xc3\xa3o 8gb Ddr4 Ssd 240gb","class_name":"list-view-item-figure"}}},"price":{"amount":1539,"currency_id":"BRL","original_price":1749,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc F\xc3\xa1cil Intel Pentium G6400 10\xc2\xaa Gera\xc3\xa7\xc3\xa3o 8gb Ddr4 Ssd 240gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002F2eletro","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":153.91,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"0.67","category_id":"MLB1649","pictures_quantity":4,"rebates":[],"value_propositions":[],"available_quantity":147},{"id":"MLB2685001475","bookmarked":false,"discount_source":"default","seller_info":{"id":412008939,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","credits_profile","payment_in_flow","messages_as_seller"],"address":{"id":1038257143,"comment":"","address_line":"","zip_code":"37640000","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0VYVDdjZTBi","name":"Extrema"}},"official_store_id":"2138","official_store_name":"Loja MMPLACE","official_store_text":"por Loja MMPLACE","official_store_verbose_text":"Vendido por Loja MMPLACE"},"permalink":"https:\\u002F\\u002Fwww.mercadolivre.com.br\\u002Fnotebook-multilaser-legacy-air-pc222-prata-133-intel-celeron-n3350-4gb-de-ram-64gb-ssd-intel-hd-graphics-500-1920x1080px-windows-10-home\\u002Fp\\u002FMLB15297208?pdp_filters=category:MLB1648#searchVariation=MLB15297208&position=16&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_985174-MLA40583676380_012020-V.jpg","tags":{"heigth":160,"width":160,"alt":"Notebook Multilaser Legacy Air PC222 prata 13.3\\", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1920x1080px Windows 10 Home"}},"grid":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002FD_NQ_NP_985174-MLA40583676380_012020-W.jpg","tags":{"heigth":284,"width":284,"alt":"Notebook Multilaser Legacy Air PC222 prata 13.3\\", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1920x1080px Windows 10 Home"}},"mosaic":{"retina":"https:\\u002F\\u002Fhttp2.mlstatic.com\\u002Fresources\\u002Ffrontend\\u002Fstatics\\u002Fimg-not-available\\u002F1.1.0\\u002FT@2x.jpg","tags":{"alt":"Notebook Multilaser Legacy Air PC222 prata 13.3\\", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1920x1080px Windows 10 Home","class_name":"list-view-item-figure"}}},"price":{"amount":1495,"currency_id":"BRL","original_price":1573.9,"discount_rate":5,"discount_label":{"text":"5% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB15297208","name":"Notebook Multilaser Legacy Air PC222 prata 13.3\\", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1920x1080px Windows 10 Home"},"title":"Notebook Multilaser Legacy Air PC222 prata 13.3\\", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1920x1080px Windows 10 Home","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por Loja MMPLACE","color":"GRAY"},"verbose_text":{"text":"Vendido por Loja MMPLACE","color":"GRAY"},"permalink":"https:\\u002F\\u002Floja.mercadolivre.com.br\\u002Floja-mmplace","tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fofficial_store\\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"2138"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":149.49,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["interest_free","cart_eligible","product_item","best_seller_candidate"],"reviews":{"rating_average":4,"total":132},"image_ratio":"1.41","category_id":"MLB1652","pictures_quantity":4,"value_propositions":[],"available_quantity":269}],"search_filter":{"name":"Somente em Inform\xc3\xa1tica","permalink":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002F$query","default_checked":false},"seo":{"h1":"Computador","title":"Computador | MercadoLivre \xf0\x9f\x93\xa6","description":"Frete gr\xc3\xa1tis no dia \xe2\x9c\x93 Compre Computador parcelado sem juros! Saiba mais sobre nossas incr\xc3\xadveis ofertas e promo\xc3\xa7\xc3\xb5es em milh\xc3\xb5es de produtos.","h1_bookmarks":"Inform\xc3\xa1tica","is_valid_page":true,"schema":{"search":{"url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fcomputador"},"product":{"name":"Notebook Compaq Presario CQ-25 gray 14.1\\", Intel Pentium N3700 4GB de RAM 120GB SSD, Intel HD Graphics 1366x768px Windows 10 Home","aggregate_rating":{"rating_count":61,"rating_value":4},"item_offered":{"price":1979,"price_currency":"BRL","position":32,"url":"https:\\u002F\\u002Fwww.mercadolivre.com.br\\u002Fnotebook-compaq-presario-cq-25-gray-141-intel-pentium-n3700-4gb-de-ram-120gb-ssd-intel-hd-graphics-1366x768px-windows-10-home\\u002Fp\\u002FMLB17966310"},"brand_attribute":{"name":"Compaq"}}},"category_path_tags":["SEARCH_L1_MLB1648"]},"sidebar":{"id":"SIDEBAR","type":"SIDEBAR","components":[{"type":"BREADCRUMB","h1":"Computador","nodes":[{"text":"Inform\xc3\xa1tica","url":"https:\\u002F\\u002Fwww.mercadolivre.com.br\\u002Fc\\u002Finformatica"}]},{"type":"TOTAL_RESULTS","text":"547.937 resultado"},{"type":"APPLIED_FILTERS","filters":[]},{"type":"AVAILABLE_FILTERS","filters":[{"id":"shipping_highlighted_fulfillment","name":"Tipo de envio","type":"highlighted","values":[{"id":"fulfillment","name":"Full","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_Frete_Full_NoIndex_True#applied_filter_id%3Dshipping_highlighted_fulfillment%26applied_filter_name%3DTipo+de+envio%26applied_filter_order%3D1%26applied_value_id%3Dfulfillment%26applied_value_name%3DFull%26applied_value_order%3D1%26applied_value_results%3D28144%26is_custom%3Dfalse","results":"(28.144)","title":{"text":"{icon} economiza frete","icons":["fulfillment"]},"subtitle":{"text":"Em carrinhos de compras","icons":[]},"switch":{"is_on":false}}],"fragment":"applied_filter_id%3Dshipping_highlighted_fulfillment%26applied_filter_name%3DTipo+de+envio%26applied_filter_order%3D1%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D2%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"fulfillment","name":"Full","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_Frete_Full_NoIndex_True#applied_filter_id%3Dshipping_highlighted_fulfillment%26applied_filter_name%3DTipo+de+envio%26applied_filter_order%3D1%26applied_value_id%3Dfulfillment%26applied_value_name%3DFull%26applied_value_order%3D1%26applied_value_results%3D28144%26is_custom%3Dfalse","results":"(28.144)","title":{"text":"{icon} economiza frete","icons":["fulfillment"]},"subtitle":{"text":"Em carrinhos de compras","icons":[]},"switch":{"is_on":false}}],"show_modal":false},{"id":"shipping_cost_highlighted","name":"Custo do frete","type":"highlighted","values":[{"id":"free","name":"Gratis","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_CustoFrete_Gratis_NoIndex_True#applied_filter_id%3Dshipping_cost_highlighted%26applied_filter_name%3DCusto+do+frete%26applied_filter_order%3D2%26applied_value_id%3Dfree%26applied_value_name%3DGratis%26applied_value_order%3D1%26applied_value_results%3D482501%26is_custom%3Dfalse","results":"(482.501)","title":{"text":"Frete gr\xc3\xa1tis","icons":[]},"switch":{"is_on":false}}],"fragment":"applied_filter_id%3Dshipping_cost_highlighted%26applied_filter_name%3DCusto+do+frete%26applied_filter_order%3D2%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D2%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"free","name":"Gratis","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_CustoFrete_Gratis_NoIndex_True#applied_filter_id%3Dshipping_cost_highlighted%26applied_filter_name%3DCusto+do+frete%26applied_filter_order%3D2%26applied_value_id%3Dfree%26applied_value_name%3DGratis%26applied_value_order%3D1%26applied_value_results%3D482501%26is_custom%3Dfalse","results":"(482.501)","title":{"text":"Frete gr\xc3\xa1tis","icons":[]},"switch":{"is_on":false}}],"show_modal":false},{"id":"SHIPPING_ORIGIN_HIGHLIGHTED","name":"Origem do frete","type":"highlighted","values":[{"id":"10215069","name":"Internacional","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_SHIPPING*ORIGIN_10215069#applied_filter_id%3DSHIPPING_ORIGIN_HIGHLIGHTED%26applied_filter_name%3DOrigem+do+frete%26applied_filter_order%3D3%26applied_value_id%3D10215069%26applied_value_name%3DInternacional%26applied_value_order%3D1%26applied_value_results%3D1319%26is_custom%3Dfalse","results":"(1.319)","title":{"text":"{icon} ","icons":["cbt_international_desktop"]},"subtitle":{"text":"Frete gr\xc3\xa1tis do mundo at\xc3\xa9 sua casa","icons":[]},"switch":{"is_on":false}}],"fragment":"applied_filter_id%3DSHIPPING_ORIGIN_HIGHLIGHTED%26applied_filter_name%3DOrigem+do+frete%26applied_filter_order%3D3%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D2%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"10215069","name":"Internacional","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_SHIPPING*ORIGIN_10215069#applied_filter_id%3DSHIPPING_ORIGIN_HIGHLIGHTED%26applied_filter_name%3DOrigem+do+frete%26applied_filter_order%3D3%26applied_value_id%3D10215069%26applied_value_name%3DInternacional%26applied_value_order%3D1%26applied_value_results%3D1319%26is_custom%3Dfalse","results":"(1.319)","title":{"text":"{icon} ","icons":["cbt_international_desktop"]},"subtitle":{"text":"Frete gr\xc3\xa1tis do mundo at\xc3\xa9 sua casa","icons":[]},"switch":{"is_on":false}}],"show_modal":false},{"id":"category","name":"Categorias","type":"text","values":[{"id":"MLB271913","name":"Acess\xc3\xb3rios de Antiest\xc3\xa1tica","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Facessorios-antiestatica\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB271913%26applied_value_name%3DAcess%C3%B3rios+de+Antiest%C3%A1tica%26applied_value_order%3D1%26applied_value_results%3D87%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(87)"},{"id":"MLB447778","name":"Acess\xc3\xb3rios para PC Gaming","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Facessorios-pc-gaming\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB447778%26applied_value_name%3DAcess%C3%B3rios+para+PC+Gaming%26applied_value_order%3D2%26applied_value_results%3D1759%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1.759)"},{"id":"MLB430598","name":"Armazenamento","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Farmazenamento\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430598%26applied_value_name%3DArmazenamento%26applied_value_order%3D3%26applied_value_results%3D17238%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(17.238)"},{"id":"MLB430918","name":"Cabos e Hubs USB","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcabos-e-hubs-usb\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430918%26applied_value_name%3DCabos+e+Hubs+USB%26applied_value_order%3D4%26applied_value_results%3D1231%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1.231)"},{"id":"MLB1712","name":"Componentes para PC","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomponentes-pc\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB1712%26applied_value_name%3DComponentes+para+PC%26applied_value_order%3D5%26applied_value_results%3D31486%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(31.486)"},{"id":"MLB1700","name":"Conectividade e Redes","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fconectividade-e-redes\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB1700%26applied_value_name%3DConectividade+e+Redes%26applied_value_order%3D6%26applied_value_results%3D791%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(791)"},{"id":"MLB1718","name":"Estabilizadores e No Breaks","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Festabilizadores-e-no-breaks\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB1718%26applied_value_name%3DEstabilizadores+e+No+Breaks%26applied_value_order%3D7%26applied_value_results%3D967%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(967)"},{"id":"MLB5875","name":"Impress\xc3\xa3o","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fimpressao\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB5875%26applied_value_name%3DImpress%C3%A3o%26applied_value_order%3D8%26applied_value_results%3D263%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(263)"},{"id":"MLB99944","name":"Limpeza de PCs","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Flimpeza-pcs\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB99944%26applied_value_name%3DLimpeza+de+PCs%26applied_value_order%3D9%26applied_value_results%3D1055%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1.055)"},{"id":"MLB14370","name":"Monitores e Acess\xc3\xb3rios","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fmonitores\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB14370%26applied_value_name%3DMonitores+e+Acess%C3%B3rios%26applied_value_order%3D10%26applied_value_results%3D4925%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4.925)"},{"id":"MLB430637","name":"PC de Mesa","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fpc-mesa\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430637%26applied_value_name%3DPC+de+Mesa%26applied_value_order%3D11%26applied_value_results%3D472826%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(472.826)"},{"id":"MLB454379","name":"Perif\xc3\xa9ricos para PC","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fperifericos-pc\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB454379%26applied_value_name%3DPerif%C3%A9ricos+para+PC%26applied_value_order%3D12%26applied_value_results%3D22779%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(22.779)"},{"id":"MLB430687","name":"Port\xc3\xa1teis e Acess\xc3\xb3rios","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fportateis-e-acessorios\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430687%26applied_value_name%3DPort%C3%A1teis+e+Acess%C3%B3rios%26applied_value_order%3D13%26applied_value_results%3D9850%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(9.850)"},{"id":"MLB1723","name":"Software","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fsoftware\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB1723%26applied_value_name%3DSoftware%26applied_value_order%3D14%26applied_value_results%3D175%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(175)"}],"modal":{"type":"DEFAULT","labels":{"modal_not_found_message":"No encontramos resultados que coincidan con su b\xc3\xbasqueda","modal_label":"Mostrar mais","modal_place_holder":"Buscar..."}},"fragment":"applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D15%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"MLB430687","name":"Port\xc3\xa1teis e Acess\xc3\xb3rios","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fportateis-e-acessorios\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430687%26applied_value_name%3DPort%C3%A1teis+e+Acess%C3%B3rios%26applied_value_order%3D13%26applied_value_results%3D9850%26is_custom%3Dfalse","results":"(9.850)"},{"id":"MLB430637","name":"PC de Mesa","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fpc-mesa\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430637%26applied_value_name%3DPC+de+Mesa%26applied_value_order%3D11%26applied_value_results%3D472826%26is_custom%3Dfalse","results":"(472.826)"},{"id":"MLB1712","name":"Componentes para PC","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomponentes-pc\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB1712%26applied_value_name%3DComponentes+para+PC%26applied_value_order%3D5%26applied_value_results%3D31486%26is_custom%3Dfalse","results":"(31.486)"},{"id":"MLB454379","name":"Perif\xc3\xa9ricos para PC","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fperifericos-pc\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB454379%26applied_value_name%3DPerif%C3%A9ricos+para+PC%26applied_value_order%3D12%26applied_value_results%3D22779%26is_custom%3Dfalse","results":"(22.779)"},{"id":"MLB430598","name":"Armazenamento","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Farmazenamento\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430598%26applied_value_name%3DArmazenamento%26applied_value_order%3D3%26applied_value_results%3D17238%26is_custom%3Dfalse","results":"(17.238)"},{"id":"MLB14370","name":"Monitores e Acess\xc3\xb3rios","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fmonitores\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB14370%26applied_value_name%3DMonitores+e+Acess%C3%B3rios%26applied_value_order%3D10%26applied_value_results%3D4925%26is_custom%3Dfalse","results":"(4.925)"},{"id":"MLB447778","name":"Acess\xc3\xb3rios para PC Gaming","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Facessorios-pc-gaming\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB447778%26applied_value_name%3DAcess%C3%B3rios+para+PC+Gaming%26applied_value_order%3D2%26applied_value_results%3D1759%26is_custom%3Dfalse","results":"(1.759)"},{"id":"MLB430918","name":"Cabos e Hubs USB","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcabos-e-hubs-usb\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430918%26applied_value_name%3DCabos+e+Hubs+USB%26applied_value_order%3D4%26applied_value_results%3D1231%26is_custom%3Dfalse","results":"(1.231)"},{"id":"MLB99944","name":"Limpeza de PCs","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Flimpeza-pcs\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB99944%26applied_value_name%3DLimpeza+de+PCs%26applied_value_order%3D9%26applied_value_results%3D1055%26is_custom%3Dfalse","results":"(1.055)"}],"show_modal":true,"url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fcomputador_FiltersAvailableSidebar?filter=category"},{"id":"PROCESSOR_TYPE","name":"Processador","type":"STRING","values":[{"id":"2785905","name":"AMD A10","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_2785905#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D2785905%26applied_value_name%3DAMD+A10%26applied_value_order%3D1%26applied_value_results%3D2022%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2.022)"},{"id":"2785902","name":"AMD A4","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_2785902#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D2785902%26applied_value_name%3DAMD+A4%26applied_value_order%3D2%26applied_value_results%3D1231%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1.231)"},{"id":"2785903","name":"AMD A6","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_2785903#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D2785903%26applied_value_name%3DAMD+A6%26applied_value_order%3D3%26applied_value_results%3D4221%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4.221)"},{"id":"2785904","name":"AMD A8","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_2785904#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D2785904%26applied_value_name%3DAMD+A8%26applied_value_order%3D4%26applied_value_results%3D3430%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3.430)"},{"id":"345562","name":"AMD Athlon","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345562#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345562%26applied_value_name%3DAMD+Athlon%26applied_value_order%3D5%26applied_value_results%3D2462%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2.462)"},{"id":"345563","name":"AMD Athlon 64","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345563#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345563%26applied_value_name%3DAMD+Athlon+64%26applied_value_order%3D6%26applied_value_results%3D87%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(87)"},{"id":"345564","name":"AMD Athlon 64 x2","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345564#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345564%26applied_value_name%3DAMD+Athlon+64+x2%26applied_value_order%3D7%26applied_value_results%3D87%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(87)"},{"id":"345565","name":"AMD Athlon II","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345565#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345565%26applied_value_name%3DAMD+Athlon+II%26applied_value_order%3D8%26applied_value_results%3D175%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(175)"},{"id":"345566","name":"AMD Bulldozer","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345566#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345566%26applied_value_name%3DAMD+Bulldozer%26applied_value_order%3D9%26applied_value_results%3D527%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(527)"},{"id":"7743744","name":"AMD FX","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_7743744#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D7743744%26applied_value_name%3DAMD+FX%26applied_value_order%3D10%26applied_value_results%3D87%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(87)"},{"id":"2785901","name":"AMD K6","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_2785901#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D2785901%26applied_value_name%3DAMD+K6%26applied_value_order%3D11%26applied_value_results%3D615%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(615)"},{"id":"345567","name":"AMD Phenom","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345567#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345567%26applied_value_name%3DAMD+Phenom%26applied_value_order%3D12%26applied_value_results%3D1143%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1.143)"},{"id":"7639635","name":"AMD Ryzen","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_7639635#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D7639635%26applied_value_name%3DAMD+Ryzen%26applied_value_order%3D13%26applied_value_results%3D527%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(527)"},{"id":"345569","name":"Intel Atom","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345569#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345569%26applied_value_name%3DIntel+Atom%26applied_value_order%3D14%26applied_value_results%3D703%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(703)"},{"id":"345570","name":"Intel Celeron","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345570#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345570%26applied_value_name%3DIntel+Celeron%26applied_value_order%3D15%26applied_value_results%3D4573%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4.573)"},{"id":"345571","name":"Intel Core 2 Duo","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345571#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345571%26applied_value_name%3DIntel+Core+2+Duo%26applied_value_order%3D16%26applied_value_results%3D15479%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(15.479)"},{"id":"345572","name":"Intel Core 2 Quad","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345572#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345572%26applied_value_name%3DIntel+Core+2+Quad%26applied_value_order%3D17%26applied_value_results%3D1583%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1.583)"},{"id":"345573","name":"Intel Core i3","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345573#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345573%26applied_value_name%3DIntel+Core+i3%26applied_value_order%3D18%26applied_value_results%3D50132%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(50.132)"},{"id":"345574","name":"Intel Core i5","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345574#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345574%26applied_value_name%3DIntel+Core+i5%26applied_value_order%3D19%26applied_value_results%3D143008%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(143.008)"},{"id":"345575","name":"Intel Core i7","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345575#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345575%26applied_value_name%3DIntel+Core+i7%26applied_value_order%3D20%26applied_value_results%3D42040%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(42.040)"},{"id":"345576","name":"Intel Dual Core","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345576#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345576%26applied_value_name%3DIntel+Dual+Core%26applied_value_order%3D21%26applied_value_results%3D7212%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(7.212)"},{"id":"345577","name":"Intel Pentium","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345577#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345577%26applied_value_name%3DIntel+Pentium%26applied_value_order%3D22%26applied_value_results%3D1055%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1.055)"},{"id":"345580","name":"Intel Pentium 4","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345580#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345580%26applied_value_name%3DIntel+Pentium+4%26applied_value_order%3D23%26applied_value_results%3D527%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(527)"},{"id":"345581","name":"Intel Pentium D","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345581#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345581%26applied_value_name%3DIntel+Pentium+D%26applied_value_order%3D24%26applied_value_results%3D87%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(87)"},{"id":"7639634","name":"Intel Xeon","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_7639634#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D7639634%26applied_value_name%3DIntel+Xeon%26applied_value_order%3D25%26applied_value_results%3D1407%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1.407)"}],"modal":{"type":"DEFAULT","labels":{"modal_not_found_message":"No encontramos resultados que coincidan con su b\xc3\xbasqueda","modal_label":"Mostrar mais","modal_place_holder":"Buscar..."}},"fragment":"applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D26%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"345574","name":"Intel Core i5","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345574#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345574%26applied_value_name%3DIntel+Core+i5%26applied_value_order%3D19%26applied_value_results%3D143008%26is_custom%3Dfalse","results":"(143.008)"},{"id":"345573","name":"Intel Core i3","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345573#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345573%26applied_value_name%3DIntel+Core+i3%26applied_value_order%3D18%26applied_value_results%3D50132%26is_custom%3Dfalse","results":"(50.132)"},{"id":"345575","name":"Intel Core i7","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345575#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345575%26applied_value_name%3DIntel+Core+i7%26applied_value_order%3D20%26applied_value_results%3D42040%26is_custom%3Dfalse","results":"(42.040)"},{"id":"345571","name":"Intel Core 2 Duo","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345571#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345571%26applied_value_name%3DIntel+Core+2+Duo%26applied_value_order%3D16%26applied_value_results%3D15479%26is_custom%3Dfalse","results":"(15.479)"},{"id":"345576","name":"Intel Dual Core","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345576#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345576%26applied_value_name%3DIntel+Dual+Core%26applied_value_order%3D21%26applied_value_results%3D7212%26is_custom%3Dfalse","results":"(7.212)"},{"id":"345570","name":"Intel Celeron","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345570#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345570%26applied_value_name%3DIntel+Celeron%26applied_value_order%3D15%26applied_value_results%3D4573%26is_custom%3Dfalse","results":"(4.573)"},{"id":"2785903","name":"AMD A6","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_2785903#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D2785903%26applied_value_name%3DAMD+A6%26applied_value_order%3D3%26applied_value_results%3D4221%26is_custom%3Dfalse","results":"(4.221)"},{"id":"2785904","name":"AMD A8","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_2785904#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D2785904%26applied_value_name%3DAMD+A8%26applied_value_order%3D4%26applied_value_results%3D3430%26is_custom%3Dfalse","results":"(3.430)"},{"id":"345562","name":"AMD Athlon","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345562#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345562%26applied_value_name%3DAMD+Athlon%26applied_value_order%3D5%26applied_value_results%3D2462%26is_custom%3Dfalse","results":"(2.462)"}],"show_modal":true,"url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fcomputador_FiltersAvailableSidebar?filter=PROCESSOR_TYPE"},{"id":"shipping","name":"Tipo de envio","type":"text","values":[{"id":"fulfillment","name":"Full","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_Frete_Full_NoIndex_True#applied_filter_id%3Dshipping%26applied_filter_name%3DTipo+de+envio%26applied_filter_order%3D6%26applied_value_id%3Dfulfillment%26applied_value_name%3DFull%26applied_value_order%3D1%26applied_value_results%3D28144%26is_custom%3Dfalse","results":"(28.144)"}],"fragment":"applied_filter_id%3Dshipping%26applied_filter_name%3DTipo+de+envio%26applied_filter_order%3D6%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D2%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"fulfillment","name":"Full","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_Frete_Full_NoIndex_True#applied_filter_id%3Dshipping%26applied_filter_name%3DTipo+de+envio%26applied_filter_order%3D6%26applied_value_id%3Dfulfillment%26applied_value_name%3DFull%26applied_value_order%3D1%26applied_value_results%3D28144%26is_custom%3Dfalse","results":"(28.144)"}],"show_modal":false},{"id":"RAM_SIZE","name":"RAM","type":"range","values":[{"id":"[128GB-*)","name":"128 GB ou mais","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_RAM*SIZE_128GB-*#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B128GB-*%29%26applied_value_name%3D128+GB+ou+mais%26applied_value_order%3D1%26applied_value_results%3D3606%26is_custom%3Dfalse","results":"(3.606)"},{"id":"[16GB-32GB)","name":"16 a 31 GB","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_RAM*SIZE_16GB-32GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B16GB-32GB%29%26applied_value_name%3D16+a+31+GB%26applied_value_order%3D2%26applied_value_results%3D111082%26is_custom%3Dfalse","results":"(111.082)"},{"id":"[32GB-128GB)","name":"32 a 127 GB","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_RAM*SIZE_32GB-128GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B32GB-128GB%29%26applied_value_name%3D32+a+127+GB%26applied_value_order%3D3%26applied_value_results%3D24098%26is_custom%3Dfalse","results":"(24.098)"},{"id":"[8GB-16GB)","name":"8 a 15 GB","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_RAM*SIZE_8GB-16GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B8GB-16GB%29%26applied_value_name%3D8+a+15+GB%26applied_value_order%3D4%26applied_value_results%3D212842%26is_custom%3Dfalse","results":"(212.842)"},{"id":"(*-8GB)","name":"Menos de 8 GB","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_RAM*SIZE_*-8GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%28*-8GB%29%26applied_value_name%3DMenos+de+8+GB%26applied_value_order%3D5%26applied_value_results%3D111258%26is_custom%3Dfalse","results":"(111.258)"}],"url_templates":{"only_from":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_RAM*SIZE_$from-*","only_to":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_RAM*SIZE_*-$to","from_and_to":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_RAM*SIZE_$from-$to"},"fragment":"applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D6%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"(*-8GB)","name":"Menos de 8 GB","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_RAM*SIZE_*-8GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%28*-8GB%29%26applied_value_name%3DMenos+de+8+GB%26applied_value_order%3D5%26applied_value_results%3D111258%26is_custom%3Dfalse","results":"(111.258)"},{"id":"[8GB-16GB)","name":"8 a 15 GB","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_RAM*SIZE_8GB-16GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B8GB-16GB%29%26applied_value_name%3D8+a+15+GB%26applied_value_order%3D4%26applied_value_results%3D212842%26is_custom%3Dfalse","results":"(212.842)"},{"id":"[16GB-32GB)","name":"16 a 31 GB","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_RAM*SIZE_16GB-32GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B16GB-32GB%29%26applied_value_name%3D16+a+31+GB%26applied_value_order%3D2%26applied_value_results%3D111082%26is_custom%3Dfalse","results":"(111.082)"},{"id":"[32GB-128GB)","name":"32 a 127 GB","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_RAM*SIZE_32GB-128GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B32GB-128GB%29%26applied_value_name%3D32+a+127+GB%26applied_value_order%3D3%26applied_value_results%3D24098%26is_custom%3Dfalse","results":"(24.098)"},{"id":"[128GB-*)","name":"128 GB ou mais","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_RAM*SIZE_128GB-*#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B128GB-*%29%26applied_value_name%3D128+GB+ou+mais%26applied_value_order%3D1%26applied_value_results%3D3606%26is_custom%3Dfalse","results":"(3.606)"}],"show_modal":false},{"id":"ITEM_CONDITION","name":"Condi\xc3\xa7\xc3\xa3o","type":"STRING","values":[{"id":"2230284","name":"Novo","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fnovo\\u002Fcomputador_NoIndex_True#applied_filter_id%3DITEM_CONDITION%26applied_filter_name%3DCondi%C3%A7%C3%A3o%26applied_filter_order%3D8%26applied_value_id%3D2230284%26applied_value_name%3DNovo%26applied_value_order%3D1%26applied_value_results%3D463327%26is_custom%3Dfalse","results":"(463.327)"},{"id":"2230582","name":"Recondicionado","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Frecondicionado\\u002Fcomputador_NoIndex_True#applied_filter_id%3DITEM_CONDITION%26applied_filter_name%3DCondi%C3%A7%C3%A3o%26applied_filter_order%3D8%26applied_value_id%3D2230582%26applied_value_name%3DRecondicionado%26applied_value_order%3D2%26applied_value_results%3D27089%26is_custom%3Dfalse","results":"(27.089)"},{"id":"2230581","name":"Usado","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fusado\\u002Fcomputador_NoIndex_True#applied_filter_id%3DITEM_CONDITION%26applied_filter_name%3DCondi%C3%A7%C3%A3o%26applied_filter_order%3D8%26applied_value_id%3D2230581%26applied_value_name%3DUsado%26applied_value_order%3D3%26applied_value_results%3D57168%26is_custom%3Dfalse","results":"(57.168)"}],"fragment":"applied_filter_id%3DITEM_CONDITION%26applied_filter_name%3DCondi%C3%A7%C3%A3o%26applied_filter_order%3D8%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D4%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"2230284","name":"Novo","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fnovo\\u002Fcomputador_NoIndex_True#applied_filter_id%3DITEM_CONDITION%26applied_filter_name%3DCondi%C3%A7%C3%A3o%26applied_filter_order%3D8%26applied_value_id%3D2230284%26applied_value_name%3DNovo%26applied_value_order%3D1%26applied_value_results%3D463327%26is_custom%3Dfalse","results":"(463.327)"},{"id":"2230581","name":"Usado","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fusado\\u002Fcomputador_NoIndex_True#applied_filter_id%3DITEM_CONDITION%26applied_filter_name%3DCondi%C3%A7%C3%A3o%26applied_filter_order%3D8%26applied_value_id%3D2230581%26applied_value_name%3DUsado%26applied_value_order%3D3%26applied_value_results%3D57168%26is_custom%3Dfalse","results":"(57.168)"},{"id":"2230582","name":"Recondicionado","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Frecondicionado\\u002Fcomputador_NoIndex_True#applied_filter_id%3DITEM_CONDITION%26applied_filter_name%3DCondi%C3%A7%C3%A3o%26applied_filter_order%3D8%26applied_value_id%3D2230582%26applied_value_name%3DRecondicionado%26applied_value_order%3D2%26applied_value_results%3D27089%26is_custom%3Dfalse","results":"(27.089)"}],"show_modal":false},{"id":"WITH_MONITOR","name":"Monitor","type":"boolean","values":[{"id":"242085","name":"Com monitor","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_WITH*MONITOR_242085#applied_filter_id%3DWITH_MONITOR%26applied_filter_name%3DMonitor%26applied_filter_order%3D9%26applied_value_id%3D242085%26applied_value_name%3DCom+monitor%26applied_value_order%3D1%26applied_value_results%3D66227%26is_custom%3Dfalse","results":"(66.227)"},{"id":"242084","name":"Sem monitor","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_WITH*MONITOR_242084#applied_filter_id%3DWITH_MONITOR%26applied_filter_name%3DMonitor%26applied_filter_order%3D9%26applied_value_id%3D242084%26applied_value_name%3DSem+monitor%26applied_value_order%3D2%26applied_value_results%3D25242%26is_custom%3Dfalse","results":"(25.242)"}],"fragment":"applied_filter_id%3DWITH_MONITOR%26applied_filter_name%3DMonitor%26applied_filter_order%3D9%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D3%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"242085","name":"Com monitor","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_WITH*MONITOR_242085#applied_filter_id%3DWITH_MONITOR%26applied_filter_name%3DMonitor%26applied_filter_order%3D9%26applied_value_id%3D242085%26applied_value_name%3DCom+monitor%26applied_value_order%3D1%26applied_value_results%3D66227%26is_custom%3Dfalse","results":"(66.227)"},{"id":"242084","name":"Sem monitor","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_WITH*MONITOR_242084#applied_filter_id%3DWITH_MONITOR%26applied_filter_name%3DMonitor%26applied_filter_order%3D9%26applied_value_id%3D242084%26applied_value_name%3DSem+monitor%26applied_value_order%3D2%26applied_value_results%3D25242%26is_custom%3Dfalse","results":"(25.242)"}],"show_modal":false},{"id":"shipping_cost","name":"Custo do frete","type":"text","values":[{"id":"free","name":"Gratis","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_CustoFrete_Gratis_NoIndex_True#applied_filter_id%3Dshipping_cost%26applied_filter_name%3DCusto+do+frete%26applied_filter_order%3D10%26applied_value_id%3Dfree%26applied_value_name%3DGratis%26applied_value_order%3D1%26applied_value_results%3D482501%26is_custom%3Dfalse","results":"(482.501)"}],"fragment":"applied_filter_id%3Dshipping_cost%26applied_filter_name%3DCusto+do+frete%26applied_filter_order%3D10%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D2%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"free","name":"Gratis","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_CustoFrete_Gratis_NoIndex_True#applied_filter_id%3Dshipping_cost%26applied_filter_name%3DCusto+do+frete%26applied_filter_order%3D10%26applied_value_id%3Dfree%26applied_value_name%3DGratis%26applied_value_order%3D1%26applied_value_results%3D482501%26is_custom%3Dfalse","results":"(482.501)"}],"show_modal":false},{"id":"price","name":"Pre\xc3\xa7o","type":"range","values":[{"id":"*-1000.0","name":"At\xc3\xa9 R$1.000","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_PriceRange_0-1000_NoIndex_True#applied_filter_id%3Dprice%26applied_filter_name%3DPre%C3%A7o%26applied_filter_order%3D11%26applied_value_id%3D*-1000.0%26applied_value_name%3DAt%C3%A9+R%241.000%26applied_value_order%3D1%26applied_value_results%3D111610%26is_custom%3Dfalse","results":"(111.610)"},{"id":"1000.0-2000.0","name":"R$1.000 a R$2.000","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_PriceRange_1000-2000_NoIndex_True#applied_filter_id%3Dprice%26applied_filter_name%3DPre%C3%A7o%26applied_filter_order%3D11%26applied_value_id%3D1000.0-2000.0%26applied_value_name%3DR%241.000+a+R%242.000%26applied_value_order%3D2%26applied_value_results%3D194636%26is_custom%3Dfalse","results":"(194.636)"},{"id":"2000.0-*","name":"Mais de R$2.000","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_PriceRange_2000-0_NoIndex_True#applied_filter_id%3Dprice%26applied_filter_name%3DPre%C3%A7o%26applied_filter_order%3D11%26applied_value_id%3D2000.0-*%26applied_value_name%3DMais+de+R%242.000%26applied_value_order%3D3%26applied_value_results%3D241690%26is_custom%3Dfalse","results":"(241.690)"}],"url_templates":{"only_from":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_PriceRange_$from-0","only_to":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_PriceRange_0-$to","from_and_to":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_PriceRange_$from-$to"},"fragment":"applied_filter_id%3Dprice%26applied_filter_name%3DPre%C3%A7o%26applied_filter_order%3D11%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D4%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"*-1000.0","name":"At\xc3\xa9 R$1.000","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_PriceRange_0-1000_NoIndex_True#applied_filter_id%3Dprice%26applied_filter_name%3DPre%C3%A7o%26applied_filter_order%3D11%26applied_value_id%3D*-1000.0%26applied_value_name%3DAt%C3%A9+R%241.000%26applied_value_order%3D1%26applied_value_results%3D111610%26is_custom%3Dfalse","results":"(111.610)"},{"id":"1000.0-2000.0","name":"R$1.000 a R$2.000","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_PriceRange_1000-2000_NoIndex_True#applied_filter_id%3Dprice%26applied_filter_name%3DPre%C3%A7o%26applied_filter_order%3D11%26applied_value_id%3D1000.0-2000.0%26applied_value_name%3DR%241.000+a+R%242.000%26applied_value_order%3D2%26applied_value_results%3D194636%26is_custom%3Dfalse","results":"(194.636)"},{"id":"2000.0-*","name":"Mais de R$2.000","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_PriceRange_2000-0_NoIndex_True#applied_filter_id%3Dprice%26applied_filter_name%3DPre%C3%A7o%26applied_filter_order%3D11%26applied_value_id%3D2000.0-*%26applied_value_name%3DMais+de+R%242.000%26applied_value_order%3D3%26applied_value_results%3D241690%26is_custom%3Dfalse","results":"(241.690)"}],"show_modal":false},{"id":"OPERATIVE_SYSTEM","name":"Sistema operativo","type":"STRING","values":[{"id":"345582","name":"Chrome OS","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345582#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345582%26applied_value_name%3DChrome+OS%26applied_value_order%3D1%26applied_value_results%3D87%26is_custom%3Dfalse","results":"(87)"},{"id":"345588","name":"Linux","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345588#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345588%26applied_value_name%3DLinux%26applied_value_order%3D2%26applied_value_results%3D4749%26is_custom%3Dfalse","results":"(4.749)"},{"id":"345589","name":"Mac OS","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345589#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345589%26applied_value_name%3DMac+OS%26applied_value_order%3D3%26applied_value_results%3D263%26is_custom%3Dfalse","results":"(263)"},{"id":"345583","name":"Windows 10","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345583#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345583%26applied_value_name%3DWindows+10%26applied_value_order%3D4%26applied_value_results%3D289975%26is_custom%3Dfalse","results":"(289.975)"},{"id":"345585","name":"Windows 7","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345585#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345585%26applied_value_name%3DWindows+7%26applied_value_order%3D5%26applied_value_results%3D14160%26is_custom%3Dfalse","results":"(14.160)"},{"id":"345584","name":"Windows 8","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345584#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345584%26applied_value_name%3DWindows+8%26applied_value_order%3D6%26applied_value_results%3D175%26is_custom%3Dfalse","results":"(175)"},{"id":"345587","name":"Windows XP","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345587#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345587%26applied_value_name%3DWindows+XP%26applied_value_order%3D7%26applied_value_results%3D175%26is_custom%3Dfalse","results":"(175)"}],"fragment":"applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D8%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"345583","name":"Windows 10","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345583#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345583%26applied_value_name%3DWindows+10%26applied_value_order%3D4%26applied_value_results%3D289975%26is_custom%3Dfalse","results":"(289.975)"},{"id":"345585","name":"Windows 7","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345585#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345585%26applied_value_name%3DWindows+7%26applied_value_order%3D5%26applied_value_results%3D14160%26is_custom%3Dfalse","results":"(14.160)"},{"id":"345588","name":"Linux","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345588#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345588%26applied_value_name%3DLinux%26applied_value_order%3D2%26applied_value_results%3D4749%26is_custom%3Dfalse","results":"(4.749)"},{"id":"345589","name":"Mac OS","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345589#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345589%26applied_value_name%3DMac+OS%26applied_value_order%3D3%26applied_value_results%3D263%26is_custom%3Dfalse","results":"(263)"},{"id":"345587","name":"Windows XP","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345587#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345587%26applied_value_name%3DWindows+XP%26applied_value_order%3D7%26applied_value_results%3D175%26is_custom%3Dfalse","results":"(175)"},{"id":"345584","name":"Windows 8","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345584#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345584%26applied_value_name%3DWindows+8%26applied_value_order%3D6%26applied_value_results%3D175%26is_custom%3Dfalse","results":"(175)"},{"id":"345582","name":"Chrome OS","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345582#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345582%26applied_value_name%3DChrome+OS%26applied_value_order%3D1%26applied_value_results%3D87%26is_custom%3Dfalse","results":"(87)"}],"show_modal":false},{"id":"state","name":"Localiza\xc3\xa7\xc3\xa3o","type":"text","values":[{"id":"TUxCUEJBSEFlYmEx","name":"Bahia","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fbahia\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUEJBSEFlYmEx%26applied_value_name%3DBahia%26applied_value_order%3D1%26applied_value_results%3D1671%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1.671)"},{"id":"TUxCUENFQUExNzkyZQ","name":"Cear\xc3\xa1","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fceara\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUENFQUExNzkyZQ%26applied_value_name%3DCear%C3%A1%26applied_value_order%3D2%26applied_value_results%3D175%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(175)"},{"id":"TUxCUERJU0wxMWJhYg","name":"Distrito Federal","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fdistrito-federal\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUERJU0wxMWJhYg%26applied_value_name%3DDistrito+Federal%26applied_value_order%3D3%26applied_value_results%3D1231%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1.231)"},{"id":"TUxCUEVTUE8xN2Y3NA","name":"Esp\xc3\xadrito Santo","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fespirito-santo\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUEVTUE8xN2Y3NA%26applied_value_name%3DEsp%C3%ADrito+Santo%26applied_value_order%3D4%26applied_value_results%3D4925%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4.925)"},{"id":"TUxCUEdPSVMxNzVmMw","name":"Goi\xc3\xa1s","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fgoias\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUEdPSVMxNzVmMw%26applied_value_name%3DGoi%C3%A1s%26applied_value_order%3D5%26applied_value_results%3D1231%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1.231)"},{"id":"TUxCUE1BVEw4ZTc","name":"Mato Grosso do Sul","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fmato-grosso-do-sul\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUE1BVEw4ZTc%26applied_value_name%3DMato+Grosso+do+Sul%26applied_value_order%3D6%26applied_value_results%3D87%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(87)"},{"id":"TUxCUE1JTlMxNTAyZA","name":"Minas Gerais","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fminas-gerais\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUE1JTlMxNTAyZA%26applied_value_name%3DMinas+Gerais%26applied_value_order%3D7%26applied_value_results%3D101232%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(101.232)"},{"id":"TUxCUFBBUkExODBlZA","name":"Paran\xc3\xa1","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fparana\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFBBUkExODBlZA%26applied_value_name%3DParan%C3%A1%26applied_value_order%3D8%26applied_value_results%3D24010%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(24.010)"},{"id":"TUxCUFBBUkE0M2I4","name":"Para\xc3\xadba","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fparaiba\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFBBUkE0M2I4%26applied_value_name%3DPara%C3%ADba%26applied_value_order%3D9%26applied_value_results%3D263%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(263)"},{"id":"TUxCUFBBUkFiY2Uw","name":"Par\xc3\xa1","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fpara\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFBBUkFiY2Uw%26applied_value_name%3DPar%C3%A1%26applied_value_order%3D10%26applied_value_results%3D87%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(87)"},{"id":"TUxCUFBFUk8xZmZj","name":"Pernambuco","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fpernambuco\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFBFUk8xZmZj%26applied_value_name%3DPernambuco%26applied_value_order%3D11%26applied_value_results%3D263%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(263)"},{"id":"TUxCUFJJT08xODM5Zg","name":"Rio de Janeiro","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Frio-de-janeiro\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFJJT08xODM5Zg%26applied_value_name%3DRio+de+Janeiro%26applied_value_order%3D12%26applied_value_results%3D15303%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(15.303)"},{"id":"TUxCUFJJT0VkMmNj","name":"Rio Grande do Norte","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Frio-grande-do-norte\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFJJT0VkMmNj%26applied_value_name%3DRio+Grande+do+Norte%26applied_value_order%3D13%26applied_value_results%3D263%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(263)"},{"id":"TUxCUFJJT0xkYzM0","name":"Rio Grande do Sul","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Frio-grande-do-sul\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFJJT0xkYzM0%26applied_value_name%3DRio+Grande+do+Sul%26applied_value_order%3D14%26applied_value_results%3D6332%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(6.332)"},{"id":"TUxCUFJPTkExMmU4YQ","name":"Rond\xc3\xb4nia","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Frondonia\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFJPTkExMmU4YQ%26applied_value_name%3DRond%C3%B4nia%26applied_value_order%3D15%26applied_value_results%3D87%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(87)"},{"id":"TUxCUFNBTkE5Nzc4","name":"Santa Catarina","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fsanta-catarina\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFNBTkE5Nzc4%26applied_value_name%3DSanta+Catarina%26applied_value_order%3D16%26applied_value_results%3D48813%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(48.813)"},{"id":"TUxCUFNBT085N2E4","name":"S\xc3\xa3o Paulo","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fsao-paulo\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFNBT085N2E4%26applied_value_name%3DS%C3%A3o+Paulo%26applied_value_order%3D17%26applied_value_results%3D341163%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(341.163)"}],"modal":{"type":"DEFAULT","labels":{"modal_not_found_message":"No encontramos resultados que coincidan con su b\xc3\xbasqueda","modal_label":"Mostrar mais","modal_place_holder":"Buscar..."}},"fragment":"applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D18%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"TUxCUFNBT085N2E4","name":"S\xc3\xa3o Paulo","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fsao-paulo\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFNBT085N2E4%26applied_value_name%3DS%C3%A3o+Paulo%26applied_value_order%3D17%26applied_value_results%3D341163%26is_custom%3Dfalse","results":"(341.163)"},{"id":"TUxCUE1JTlMxNTAyZA","name":"Minas Gerais","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fminas-gerais\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUE1JTlMxNTAyZA%26applied_value_name%3DMinas+Gerais%26applied_value_order%3D7%26applied_value_results%3D101232%26is_custom%3Dfalse","results":"(101.232)"},{"id":"TUxCUFNBTkE5Nzc4","name":"Santa Catarina","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fsanta-catarina\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFNBTkE5Nzc4%26applied_value_name%3DSanta+Catarina%26applied_value_order%3D16%26applied_value_results%3D48813%26is_custom%3Dfalse","results":"(48.813)"},{"id":"TUxCUFBBUkExODBlZA","name":"Paran\xc3\xa1","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fparana\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFBBUkExODBlZA%26applied_value_name%3DParan%C3%A1%26applied_value_order%3D8%26applied_value_results%3D24010%26is_custom%3Dfalse","results":"(24.010)"},{"id":"TUxCUFJJT08xODM5Zg","name":"Rio de Janeiro","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Frio-de-janeiro\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFJJT08xODM5Zg%26applied_value_name%3DRio+de+Janeiro%26applied_value_order%3D12%26applied_value_results%3D15303%26is_custom%3Dfalse","results":"(15.303)"},{"id":"TUxCUFJJT0xkYzM0","name":"Rio Grande do Sul","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Frio-grande-do-sul\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFJJT0xkYzM0%26applied_value_name%3DRio+Grande+do+Sul%26applied_value_order%3D14%26applied_value_results%3D6332%26is_custom%3Dfalse","results":"(6.332)"},{"id":"TUxCUEVTUE8xN2Y3NA","name":"Esp\xc3\xadrito Santo","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fespirito-santo\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUEVTUE8xN2Y3NA%26applied_value_name%3DEsp%C3%ADrito+Santo%26applied_value_order%3D4%26applied_value_results%3D4925%26is_custom%3Dfalse","results":"(4.925)"},{"id":"TUxCUEJBSEFlYmEx","name":"Bahia","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fbahia\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUEJBSEFlYmEx%26applied_value_name%3DBahia%26applied_value_order%3D1%26applied_value_results%3D1671%26is_custom%3Dfalse","results":"(1.671)"},{"id":"TUxCUERJU0wxMWJhYg","name":"Distrito Federal","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fdistrito-federal\\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUERJU0wxMWJhYg%26applied_value_name%3DDistrito+Federal%26applied_value_order%3D3%26applied_value_results%3D1231%26is_custom%3Dfalse","results":"(1.231)"}],"show_modal":true,"url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fcomputador_FiltersAvailableSidebar?filter=state"},{"id":"HDD_SIZE","name":"Disco r\xc3\xadgido","type":"range","values":[{"id":"[1000GB-1240GB)","name":"1.000 a 1.239 GB","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_HDD*SIZE_1000GB-1240GB_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%5B1000GB-1240GB%29%26applied_value_name%3D1.000+a+1.239+GB%26applied_value_order%3D1%26applied_value_results%3D61302%26is_custom%3Dfalse","results":"(61.302)"},{"id":"[1240GB-*)","name":"1.240 GB ou mais","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_HDD*SIZE_1240GB-*_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%5B1240GB-*%29%26applied_value_name%3D1.240+GB+ou+mais%26applied_value_order%3D2%26applied_value_results%3D11345%26is_custom%3Dfalse","results":"(11.345)"},{"id":"[250GB-1000GB)","name":"250 a 999 GB","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_HDD*SIZE_250GB-1000GB_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%5B250GB-1000GB%29%26applied_value_name%3D250+a+999+GB%26applied_value_order%3D3%26applied_value_results%3D142481%26is_custom%3Dfalse","results":"(142.481)"},{"id":"(*-250GB)","name":"Menos de 250 GB","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_HDD*SIZE_*-250GB_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%28*-250GB%29%26applied_value_name%3DMenos+de+250+GB%26applied_value_order%3D4%26applied_value_results%3D238084%26is_custom%3Dfalse","results":"(238.084)"}],"url_templates":{"only_from":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_HDD*SIZE_$from-*","only_to":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_HDD*SIZE_*-$to","from_and_to":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_HDD*SIZE_$from-$to"},"fragment":"applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D5%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"(*-250GB)","name":"Menos de 250 GB","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_HDD*SIZE_*-250GB_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%28*-250GB%29%26applied_value_name%3DMenos+de+250+GB%26applied_value_order%3D4%26applied_value_results%3D238084%26is_custom%3Dfalse","results":"(238.084)"},{"id":"[250GB-1000GB)","name":"250 a 999 GB","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_HDD*SIZE_250GB-1000GB_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%5B250GB-1000GB%29%26applied_value_name%3D250+a+999+GB%26applied_value_order%3D3%26applied_value_results%3D142481%26is_custom%3Dfalse","results":"(142.481)"},{"id":"[1000GB-1240GB)","name":"1.000 a 1.239 GB","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_HDD*SIZE_1000GB-1240GB_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%5B1000GB-1240GB%29%26applied_value_name%3D1.000+a+1.239+GB%26applied_value_order%3D1%26applied_value_results%3D61302%26is_custom%3Dfalse","results":"(61.302)"},{"id":"[1240GB-*)","name":"1.240 GB ou mais","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_HDD*SIZE_1240GB-*_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%5B1240GB-*%29%26applied_value_name%3D1.240+GB+ou+mais%26applied_value_order%3D2%26applied_value_results%3D11345%26is_custom%3Dfalse","results":"(11.345)"}],"show_modal":false},{"id":"DISPLAY_SIZE","name":"Tamanho da tela","type":"range","values":[{"id":"[11.6\\"-18.5\\")","name":"11,6 a 18,4 \\"","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_DISPLAY*SIZE_11.6\\"-18.5\\"#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%5B11.6%22-18.5%22%29%26applied_value_name%3D11%2C6+a+18%2C4+%22%26applied_value_order%3D1%26applied_value_results%3D36060%26is_custom%3Dfalse","results":"(36.060)"},{"id":"[18.5\\"-20\\")","name":"18,5 a 19,9 \\"","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_DISPLAY*SIZE_18.5\\"-20\\"#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%5B18.5%22-20%22%29%26applied_value_name%3D18%2C5+a+19%2C9+%22%26applied_value_order%3D2%26applied_value_results%3D55497%26is_custom%3Dfalse","results":"(55.497)"},{"id":"[20\\"-*)","name":"20 \\" ou mais","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_DISPLAY*SIZE_20\\"-*#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%5B20%22-*%29%26applied_value_name%3D20+%22+ou+mais%26applied_value_order%3D3%26applied_value_results%3D16358%26is_custom%3Dfalse","results":"(16.358)"},{"id":"(*-11.6\\")","name":"Menos de 11,6 \\"","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_DISPLAY*SIZE_*-11.6\\"#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%28*-11.6%22%29%26applied_value_name%3DMenos+de+11%2C6+%22%26applied_value_order%3D4%26applied_value_results%3D61741%26is_custom%3Dfalse","results":"(61.741)"}],"url_templates":{"only_from":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_DISPLAY*SIZE_$from-*","only_to":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_DISPLAY*SIZE_*-$to","from_and_to":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_DISPLAY*SIZE_$from-$to"},"fragment":"applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D5%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"(*-11.6\\")","name":"Menos de 11,6 \\"","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_DISPLAY*SIZE_*-11.6\\"#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%28*-11.6%22%29%26applied_value_name%3DMenos+de+11%2C6+%22%26applied_value_order%3D4%26applied_value_results%3D61741%26is_custom%3Dfalse","results":"(61.741)"},{"id":"[11.6\\"-18.5\\")","name":"11,6 a 18,4 \\"","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_DISPLAY*SIZE_11.6\\"-18.5\\"#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%5B11.6%22-18.5%22%29%26applied_value_name%3D11%2C6+a+18%2C4+%22%26applied_value_order%3D1%26applied_value_results%3D36060%26is_custom%3Dfalse","results":"(36.060)"},{"id":"[18.5\\"-20\\")","name":"18,5 a 19,9 \\"","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_DISPLAY*SIZE_18.5\\"-20\\"#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%5B18.5%22-20%22%29%26applied_value_name%3D18%2C5+a+19%2C9+%22%26applied_value_order%3D2%26applied_value_results%3D55497%26is_custom%3Dfalse","results":"(55.497)"},{"id":"[20\\"-*)","name":"20 \\" ou mais","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_DISPLAY*SIZE_20\\"-*#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%5B20%22-*%29%26applied_value_name%3D20+%22+ou+mais%26applied_value_order%3D3%26applied_value_results%3D16358%26is_custom%3Dfalse","results":"(16.358)"}],"show_modal":false},{"id":"BRAND","name":"Marca","type":"STRING","values":[{"id":"345557","name":"3Green","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_345557_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D345557%26applied_value_name%3D3Green%26applied_value_order%3D1%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"15903","name":"Acer","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_15903_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D15903%26applied_value_name%3DAcer%26applied_value_order%3D2%26applied_value_results%3D9%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(9)"},{"id":"12355235","name":"Acf","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_12355235_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D12355235%26applied_value_name%3DAcf%26applied_value_order%3D3%26applied_value_results%3D10%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(10)"},{"id":"8182702","name":"Adamantiun","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_8182702_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8182702%26applied_value_name%3DAdamantiun%26applied_value_order%3D4%26applied_value_results%3D5%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(5)"},{"id":"7636991","name":"Adata","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_7636991_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7636991%26applied_value_name%3DAdata%26applied_value_order%3D5%26applied_value_results%3D10%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(10)"},{"id":"8718525","name":"Aerocool Advanced Technologies","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_8718525_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8718525%26applied_value_name%3DAerocool+Advanced+Technologies%26applied_value_order%3D6%26applied_value_results%3D5%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(5)"},{"id":"937022","name":"AG","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_937022_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D937022%26applied_value_name%3DAG%26applied_value_order%3D7%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"7068095","name":"AGS","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_7068095_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7068095%26applied_value_name%3DAGS%26applied_value_order%3D8%26applied_value_results%3D10%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(10)"},{"id":"3485879","name":"Aigo","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_3485879_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3485879%26applied_value_name%3DAigo%26applied_value_order%3D9%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"5353537","name":"Alfatec","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_5353537_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D5353537%26applied_value_name%3DAlfatec%26applied_value_order%3D10%26applied_value_results%3D5%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(5)"},{"id":"457388","name":"Altomex","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_457388_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D457388%26applied_value_name%3DAltomex%26applied_value_order%3D11%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"18034","name":"AMD","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_18034_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D18034%26applied_value_name%3DAMD%26applied_value_order%3D12%26applied_value_results%3D39%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(39)"},{"id":"7173388","name":"AMS","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_7173388_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7173388%26applied_value_name%3DAMS%26applied_value_order%3D13%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"20262","name":"AOC","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_20262_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D20262%26applied_value_name%3DAOC%26applied_value_order%3D14%26applied_value_results%3D11%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(11)"},{"id":"15294","name":"APC","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_15294_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D15294%26applied_value_name%3DAPC%26applied_value_order%3D15%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"9344","name":"Apple","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_9344_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D9344%26applied_value_name%3DApple%26applied_value_order%3D16%26applied_value_results%3D6%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(6)"},{"id":"18651","name":"ASRock","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_18651_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D18651%26applied_value_name%3DASRock%26applied_value_order%3D17%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"7294334","name":"Asus","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_7294334_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7294334%26applied_value_name%3DAsus%26applied_value_order%3D18%26applied_value_results%3D11%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(11)"},{"id":"2491451","name":"ATM","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_2491451_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2491451%26applied_value_name%3DATM%26applied_value_order%3D19%26applied_value_results%3D20%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(20)"},{"id":"12821547","name":"ATX","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_12821547_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D12821547%26applied_value_name%3DATX%26applied_value_order%3D20%26applied_value_results%3D28%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(28)"},{"id":"2304291","name":"Aula","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_2304291_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2304291%26applied_value_name%3DAula%26applied_value_order%3D21%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"183772","name":"Baseus","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_183772_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D183772%26applied_value_name%3DBaseus%26applied_value_order%3D22%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"11834","name":"Bematech","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_11834_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D11834%26applied_value_name%3DBematech%26applied_value_order%3D23%26applied_value_results%3D54%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(54)"},{"id":"1102918","name":"Bluecase","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_1102918_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D1102918%26applied_value_name%3DBluecase%26applied_value_order%3D24%26applied_value_results%3D6%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(6)"},{"id":"9127790","name":"Brasil PC","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_9127790_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D9127790%26applied_value_name%3DBrasil+PC%26applied_value_order%3D25%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"2949523","name":"Brazil PC","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_2949523_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2949523%26applied_value_name%3DBrazil+PC%26applied_value_order%3D26%26applied_value_results%3D45%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(45)"},{"id":"2767273","name":"Briwax","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_2767273_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2767273%26applied_value_name%3DBriwax%26applied_value_order%3D27%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"8938696","name":"BRX","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_8938696_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8938696%26applied_value_name%3DBRX%26applied_value_order%3D28%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"8774306","name":"C3Tech","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_8774306_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8774306%26applied_value_name%3DC3Tech%26applied_value_order%3D29%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"403225","name":"Case","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_403225_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D403225%26applied_value_name%3DCase%26applied_value_order%3D30%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"20024","name":"CCE","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_20024_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D20024%26applied_value_name%3DCCE%26applied_value_order%3D31%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"26807","name":"Cisco","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_26807_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D26807%26applied_value_name%3DCisco%26applied_value_order%3D32%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"512563","name":"Cometa","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_512563_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D512563%26applied_value_name%3DCometa%26applied_value_order%3D33%26applied_value_results%3D32%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(32)"},{"id":"11476","name":"Compaq","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_11476_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D11476%26applied_value_name%3DCompaq%26applied_value_order%3D34%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"5083419","name":"Conc\xc3\xb3rdia","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_5083419_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D5083419%26applied_value_name%3DConc%C3%B3rdia%26applied_value_order%3D35%26applied_value_results%3D31%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(31)"},{"id":"8695625","name":"Cooler Master Technology","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_8695625_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8695625%26applied_value_name%3DCooler+Master+Technology%26applied_value_order%3D36%26applied_value_results%3D5%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(5)"},{"id":"47354","name":"Corsair","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_47354_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D47354%26applied_value_name%3DCorsair%26applied_value_order%3D37%26applied_value_results%3D17%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(17)"},{"id":"47687","name":"Crucial","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_47687_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D47687%26applied_value_name%3DCrucial%26applied_value_order%3D38%26applied_value_results%3D13%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(13)"},{"id":"205902","name":"Crypton","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_205902_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D205902%26applied_value_name%3DCrypton%26applied_value_order%3D39%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"4616346","name":"Danny","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_4616346_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D4616346%26applied_value_name%3DDanny%26applied_value_order%3D40%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"8111697","name":"Deko","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_8111697_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8111697%26applied_value_name%3DDeko%26applied_value_order%3D41%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"8216","name":"Dell","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_8216_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8216%26applied_value_name%3DDell%26applied_value_order%3D42%26applied_value_results%3D802%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(802)"},{"id":"2618843","name":"Dex","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_2618843_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2618843%26applied_value_name%3DDex%26applied_value_order%3D43%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"5898945","name":"Diversos","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_5898945_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D5898945%26applied_value_name%3DDiversos%26applied_value_order%3D44%26applied_value_results%3D11%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(11)"},{"id":"2247418","name":"Dmix","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_2247418_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2247418%26applied_value_name%3DDmix%26applied_value_order%3D45%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"41939","name":"Easy","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_41939_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D41939%26applied_value_name%3DEasy%26applied_value_order%3D46%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"3691571","name":"Edup","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_3691571_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3691571%26applied_value_name%3DEdup%26applied_value_order%3D47%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"102992","name":"Elgin","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_102992_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D102992%26applied_value_name%3DElgin%26applied_value_order%3D48%26applied_value_results%3D8%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(8)"},{"id":"2231070","name":"EMC","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_2231070_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2231070%26applied_value_name%3DEMC%26applied_value_order%3D49%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"10447040","name":"Energy Lux","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_10447040_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D10447040%26applied_value_name%3DEnergy+Lux%26applied_value_order%3D50%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"263005","name":"Estone","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_263005_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D263005%26applied_value_name%3DEstone%26applied_value_order%3D51%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"5052860","name":"Everex","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_5052860_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D5052860%26applied_value_name%3DEverex%26applied_value_order%3D52%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"8263410","name":"Evolut","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_8263410_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8263410%26applied_value_name%3DEvolut%26applied_value_order%3D53%26applied_value_results%3D7%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(7)"},{"id":"7160886","name":"Exbom","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_7160886_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7160886%26applied_value_name%3DExbom%26applied_value_order%3D54%26applied_value_results%3D14%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(14)"},{"id":"3506149","name":"F-New","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_3506149_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3506149%26applied_value_name%3DF-New%26applied_value_order%3D55%26applied_value_results%3D9%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(9)"},{"id":"153617","name":"Feir","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_153617_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D153617%26applied_value_name%3DFeir%26applied_value_order%3D56%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"12860741","name":"Fire Phoenix","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_12860741_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D12860741%26applied_value_name%3DFire+Phoenix%26applied_value_order%3D57%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"454145","name":"First","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_454145_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D454145%26applied_value_name%3DFirst%26applied_value_order%3D58%26applied_value_results%3D11%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(11)"},{"id":"46525","name":"Fortrek","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_46525_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D46525%26applied_value_name%3DFortrek%26applied_value_order%3D59%26applied_value_results%3D13%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(13)"},{"id":"1003243","name":"FSP","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_1003243_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D1003243%26applied_value_name%3DFSP%26applied_value_order%3D60%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"3725684","name":"G-Fire","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_3725684_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3725684%26applied_value_name%3DG-Fire%26applied_value_order%3D61%26applied_value_results%3D6%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(6)"},{"id":"8182112","name":"Gamdias","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_8182112_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8182112%26applied_value_name%3DGamdias%26applied_value_order%3D62%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"899182","name":"GameMax","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_899182_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D899182%26applied_value_name%3DGameMax%26applied_value_order%3D63%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"2151157","name":"General","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_2151157_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2151157%26applied_value_name%3DGeneral%26applied_value_order%3D64%26applied_value_results%3D5%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(5)"},{"id":"10331273","name":"Generic","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_10331273_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D10331273%26applied_value_name%3DGeneric%26applied_value_order%3D65%26applied_value_results%3D7%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(7)"},{"id":"276243","name":"Gen\xc3\xa9rica","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_276243_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D276243%26applied_value_name%3DGen%C3%A9rica%26applied_value_order%3D66%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"12197076","name":"Gen\xc3\xa9rico","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_12197076_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D12197076%26applied_value_name%3DGen%C3%A9rico%26applied_value_order%3D67%26applied_value_results%3D8%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(8)"},{"id":"8738922","name":"Giga-Byte Technology","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_8738922_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8738922%26applied_value_name%3DGiga-Byte+Technology%26applied_value_order%3D68%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"18623","name":"Gigabyte","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_18623_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D18623%26applied_value_name%3DGigabyte%26applied_value_order%3D69%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"10453891","name":"Goldenfir","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_10453891_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D10453891%26applied_value_name%3DGoldenfir%26applied_value_order%3D70%26applied_value_results%3D6%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(6)"},{"id":"2949380","name":"Goldenultra","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_2949380_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2949380%26applied_value_name%3DGoldenultra%26applied_value_order%3D71%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"9778294","name":"GoLine","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_9778294_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D9778294%26applied_value_name%3DGoLine%26applied_value_order%3D72%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"3280228","name":"H\'maston","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_3280228_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3280228%26applied_value_name%3DH%27maston%26applied_value_order%3D73%26applied_value_results%3D5%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(5)"},{"id":"7106798","name":"Haiz","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_7106798_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7106798%26applied_value_name%3DHaiz%26applied_value_order%3D74%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"50458","name":"Havit","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_50458_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D50458%26applied_value_name%3DHavit%26applied_value_order%3D75%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"9814765","name":"Hayom","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_9814765_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D9814765%26applied_value_name%3DHayom%26applied_value_order%3D76%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"234","name":"Hitachi","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_234_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D234%26applied_value_name%3DHitachi%26applied_value_order%3D77%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"417157","name":"Hoopson","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_417157_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D417157%26applied_value_name%3DHoopson%26applied_value_order%3D78%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"49944","name":"HP","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_49944_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D49944%26applied_value_name%3DHP%26applied_value_order%3D79%26applied_value_results%3D383%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(383)"},{"id":"353291","name":"HP Compaq","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_353291_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D353291%26applied_value_name%3DHP+Compaq%26applied_value_order%3D80%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"5735609","name":"HQ","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_5735609_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D5735609%26applied_value_name%3DHQ%26applied_value_order%3D81%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"448156","name":"HyperX","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_448156_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D448156%26applied_value_name%3DHyperX%26applied_value_order%3D82%26applied_value_results%3D24%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(24)"},{"id":"2864","name":"IBM","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_2864_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2864%26applied_value_name%3DIBM%26applied_value_order%3D83%26applied_value_results%3D18%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(18)"},{"id":"5681511","name":"Implastec","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_5681511_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D5681511%26applied_value_name%3DImplastec%26applied_value_order%3D84%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"117110","name":"Infokit","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_117110_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D117110%26applied_value_name%3DInfokit%26applied_value_order%3D85%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"7855833","name":"Intel","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_7855833_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7855833%26applied_value_name%3DIntel%26applied_value_order%3D86%26applied_value_results%3D356%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(356)"},{"id":"11410665","name":"It-Blue","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_11410665_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D11410665%26applied_value_name%3DIt-Blue%26applied_value_order%3D87%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"283137","name":"Itautec","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_283137_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D283137%26applied_value_name%3DItautec%26applied_value_order%3D88%26applied_value_results%3D12%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(12)"},{"id":"17265","name":"JBL","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_17265_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D17265%26applied_value_name%3DJBL%26applied_value_order%3D89%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"8907923","name":"JBR","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_8907923_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8907923%26applied_value_name%3DJBR%26applied_value_order%3D90%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"1024287","name":"K-Mex","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_1024287_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D1024287%26applied_value_name%3DK-Mex%26applied_value_order%3D91%26applied_value_results%3D25%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(25)"},{"id":"5029029","name":"Kalex","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_5029029_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D5029029%26applied_value_name%3DKalex%26applied_value_order%3D92%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"12223442","name":"Kapbom","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_12223442_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D12223442%26applied_value_name%3DKapbom%26applied_value_order%3D93%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"3893241","name":"Kebidu","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_3893241_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3893241%26applied_value_name%3DKebidu%26applied_value_order%3D94%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"3325434","name":"Kimaster","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_3325434_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3325434%26applied_value_name%3DKimaster%26applied_value_order%3D95%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"3424363","name":"KingDian","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_3424363_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3424363%26applied_value_name%3DKingDian%26applied_value_order%3D96%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"162221","name":"KingSpec","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_162221_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D162221%26applied_value_name%3DKingSpec%26applied_value_order%3D97%26applied_value_results%3D8%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(8)"},{"id":"16360","name":"Kingston","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_16360_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D16360%26applied_value_name%3DKingston%26applied_value_order%3D98%26applied_value_results%3D43%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(43)"},{"id":"140055","name":"Knup","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_140055_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D140055%26applied_value_name%3DKnup%26applied_value_order%3D99%26applied_value_results%3D23%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(23)"},{"id":"9134524","name":"Kunup","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_9134524_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D9134524%26applied_value_name%3DKunup%26applied_value_order%3D100%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"18705","name":"LaCie","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_18705_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D18705%26applied_value_name%3DLaCie%26applied_value_order%3D101%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"7494","name":"Lenovo","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_7494_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7494%26applied_value_name%3DLenovo%26applied_value_order%3D102%26applied_value_results%3D255%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(255)"},{"id":"16739","name":"Lexar","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_16739_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D16739%26applied_value_name%3DLexar%26applied_value_order%3D103%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"215","name":"LG","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_215_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D215%26applied_value_name%3DLG%26applied_value_order%3D104%26applied_value_results%3D14%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(14)"},{"id":"2971570","name":"Liketec","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_2971570_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2971570%26applied_value_name%3DLiketec%26applied_value_order%3D105%26applied_value_results%3D5%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(5)"},{"id":"403605","name":"Line","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_403605_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D403605%26applied_value_name%3DLine%26applied_value_order%3D106%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"16509","name":"Lite-On","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_16509_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D16509%26applied_value_name%3DLite-On%26applied_value_order%3D107%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"15788","name":"Logitech","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_15788_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D15788%26applied_value_name%3DLogitech%26applied_value_order%3D108%26applied_value_results%3D70%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(70)"},{"id":"19640","name":"Lotus","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_19640_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D19640%26applied_value_name%3DLotus%26applied_value_order%3D109%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"428791","name":"MAC","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_428791_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D428791%26applied_value_name%3DMAC%26applied_value_order%3D110%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"371117","name":"MAG Engenharia","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_371117_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D371117%26applied_value_name%3DMAG+Engenharia%26applied_value_order%3D111%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"9705867","name":"Mancer","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_9705867_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D9705867%26applied_value_name%3DMancer%26applied_value_order%3D112%26applied_value_results%3D112%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(112)"},{"id":"122141","name":"Markvision","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_122141_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D122141%26applied_value_name%3DMarkvision%26applied_value_order%3D113%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"3640660","name":"McAfee","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_3640660_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3640660%26applied_value_name%3DMcAfee%26applied_value_order%3D114%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"185123","name":"Megaware","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_185123_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D185123%26applied_value_name%3DMegaware%26applied_value_order%3D115%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"445743","name":"Mercusys","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_445743_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D445743%26applied_value_name%3DMercusys%26applied_value_order%3D116%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"15770","name":"Microsoft","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_15770_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D15770%26applied_value_name%3DMicrosoft%26applied_value_order%3D117%26applied_value_results%3D14%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(14)"},{"id":"11049475","name":"Montado","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_11049475_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D11049475%26applied_value_name%3DMontado%26applied_value_order%3D118%26applied_value_results%3D49%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(49)"},{"id":"275116","name":"Motospeed","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_275116_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D275116%26applied_value_name%3DMotospeed%26applied_value_order%3D119%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"3264976","name":"Movitec","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_3264976_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3264976%26applied_value_name%3DMovitec%26applied_value_order%3D120%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"5992579","name":"MSX","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_5992579_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D5992579%26applied_value_name%3DMSX%26applied_value_order%3D121%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"9984736","name":"MTC","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_9984736_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D9984736%26applied_value_name%3DMTC%26applied_value_order%3D122%26applied_value_results%3D20%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(20)"},{"id":"31163","name":"Multilaser","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_31163_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D31163%26applied_value_name%3DMultilaser%26applied_value_order%3D123%26applied_value_results%3D113%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(113)"},{"id":"6291957","name":"MultiPC","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_6291957_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D6291957%26applied_value_name%3DMultiPC%26applied_value_order%3D124%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"574171","name":"Mymax","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_574171_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D574171%26applied_value_name%3DMymax%26applied_value_order%3D125%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"243232","name":"Nitro","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_243232_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D243232%26applied_value_name%3DNitro%26applied_value_order%3D126%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"59772","name":"OEM","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_59772_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D59772%26applied_value_name%3DOEM%26applied_value_order%3D127%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"122133","name":"OEX","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_122133_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D122133%26applied_value_name%3DOEX%26applied_value_order%3D128%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"4951","name":"OKI","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_4951_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D4951%26applied_value_name%3DOKI%26applied_value_order%3D129%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"1024292","name":"One Power","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_1024292_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D1024292%26applied_value_name%3DOne+Power%26applied_value_order%3D130%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"8830927","name":"Orionas","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_8830927_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8830927%26applied_value_name%3DOrionas%26applied_value_order%3D131%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"11352739","name":"Oscoo","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_11352739_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D11352739%26applied_value_name%3DOscoo%26applied_value_order%3D132%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"18662","name":"Patriot","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_18662_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D18662%26applied_value_name%3DPatriot%26applied_value_order%3D133%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"5771213","name":"PC Ware","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_5771213_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D5771213%26applied_value_name%3DPC+Ware%26applied_value_order%3D134%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"1130484","name":"Pctop","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_1130484_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D1130484%26applied_value_name%3DPctop%26applied_value_order%3D135%26applied_value_results%3D6%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(6)"},{"id":"8028731","name":"Pcyes","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_8028731_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8028731%26applied_value_name%3DPcyes%26applied_value_order%3D136%26applied_value_results%3D6%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(6)"},{"id":"3","name":"Philips","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_3_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3%26applied_value_name%3DPhilips%26applied_value_order%3D137%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"973653","name":"PHX","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_973653_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D973653%26applied_value_name%3DPHX%26applied_value_order%3D138%26applied_value_results%3D11%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(11)"},{"id":"923416","name":"PlayStation","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_923416_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D923416%26applied_value_name%3DPlayStation%26applied_value_order%3D139%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"3756317","name":"Plus Cable","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_3756317_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3756317%26applied_value_name%3DPlus+Cable%26applied_value_order%3D140%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"17755","name":"PNY","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_17755_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D17755%26applied_value_name%3DPNY%26applied_value_order%3D141%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"10861613","name":"Poly","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_10861613_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D10861613%26applied_value_name%3DPoly%26applied_value_order%3D142%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"13346","name":"Positivo","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_13346_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D13346%26applied_value_name%3DPositivo%26applied_value_order%3D143%26applied_value_results%3D49%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(49)"},{"id":"261209","name":"Ragtech","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_261209_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D261209%26applied_value_name%3DRagtech%26applied_value_order%3D144%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"17587","name":"Razer","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_17587_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D17587%26applied_value_name%3DRazer%26applied_value_order%3D145%26applied_value_results%3D7%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(7)"},{"id":"275795","name":"Redragon","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_275795_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D275795%26applied_value_name%3DRedragon%26applied_value_order%3D146%26applied_value_results%3D42%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(42)"},{"id":"3509510","name":"Rise","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_3509510_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3509510%26applied_value_name%3DRise%26applied_value_order%3D147%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"6171802","name":"Rise Mode","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_6171802_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D6171802%26applied_value_name%3DRise+Mode%26applied_value_order%3D148%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"3189974","name":"Rontek","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_3189974_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3189974%26applied_value_name%3DRontek%26applied_value_order%3D149%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"7070535","name":"RZX","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_7070535_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7070535%26applied_value_name%3DRZX%26applied_value_order%3D150%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"206","name":"Samsung","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_206_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D206%26applied_value_name%3DSamsung%26applied_value_order%3D151%26applied_value_results%3D27%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(27)"},{"id":"16244","name":"SanDisk","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_16244_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D16244%26applied_value_name%3DSanDisk%26applied_value_order%3D152%26applied_value_results%3D10%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(10)"},{"id":"38708","name":"Satechi","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_38708_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D38708%26applied_value_name%3DSatechi%26applied_value_order%3D153%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"8756807","name":"Sea Sonic Electronics","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_8756807_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8756807%26applied_value_name%3DSea+Sonic+Electronics%26applied_value_order%3D154%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"9597","name":"Seagate","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_9597_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D9597%26applied_value_name%3DSeagate%26applied_value_order%3D155%26applied_value_results%3D27%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(27)"},{"id":"31001","name":"Semp Toshiba","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_31001_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D31001%26applied_value_name%3DSemp+Toshiba%26applied_value_order%3D156%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"12792850","name":"Shock","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_12792850_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D12792850%26applied_value_name%3DShock%26applied_value_order%3D157%26applied_value_results%3D83%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(83)"},{"id":"38765","name":"Smart","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_38765_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D38765%26applied_value_name%3DSmart%26applied_value_order%3D158%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"260594","name":"SMS","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_260594_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D260594%26applied_value_name%3DSMS%26applied_value_order%3D159%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"3346629","name":"Spartan","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_3346629_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3346629%26applied_value_name%3DSpartan%26applied_value_order%3D160%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"12292952","name":"Speaker","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_12292952_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D12292952%26applied_value_name%3DSpeaker%26applied_value_order%3D161%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"42366","name":"Star","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_42366_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D42366%26applied_value_name%3DStar%26applied_value_order%3D162%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"351881","name":"STI","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_351881_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D351881%26applied_value_name%3DSTI%26applied_value_order%3D163%26applied_value_results%3D8%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(8)"},{"id":"2410858","name":"Sun","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_2410858_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2410858%26applied_value_name%3DSun%26applied_value_order%3D164%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"2231062","name":"Supermicro","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_2231062_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2231062%26applied_value_name%3DSupermicro%26applied_value_order%3D165%26applied_value_results%3D44%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(44)"},{"id":"14184","name":"Sweda","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_14184_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D14184%26applied_value_name%3DSweda%26applied_value_order%3D166%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"8711726","name":"T-Dagger","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_8711726_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8711726%26applied_value_name%3DT-Dagger%26applied_value_order%3D167%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"421219","name":"Taicon","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_421219_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D421219%26applied_value_name%3DTaicon%26applied_value_order%3D168%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"1248398","name":"Tanca","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_1248398_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D1248398%26applied_value_name%3DTanca%26applied_value_order%3D169%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"12846232","name":"Tapcamp","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_12846232_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D12846232%26applied_value_name%3DTapcamp%26applied_value_order%3D170%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"964321","name":"Tech","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_964321_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D964321%26applied_value_name%3DTech%26applied_value_order%3D171%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"8039499","name":"Tedge","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_8039499_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8039499%26applied_value_name%3DTedge%26applied_value_order%3D172%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"8696004","name":"Thermaltake Technology","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_8696004_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8696004%26applied_value_name%3DThermaltake+Technology%26applied_value_order%3D173%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"5674033","name":"TOB Computers","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_5674033_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D5674033%26applied_value_name%3DTOB+Computers%26applied_value_order%3D174%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"2045","name":"Toshiba","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_2045_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2045%26applied_value_name%3DToshiba%26applied_value_order%3D175%26applied_value_results%3D9%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(9)"},{"id":"7885","name":"TP-Link","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_7885_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7885%26applied_value_name%3DTP-Link%26applied_value_order%3D176%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"30520","name":"TRENDnet","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_30520_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D30520%26applied_value_name%3DTRENDnet%26applied_value_order%3D177%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"7079577","name":"Tronos","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_7079577_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7079577%26applied_value_name%3DTronos%26applied_value_order%3D178%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"42328","name":"Trust","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_42328_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D42328%26applied_value_name%3DTrust%26applied_value_order%3D179%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"6286105","name":"Ts Shara","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_6286105_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D6286105%26applied_value_name%3DTs+Shara%26applied_value_order%3D180%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"345561","name":"Ultratop","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_345561_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D345561%26applied_value_name%3DUltratop%26applied_value_order%3D181%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"4439359","name":"Variedades","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_4439359_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D4439359%26applied_value_name%3DVariedades%26applied_value_order%3D182%26applied_value_results%3D14%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(14)"},{"id":"1227360","name":"Vinik","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_1227360_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D1227360%26applied_value_name%3DVinik%26applied_value_order%3D183%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"265358","name":"Weibo","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_265358_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D265358%26applied_value_name%3DWeibo%26applied_value_order%3D184%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"8067410","name":"Weijinto","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_8067410_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8067410%26applied_value_name%3DWeijinto%26applied_value_order%3D185%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"9593","name":"Western Digital","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_9593_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D9593%26applied_value_name%3DWestern+Digital%26applied_value_order%3D186%26applied_value_results%3D34%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(34)"},{"id":"59387","name":"Xiaomi","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_59387_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D59387%26applied_value_name%3DXiaomi%26applied_value_order%3D187%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"6504514","name":"XPG","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_6504514_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D6504514%26applied_value_name%3DXPG%26applied_value_order%3D188%26applied_value_results%3D10%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(10)"},{"id":"7940406","name":"Xway","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_7940406_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7940406%26applied_value_name%3DXway%26applied_value_order%3D189%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"8962063","name":"XZone","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_8962063_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8962063%26applied_value_name%3DXZone%26applied_value_order%3D190%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"8241624","name":"Ydtech","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_8241624_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8241624%26applied_value_name%3DYdtech%26applied_value_order%3D191%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"10793635","name":"Yongxinsheng","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_10793635_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D10793635%26applied_value_name%3DYongxinsheng%26applied_value_order%3D192%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"}],"modal":{"type":"DEFAULT","labels":{"modal_not_found_message":"No encontramos resultados que coincidan con su b\xc3\xbasqueda","modal_label":"Mostrar mais","modal_place_holder":"Buscar..."}},"fragment":"applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D193%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"8216","name":"Dell","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_8216_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8216%26applied_value_name%3DDell%26applied_value_order%3D42%26applied_value_results%3D802%26is_custom%3Dfalse","results":"(802)"},{"id":"49944","name":"HP","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_49944_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D49944%26applied_value_name%3DHP%26applied_value_order%3D79%26applied_value_results%3D383%26is_custom%3Dfalse","results":"(383)"},{"id":"7855833","name":"Intel","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_7855833_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7855833%26applied_value_name%3DIntel%26applied_value_order%3D86%26applied_value_results%3D356%26is_custom%3Dfalse","results":"(356)"},{"id":"7494","name":"Lenovo","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_7494_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7494%26applied_value_name%3DLenovo%26applied_value_order%3D102%26applied_value_results%3D255%26is_custom%3Dfalse","results":"(255)"},{"id":"31163","name":"Multilaser","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_31163_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D31163%26applied_value_name%3DMultilaser%26applied_value_order%3D123%26applied_value_results%3D113%26is_custom%3Dfalse","results":"(113)"},{"id":"9705867","name":"Mancer","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_9705867_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D9705867%26applied_value_name%3DMancer%26applied_value_order%3D112%26applied_value_results%3D112%26is_custom%3Dfalse","results":"(112)"},{"id":"12792850","name":"Shock","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_12792850_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D12792850%26applied_value_name%3DShock%26applied_value_order%3D157%26applied_value_results%3D83%26is_custom%3Dfalse","results":"(83)"},{"id":"15788","name":"Logitech","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_15788_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D15788%26applied_value_name%3DLogitech%26applied_value_order%3D108%26applied_value_results%3D70%26is_custom%3Dfalse","results":"(70)"},{"id":"11834","name":"Bematech","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BRAND_11834_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D11834%26applied_value_name%3DBematech%26applied_value_order%3D23%26applied_value_results%3D54%26is_custom%3Dfalse","results":"(54)"}],"show_modal":true,"url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fcomputador_FiltersAvailableSidebar?filter=BRAND"},{"id":"SHIPPING_ORIGIN","name":"Origem do frete","type":"STRING","values":[{"id":"10215069","name":"Internacional","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_SHIPPING*ORIGIN_10215069#applied_filter_id%3DSHIPPING_ORIGIN%26applied_filter_name%3DOrigem+do+frete%26applied_filter_order%3D17%26applied_value_id%3D10215069%26applied_value_name%3DInternacional%26applied_value_order%3D1%26applied_value_results%3D1319%26is_custom%3Dfalse","results":"(1.319)"},{"id":"10215068","name":"Local","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_SHIPPING*ORIGIN_10215068#applied_filter_id%3DSHIPPING_ORIGIN%26applied_filter_name%3DOrigem+do+frete%26applied_filter_order%3D17%26applied_value_id%3D10215068%26applied_value_name%3DLocal%26applied_value_order%3D2%26applied_value_results%3D546617%26is_custom%3Dfalse","results":"(546.617)"}],"fragment":"applied_filter_id%3DSHIPPING_ORIGIN%26applied_filter_name%3DOrigem+do+frete%26applied_filter_order%3D17%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D3%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"10215068","name":"Local","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_SHIPPING*ORIGIN_10215068#applied_filter_id%3DSHIPPING_ORIGIN%26applied_filter_name%3DOrigem+do+frete%26applied_filter_order%3D17%26applied_value_id%3D10215068%26applied_value_name%3DLocal%26applied_value_order%3D2%26applied_value_results%3D546617%26is_custom%3Dfalse","results":"(546.617)"},{"id":"10215069","name":"Internacional","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_SHIPPING*ORIGIN_10215069#applied_filter_id%3DSHIPPING_ORIGIN%26applied_filter_name%3DOrigem+do+frete%26applied_filter_order%3D17%26applied_value_id%3D10215069%26applied_value_name%3DInternacional%26applied_value_order%3D1%26applied_value_results%3D1319%26is_custom%3Dfalse","results":"(1.319)"}],"show_modal":false},{"id":"official_store","name":"Lojas oficiais","type":"text","values":[{"id":"all","name":"Somente lojas oficiais","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_Loja_all_NoIndex_True#applied_filter_id%3Dofficial_store%26applied_filter_name%3DLojas+oficiais%26applied_filter_order%3D18%26applied_value_id%3Dall%26applied_value_name%3DSomente+lojas+oficiais%26applied_value_order%3D1%26applied_value_results%3D105189%26is_custom%3Dfalse","results":"(105.189)"}],"fragment":"applied_filter_id%3Dofficial_store%26applied_filter_name%3DLojas+oficiais%26applied_filter_order%3D18%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D2%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"all","name":"Somente lojas oficiais","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_Loja_all_NoIndex_True#applied_filter_id%3Dofficial_store%26applied_filter_name%3DLojas+oficiais%26applied_filter_order%3D18%26applied_value_id%3Dall%26applied_value_name%3DSomente+lojas+oficiais%26applied_value_order%3D1%26applied_value_results%3D105189%26is_custom%3Dfalse","results":"(105.189)"}],"show_modal":false},{"id":"installments","name":"Pagamento","type":"text","values":[{"id":"no_interest","name":"Parcelamento sem juros","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_Installments_NoInterest_NoIndex_True#applied_filter_id%3Dinstallments%26applied_filter_name%3DPagamento%26applied_filter_order%3D19%26applied_value_id%3Dno_interest%26applied_value_name%3DParcelamento+sem+juros%26applied_value_order%3D1%26applied_value_results%3D416449%26is_custom%3Dfalse","results":"(416.449)"}],"fragment":"applied_filter_id%3Dinstallments%26applied_filter_name%3DPagamento%26applied_filter_order%3D19%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D2%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"no_interest","name":"Parcelamento sem juros","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_Installments_NoInterest_NoIndex_True#applied_filter_id%3Dinstallments%26applied_filter_name%3DPagamento%26applied_filter_order%3D19%26applied_value_id%3Dno_interest%26applied_value_name%3DParcelamento+sem+juros%26applied_value_order%3D1%26applied_value_results%3D416449%26is_custom%3Dfalse","results":"(416.449)"}],"show_modal":false},{"id":"discount","name":"Descontos","type":"numeric","values":[{"id":"5-100","name":"Mais de 5% OFF","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_Discount_5-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D5-100%26applied_value_name%3DMais+de+5%25+OFF%26applied_value_order%3D1%26applied_value_results%3D116183%26is_custom%3Dfalse","results":"(116.183)"},{"id":"10-100","name":"Mais de 10% OFF","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_Discount_10-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D10-100%26applied_value_name%3DMais+de+10%25+OFF%26applied_value_order%3D2%26applied_value_results%3D109675%26is_custom%3Dfalse","results":"(109.675)"},{"id":"15-100","name":"Mais de 15% OFF","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_Discount_15-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D15-100%26applied_value_name%3DMais+de+15%25+OFF%26applied_value_order%3D3%26applied_value_results%3D20404%26is_custom%3Dfalse","results":"(20.404)"},{"id":"20-100","name":"Mais de 20% OFF","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_Discount_20-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D20-100%26applied_value_name%3DMais+de+20%25+OFF%26applied_value_order%3D4%26applied_value_results%3D13016%26is_custom%3Dfalse","results":"(13.016)"},{"id":"25-100","name":"Mais de 25% OFF","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_Discount_25-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D25-100%26applied_value_name%3DMais+de+25%25+OFF%26applied_value_order%3D5%26applied_value_results%3D6420%26is_custom%3Dfalse","results":"(6.420)"},{"id":"30-100","name":"Mais de 30% OFF","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_Discount_30-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D30-100%26applied_value_name%3DMais+de+30%25+OFF%26applied_value_order%3D6%26applied_value_results%3D2902%26is_custom%3Dfalse","results":"(2.902)"},{"id":"40-100","name":"Mais de 40% OFF","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_Discount_40-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D40-100%26applied_value_name%3DMais+de+40%25+OFF%26applied_value_order%3D7%26applied_value_results%3D1055%26is_custom%3Dfalse","results":"(1.055)"}],"fragment":"applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D8%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"5-100","name":"Mais de 5% OFF","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_Discount_5-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D5-100%26applied_value_name%3DMais+de+5%25+OFF%26applied_value_order%3D1%26applied_value_results%3D116183%26is_custom%3Dfalse","results":"(116.183)"},{"id":"10-100","name":"Mais de 10% OFF","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_Discount_10-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D10-100%26applied_value_name%3DMais+de+10%25+OFF%26applied_value_order%3D2%26applied_value_results%3D109675%26is_custom%3Dfalse","results":"(109.675)"},{"id":"15-100","name":"Mais de 15% OFF","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_Discount_15-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D15-100%26applied_value_name%3DMais+de+15%25+OFF%26applied_value_order%3D3%26applied_value_results%3D20404%26is_custom%3Dfalse","results":"(20.404)"},{"id":"20-100","name":"Mais de 20% OFF","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_Discount_20-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D20-100%26applied_value_name%3DMais+de+20%25+OFF%26applied_value_order%3D4%26applied_value_results%3D13016%26is_custom%3Dfalse","results":"(13.016)"},{"id":"25-100","name":"Mais de 25% OFF","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_Discount_25-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D25-100%26applied_value_name%3DMais+de+25%25+OFF%26applied_value_order%3D5%26applied_value_results%3D6420%26is_custom%3Dfalse","results":"(6.420)"},{"id":"30-100","name":"Mais de 30% OFF","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_Discount_30-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D30-100%26applied_value_name%3DMais+de+30%25+OFF%26applied_value_order%3D6%26applied_value_results%3D2902%26is_custom%3Dfalse","results":"(2.902)"},{"id":"40-100","name":"Mais de 40% OFF","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_Discount_40-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D40-100%26applied_value_name%3DMais+de+40%25+OFF%26applied_value_order%3D7%26applied_value_results%3D1055%26is_custom%3Dfalse","results":"(1.055)"}],"show_modal":false},{"id":"promotion_type","name":"Tipo de promo\xc3\xa7\xc3\xa3o","type":"text","values":[{"id":"deal_of_the_day","name":"Oferta do dia","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_promotion*type_deal*of*the*day#applied_filter_id%3Dpromotion_type%26applied_filter_name%3DTipo+de+promo%C3%A7%C3%A3o%26applied_filter_order%3D21%26applied_value_id%3Ddeal_of_the_day%26applied_value_name%3DOferta+do+dia%26applied_value_order%3D1%26applied_value_results%3D1055%26is_custom%3Dfalse","results":"(1.055)"}],"fragment":"applied_filter_id%3Dpromotion_type%26applied_filter_name%3DTipo+de+promo%C3%A7%C3%A3o%26applied_filter_order%3D21%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D2%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"deal_of_the_day","name":"Oferta do dia","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_NoIndex_True_promotion*type_deal*of*the*day#applied_filter_id%3Dpromotion_type%26applied_filter_name%3DTipo+de+promo%C3%A7%C3%A3o%26applied_filter_order%3D21%26applied_value_id%3Ddeal_of_the_day%26applied_value_name%3DOferta+do+dia%26applied_value_order%3D1%26applied_value_results%3D1055%26is_custom%3Dfalse","results":"(1.055)"}],"show_modal":false},{"id":"group_1","name":"Outras caracter\xc3\xadsticas","type":"group","values":[{"id":"242085","name":"\xc3\x89 gamer","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_IS*GAMER_242085_NoIndex_True#applied_filter_id%3DIS_GAMER%26applied_filter_name%3DOutras+caracter%C3%ADsticas%26applied_filter_order%3D21%26applied_value_id%3D242085%26applied_value_name%3D%C3%89+gamer%26applied_value_order%3D0%26applied_value_results%3D160687%26is_custom%3Dfalse","results":"(160.687)"}],"fragment":"applied_filter_id%3Dgroup_1%26applied_filter_name%3DOutras+caracter%C3%ADsticas%26applied_filter_order%3D22%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D2%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"242085","name":"\xc3\x89 gamer","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_IS*GAMER_242085_NoIndex_True#applied_filter_id%3DIS_GAMER%26applied_filter_name%3DOutras+caracter%C3%ADsticas%26applied_filter_order%3D21%26applied_value_id%3D242085%26applied_value_name%3D%C3%89+gamer%26applied_value_order%3D0%26applied_value_results%3D160687%26is_custom%3Dfalse","results":"(160.687)"}],"show_modal":false},{"id":"publication_details","name":"Detalhes do an\xc3\xbancio","type":"text","values":[{"id":"power_seller_yes","name":"Melhores vendedores","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BestSellers_YES_NoIndex_True#applied_filter_id%3Dpower_seller%26applied_filter_name%3DFiltro+MercadoL%C3%ADderes%26applied_filter_order%3D23%26applied_value_id%3Dyes%26applied_value_name%3DMelhores+vendedores%26applied_value_order%3D1%26applied_value_results%3D458578%26is_custom%3Dfalse","results":"(458.578)"}],"expanded_values":[{"id":"power_seller_yes","name":"Melhores vendedores","url":"https:\\u002F\\u002Finformatica.mercadolivre.com.br\\u002Fcomputador_BestSellers_YES_NoIndex_True#applied_filter_id%3Dpower_seller%26applied_filter_name%3DFiltro+MercadoL%C3%ADderes%26applied_filter_order%3D23%26applied_value_id%3Dyes%26applied_value_name%3DMelhores+vendedores%26applied_value_order%3D1%26applied_value_results%3D458578%26is_custom%3Dfalse","results":"(458.578)"}],"show_modal":false},{"id":"related_searches","name":"Outras pessoas pesquisaram","type":"text","values":[{"id":"related_search_0","name":"i3 9100f","url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fi3-9100f#D[R:computador,P:1,Q:5]"},{"id":"related_search_1","name":"king koil triathlon queen","url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fking-koil-triathlon-queen#D[R:computador,P:2,Q:5]"},{"id":"related_search_2","name":"celular samsung a11","url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fcelular-samsung-a11#D[R:computador,P:3,Q:5]"},{"id":"related_search_3","name":"computador wi fi","url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fcomputador-wi-fi#D[R:computador,P:4,Q:5]"},{"id":"related_search_4","name":"computadores novos","url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fcomputadores-novos#D[R:computador,P:5,Q:5]"}],"expanded_values":[{"id":"related_search_0","name":"i3 9100f","url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fi3-9100f#D[R:computador,P:1,Q:5]"},{"id":"related_search_1","name":"king koil triathlon queen","url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fking-koil-triathlon-queen#D[R:computador,P:2,Q:5]"},{"id":"related_search_2","name":"celular samsung a11","url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fcelular-samsung-a11#D[R:computador,P:3,Q:5]"},{"id":"related_search_3","name":"computador wi fi","url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fcomputador-wi-fi#D[R:computador,P:4,Q:5]"},{"id":"related_search_4","name":"computadores novos","url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fcomputadores-novos#D[R:computador,P:5,Q:5]"}],"show_modal":false}],"labels":{"filter":"Filtrar","filter_by":"Filtrar por","apply":"Aplicar","clean":"Limpar","to":"At\xc3\xa9","from":"A partir de","number_separator":".","range_separator":"a","range_title":"Define tu propio rango","minimum":"M\xc3\xadnimo","maximum":"M\xc3\xa1ximo","range_names":{"only_to":"At\xc3\xa9 $to","only_from":"A partir de $from"},"continue":"Continuar"}},{"type":"SIDEBAR_SKY_BANNER","slot_id":"Sky","title":"Publicidade","viewport_margin":500,"google_ad":{"unit":"\\u002F105773011\\u002FMLB1648\\u002FMLB430637\\u002FMLB1649","size":"fluid","ppid":"","enabled":true},"personal_data_ads_denied":false,"segmentation":{"Posiciones":"Sky","platform":"desktop"},"tracks":{"melidata_track":{"path":"\\u002Fsearch\\u002Fadvertising\\u002F","event_data":{"advertising_id":"sky"}}}},{"id":"SEARCH_SHOPS_ADS","type":"SEARCH_SHOPS_ADS","ads_to_show":4,"request":{"params":{"RECOMMENDED.cnt":25,"item_id":"MLB1983288877","platform":"desktop","q":"computador","category_id":"MLB1648","d2_id":"53fd1b14-787c-48cc-b716-ab5e9a1aa7b5","site_id":"MLB","limit":50,"RECOMMENDED.force_categories":"MLB1648","client":"search-pads-left-shops","min_recomms":4,"page":"SEARCHDESKTOP","position":"SEARCH-SHOPS-LEFT"}}}]},"vertical":"CORE","bottom_ads":{"state":"VISIBLE","ads_to_show":4,"subtitle":{"text":"Anuncie aqui","url":"https:\\u002F\\u002Fads.mercadolivre.com.br\\u002FproductAds"},"request":{"params":{"RECOMMENDED.cnt":4,"productId":"MLB16263913","item_id":"MLB1930876153","platform":"desktop","q":"computador","category_id":"MLB1648","d2_id":"53fd1b14-787c-48cc-b716-ab5e9a1aa7b5","site_id":"MLB","limit":50,"RECOMMENDED.force_categories":"MLB1648","client":"search-pads-btm","min_recomms":4,"page":"SEARCHDESKTOP","position":"BTM","machi_boost":true}}},"top_keywords":{"title":"Buscas relacionadas","keywords":[{"label":"intel core i5 8 geracao","url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fintel-core-i5-8-gera\xc3\xa7ao#topkeyword"},{"label":"montar pc pichau","url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fmontar-pc-pichau#topkeyword"},{"label":"hackintosh","url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fhackintosh#topkeyword"},{"label":"impressora portatil a4","url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fimpressora-portatil-a4#topkeyword"},{"label":"notebook com impressora","url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fnotebook-com-impressora#topkeyword"},{"label":"tablet windows","url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Ftablet-windows#topkeyword"},{"label":"computador barato","url":"https:\\u002F\\u002Flista.mercadolivre.com.br\\u002Fcomputador-barato#topkeyword"}]},"find_user_location":false,"valuePropositionsDetailsHidden":false,"userConsentCookie":true},"queryParams":{},"domain":"mercadolivre.com.br","csrfToken":"wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8","mapApiKey":"AIzaSyBKpigzeKC4SICrIn0Z-3xIR8iQl3yvYUI","hotjar":{"id":952199,"tags":["search_nordic"],"triggers":["search_nordic"]}};\n }},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/polyfill.018945a7.js"},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/search.desktop.fb84d67b.js"},{s:function(){\n var trackMclics = document.createElement(\'img\');\n trackMclics.src = \'https://print1.mercadoclics.com/mclics/v2/prints/external/MLB/count?d=bxNegmX9gRGVHJ3%2FYE09yGspOc5dPiXU8ggWnR2OE38Afdi6Ij7FylH6CHLxeIuj5aoo4hbfqkRKAJNObM7EgxixAfNJ59lH5hjkYJ3Uqhw%2FMYuz%2BVpmbst99wSifx9GmaY3Tfm%2Fv8WIrF%2BAbs6SMuE21NE2tqtyaKoLaBPtAxzPTwv69FBbVT1uTaRDhp2DH6Z4DoHpY6oJmauoFghJasjF7P1othaHFQPYMMD8ZtON27KYWvkpS2M8KivQHuy51EErS%2BquWYcDugczfyveQED2p%2FdZ08zlp8EMPj5MzrAdcTZ7N%2Fu54u4%2FBiV68d3GzGMaK5dCTDVHXfzNcEm1bMwfIrBFED%2Bar623YCNgkdTHu2f%2Bhgf6n9cWMuuHlVCnKWS%2FUl3F6pi7ginfeY6w%2FgyKwYAtK0quRPOoAi28OYzsoNpgwOaHJLfKtvyS%2BO8800RzKYd%2FWW90QX6lju8UKzaE6Davr1p9j2gjHsC%2Bb4oHGYu77Fw8kqGOzJRKsmER56%2F6ijVzCNyxsphmjHCsQPHWN8EdGVwnBAejWRwZ1qYxJHITyQ%3D%3D&rb=x\';\n }},{s:function(){\n\n\n var mktconfig = {\n \'selector\' : \'searchResults\',\n \'results\': \'MLB1983288877,MLB1930876153,MLB1937079157,MLB1607748387,MLB1983278713\',\n \'categories\': \'MLB1649,MLB1652,MLB1649,MLB1649,MLB1649\',\n \'siteId\' : \'MLB\',\n \'d2id\': \'\',\n \'query\': \'computador\',\n \'platform\' : \'STD\'\n }\n\n var Search = Search || {};\n\n\n ;(function (Search, win, doc) {\n\n function MarketingTags(options) {\n this.platform = options.platform || \'\';\n this.siteId = options.siteId || \'\';\n this.items = options.results || [];\n this.categories = options.categories || [];\n this.d2id = options.d2id;\n this.query = options.query;\n\n if (!this.items || !this.platform || !this.siteId || !this.categories) { throw new Error(\'MarketingTags: error in incoming params\')}\n\n this.init();\n\n return this;\n\n };\n\n MarketingTags.prototype.init = function () {\n var data = {}, categoriesIds = [];\n\n if (this.items) {\n data.items = this.items;\n categoriesIds = this.unique(this.categories);\n\n if(categoriesIds.length == 1){\n data.categoryId = categoriesIds\n }\n\n if (this.d2id) {\n data.d2id = this.d2id\n }\n\n if (this.query) {\n data.query = this.query;\n }\n\n this.start(data);\n this.createIframe();\n }\n };\n\n MarketingTags.prototype.createIframe = function () {\n var iframe = doc.createElement("iframe"),\n scriptTag = doc.getElementsByTagName(\'script\')[0],\n elem = iframe.frameElement || iframe;\n\n elem.style.width = 0;\n elem.style.height = 0;\n elem.style.border = 0;\n elem.style.position = \'absolute\';\n\n\n iframe.src = this.url;\n scriptTag.parentNode.insertBefore(iframe, scriptTag);\n };\n\n MarketingTags.prototype.start = function (data) {\n var millisecondsInMinute = 60000\n var minuteInPartition = 60 * 5\n var currentMilliseconds = new Date().getTime()\n var currentSeconds = parseInt(currentMilliseconds / millisecondsInMinute)\n var timeHash = parseInt(currentSeconds/minuteInPartition)*minuteInPartition\n\n this.url = "https://http2.mlstatic.com/storage/tag-manager/" + this.siteId + ".html?timehash="+ timeHash +"&platform=" + this.platform + "#" + JSON.stringify(data);\n\n };\n\n MarketingTags.prototype.unique = function(array){\n var tmp = {},\n out = [];\n for(var i = 0, n = array.length; i < n; ++i){\n if(!tmp[array[i]]) { tmp[array[i]] = true; out.push(array[i]); }\n }\n return out;\n }\n\n Search.MarketingTags = MarketingTags;\n\n })(Search, window, document);\n\n new Search.MarketingTags(mktconfig);\n }},{s:function(){\n (function(h,o,t,j,a,r){\n h.hj= h.hj || function(){(h.hj.q=h.hj.q||[]).push(arguments)};\n h._hjSettings={hjid:952199,hjdebug:false,hjsv:5};\n a=o.getElementsByTagName(\'head\')[0];\n r=o.createElement(\'script\');r.async=1;\n r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;\n a.appendChild(r);\n })(window,document,\'//static.hotjar.com/c/hotjar-\',\'.js?sv=\');\n hj(\'tagRecording\', ["search_nordic","user_type: normal"]);\n hj(\'trigger\', \'search_nordic\');\n }},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/framework.665793e8.js"},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/lib-428dfce9.4c4298ea.js"},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/lib-47e0d0a8.1fd3bffe.js"},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/8295.562b3103.js"},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/6188.331e9a36.js"},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/9098.c88634f8.js"},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/3436.7e0230fb.js"},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/8887.b518fd91.js"},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/chunk-header-exhibitor.a36d251b.js"},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/chunk-listing-disclaimer.0220d27a.js"}];\n if (doc.readyState === \'complete\') {\n loadScripts(scripts);\n } else {\n win.addEventListener(\'load\', function(){ loadScripts(scripts); });\n }\n})(window, document);</script></body></html>'
soup = BeautifulSoup(url.content,'html.parser')
print(soup)
<!DOCTYPE html>
<html lang="pt-BR">
<head><link href="https://www.google-analytics.com" rel="preconnect"/><link href="https://www.google.com" rel="preconnect"/><link href="https://data.mercadolibre.com" rel="preconnect"/><link href="https://http2.mlstatic.com" rel="preconnect"/><link href="https://stats.g.doubleclick.net" rel="preconnect"/><link href="https://analytics.mercadolivre.com.br" rel="preconnect"/><link href="https://analytics.mercadolivre.com" rel="preconnect"/><link href="https://www.google.com.br" rel="preconnect"/><script type="text/javascript">window.NREUM||(NREUM={});NREUM.info = {"agent":"","beacon":"bam.nr-data.net","errorBeacon":"bam.nr-data.net","licenseKey":"NRJS-689ffbd95eae88e39ac","applicationID":"1729522169","applicationTime":1179.260114,"transactionName":"YlZQYEVZC0QEV0BZV1scd0xHSgBEFl5HH39wZx0bHQ==","queueTime":0,"ttGuid":"a244d65dd4d8f1e5","agentToken":null}; (window.NREUM||(NREUM={})).init={privacy:{cookies_enabled:true},ajax:{deny_list:["bam.nr-data.net"]},distributed_tracing:{enabled:true}};(window.NREUM||(NREUM={})).loader_config={agentID:"1834861763",accountID:"989586",trustKey:"1709707",xpid:"XQ4OVF5VGwIHVlhXBQMGUF0=",licenseKey:"NRJS-689ffbd95eae88e39ac",applicationID:"1729522169"};window.NREUM||(NREUM={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var o=e[n]={exports:{}};t[n][0].call(o.exports,function(e){var o=t[n][1][e];return r(o||e)},o,o.exports)}return e[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({1:[function(t,e,n){function r(t){try{s.console&&console.log(t)}catch(e){}}var o,i=t("ee"),a=t(31),s={};try{o=localStorage.getItem("__nr_flags").split(","),console&&"function"==typeof console.log&&(s.console=!0,o.indexOf("dev")!==-1&&(s.dev=!0),o.indexOf("nr_dev")!==-1&&(s.nrDev=!0))}catch(c){}s.nrDev&&i.on("internal-error",function(t){r(t.stack)}),s.dev&&i.on("fn-err",function(t,e,n){r(n.stack)}),s.dev&&(r("NR AGENT IN DEVELOPMENT MODE"),r("flags: "+a(s,function(t,e){return t}).join(", ")))},{}],2:[function(t,e,n){function r(t,e,n,r,s){try{l?l-=1:o(s||new UncaughtException(t,e,n),!0)}catch(f){try{i("ierr",[f,c.now(),!0])}catch(d){}}return"function"==typeof u&&u.apply(this,a(arguments))}function UncaughtException(t,e,n){this.message=t||"Uncaught error with no additional information",this.sourceURL=e,this.line=n}function o(t,e){var n=e?null:c.now();i("err",[t,n])}var i=t("handle"),a=t(32),s=t("ee"),c=t("loader"),f=t("gos"),u=window.onerror,d=!1,p="nr@seenError";if(!c.disabled){var l=0;c.features.err=!0,t(1),window.onerror=r;try{throw new Error}catch(h){"stack"in h&&(t(14),t(13),"addEventListener"in window&&t(7),c.xhrWrappable&&t(15),d=!0)}s.on("fn-start",function(t,e,n){d&&(l+=1)}),s.on("fn-err",function(t,e,n){d&&!n[p]&&(f(n,p,function(){return!0}),this.thrown=!0,o(n))}),s.on("fn-end",function(){d&&!this.thrown&&l>0&&(l-=1)}),s.on("internal-error",function(t){i("ierr",[t,c.now(),!0])})}},{}],3:[function(t,e,n){var r=t("loader");r.disabled||(r.features.ins=!0)},{}],4:[function(t,e,n){function r(){U++,L=g.hash,this[u]=y.now()}function o(){U--,g.hash!==L&&i(0,!0);var t=y.now();this[h]=~~this[h]+t-this[u],this[d]=t}function i(t,e){E.emit("newURL",[""+g,e])}function a(t,e){t.on(e,function(){this[e]=y.now()})}var s="-start",c="-end",f="-body",u="fn"+s,d="fn"+c,p="cb"+s,l="cb"+c,h="jsTime",m="fetch",v="addEventListener",w=window,g=w.location,y=t("loader");if(w[v]&&y.xhrWrappable&&!y.disabled){var x=t(11),b=t(12),E=t(9),R=t(7),O=t(14),T=t(8),S=t(15),P=t(10),M=t("ee"),C=M.get("tracer"),N=t(23);t(17),y.features.spa=!0;var L,U=0;M.on(u,r),b.on(p,r),P.on(p,r),M.on(d,o),b.on(l,o),P.on(l,o),M.buffer([u,d,"xhr-resolved"]),R.buffer([u]),O.buffer(["setTimeout"+c,"clearTimeout"+s,u]),S.buffer([u,"new-xhr","send-xhr"+s]),T.buffer([m+s,m+"-done",m+f+s,m+f+c]),E.buffer(["newURL"]),x.buffer([u]),b.buffer(["propagate",p,l,"executor-err","resolve"+s]),C.buffer([u,"no-"+u]),P.buffer(["new-jsonp","cb-start","jsonp-error","jsonp-end"]),a(T,m+s),a(T,m+"-done"),a(P,"new-jsonp"),a(P,"jsonp-end"),a(P,"cb-start"),E.on("pushState-end",i),E.on("replaceState-end",i),w[v]("hashchange",i,N(!0)),w[v]("load",i,N(!0)),w[v]("popstate",function(){i(0,U>1)},N(!0))}},{}],5:[function(t,e,n){function r(){var t=new PerformanceObserver(function(t,e){var n=t.getEntries();s(v,[n])});try{t.observe({entryTypes:["resource"]})}catch(e){}}function o(t){if(s(v,[window.performance.getEntriesByType(w)]),window.performance["c"+p])try{window.performance[h](m,o,!1)}catch(t){}else try{window.performance[h]("webkit"+m,o,!1)}catch(t){}}function i(t){}if(window.performance&&window.performance.timing&&window.performance.getEntriesByType){var a=t("ee"),s=t("handle"),c=t(14),f=t(13),u=t(6),d=t(23),p="learResourceTimings",l="addEventListener",h="removeEventListener",m="resourcetimingbufferfull",v="bstResource",w="resource",g="-start",y="-end",x="fn"+g,b="fn"+y,E="bstTimer",R="pushState",O=t("loader");if(!O.disabled){O.features.stn=!0,t(9),"addEventListener"in window&&t(7);var T=NREUM.o.EV;a.on(x,function(t,e){var n=t[0];n instanceof T&&(this.bstStart=O.now())}),a.on(b,function(t,e){var n=t[0];n instanceof T&&s("bst",[n,e,this.bstStart,O.now()])}),c.on(x,function(t,e,n){this.bstStart=O.now(),this.bstType=n}),c.on(b,function(t,e){s(E,[e,this.bstStart,O.now(),this.bstType])}),f.on(x,function(){this.bstStart=O.now()}),f.on(b,function(t,e){s(E,[e,this.bstStart,O.now(),"requestAnimationFrame"])}),a.on(R+g,function(t){this.time=O.now(),this.startPath=location.pathname+location.hash}),a.on(R+y,function(t){s("bstHist",[location.pathname+location.hash,this.startPath,this.time])}),u()?(s(v,[window.performance.getEntriesByType("resource")]),r()):l in window.performance&&(window.performance["c"+p]?window.performance[l](m,o,d(!1)):window.performance[l]("webkit"+m,o,d(!1))),document[l]("scroll",i,d(!1)),document[l]("keypress",i,d(!1)),document[l]("click",i,d(!1))}}},{}],6:[function(t,e,n){e.exports=function(){return"PerformanceObserver"in window&&"function"==typeof window.PerformanceObserver}},{}],7:[function(t,e,n){function r(t){for(var e=t;e&&!e.hasOwnProperty(u);)e=Object.getPrototypeOf(e);e&&o(e)}function o(t){s.inPlace(t,[u,d],"-",i)}function i(t,e){return t[1]}var a=t("ee").get("events"),s=t("wrap-function")(a,!0),c=t("gos"),f=XMLHttpRequest,u="addEventListener",d="removeEventListener";e.exports=a,"getPrototypeOf"in Object?(r(document),r(window),r(f.prototype)):f.prototype.hasOwnProperty(u)&&(o(window),o(f.prototype)),a.on(u+"-start",function(t,e){var n=t[1];if(null!==n&&("function"==typeof n||"object"==typeof n)){var r=c(n,"nr@wrapped",function(){function t(){if("function"==typeof n.handleEvent)return n.handleEvent.apply(n,arguments)}var e={object:t,"function":n}[typeof n];return e?s(e,"fn-",null,e.name||"anonymous"):n});this.wrapped=t[1]=r}}),a.on(d+"-start",function(t){t[1]=this.wrapped||t[1]})},{}],8:[function(t,e,n){function r(t,e,n){var r=t[e];"function"==typeof r&&(t[e]=function(){var t=i(arguments),e={};o.emit(n+"before-start",[t],e);var a;e[m]&&e[m].dt&&(a=e[m].dt);var s=r.apply(this,t);return o.emit(n+"start",[t,a],s),s.then(function(t){return o.emit(n+"end",[null,t],s),t},function(t){throw o.emit(n+"end",[t],s),t})})}var o=t("ee").get("fetch"),i=t(32),a=t(31);e.exports=o;var s=window,c="fetch-",f=c+"body-",u=["arrayBuffer","blob","json","text","formData"],d=s.Request,p=s.Response,l=s.fetch,h="prototype",m="nr@context";d&&p&&l&&(a(u,function(t,e){r(d[h],e,f),r(p[h],e,f)}),r(s,"fetch",c),o.on(c+"end",function(t,e){var n=this;if(e){var r=e.headers.get("content-length");null!==r&&(n.rxSize=r),o.emit(c+"done",[null,e],n)}else o.emit(c+"done",[t],n)}))},{}],9:[function(t,e,n){var r=t("ee").get("history"),o=t("wrap-function")(r);e.exports=r;var i=window.history&&window.history.constructor&&window.history.constructor.prototype,a=window.history;i&&i.pushState&&i.replaceState&&(a=i),o.inPlace(a,["pushState","replaceState"],"-")},{}],10:[function(t,e,n){function r(t){function e(){f.emit("jsonp-end",[],l),t.removeEventListener("load",e,c(!1)),t.removeEventListener("error",n,c(!1))}function n(){f.emit("jsonp-error",[],l),f.emit("jsonp-end",[],l),t.removeEventListener("load",e,c(!1)),t.removeEventListener("error",n,c(!1))}var r=t&&"string"==typeof t.nodeName&&"script"===t.nodeName.toLowerCase();if(r){var o="function"==typeof t.addEventListener;if(o){var a=i(t.src);if(a){var d=s(a),p="function"==typeof d.parent[d.key];if(p){var l={};u.inPlace(d.parent,[d.key],"cb-",l),t.addEventListener("load",e,c(!1)),t.addEventListener("error",n,c(!1)),f.emit("new-jsonp",[t.src],l)}}}}}function o(){return"addEventListener"in window}function i(t){var e=t.match(d);return e?e[1]:null}function a(t,e){var n=t.match(l),r=n[1],o=n[3];return o?a(o,e[r]):e[r]}function s(t){var e=t.match(p);return e&&e.length>=3?{key:e[2],parent:a(e[1],window)}:{key:t,parent:window}}var c=t(23),f=t("ee").get("jsonp"),u=t("wrap-function")(f);if(e.exports=f,o()){var d=/[?&](?:callback|cb)=([^&#]+)/,p=/(.*)\.([^.]+)/,l=/^(\w+)(\.|$)(.*)$/,h=["appendChild","insertBefore","replaceChild"];Node&&Node.prototype&&Node.prototype.appendChild?u.inPlace(Node.prototype,h,"dom-"):(u.inPlace(HTMLElement.prototype,h,"dom-"),u.inPlace(HTMLHeadElement.prototype,h,"dom-"),u.inPlace(HTMLBodyElement.prototype,h,"dom-")),f.on("dom-start",function(t){r(t[0])})}},{}],11:[function(t,e,n){var r=t("ee").get("mutation"),o=t("wrap-function")(r),i=NREUM.o.MO;e.exports=r,i&&(window.MutationObserver=function(t){return this instanceof i?new i(o(t,"fn-")):i.apply(this,arguments)},MutationObserver.prototype=i.prototype)},{}],12:[function(t,e,n){function r(t){var e=i.context(),n=s(t,"executor-",e,null,!1),r=new f(n);return i.context(r).getCtx=function(){return e},r}var o=t("wrap-function"),i=t("ee").get("promise"),a=t("ee").getOrSetContext,s=o(i),c=t(31),f=NREUM.o.PR;e.exports=i,f&&(window.Promise=r,["all","race"].forEach(function(t){var e=f[t];f[t]=function(n){function r(t){return function(){i.emit("propagate",[null,!o],a,!1,!1),o=o||!t}}var o=!1;c(n,function(e,n){Promise.resolve(n).then(r("all"===t),r(!1))});var a=e.apply(f,arguments),s=f.resolve(a);return s}}),["resolve","reject"].forEach(function(t){var e=f[t];f[t]=function(t){var n=e.apply(f,arguments);return t!==n&&i.emit("propagate",[t,!0],n,!1,!1),n}}),f.prototype["catch"]=function(t){return this.then(null,t)},f.prototype=Object.create(f.prototype,{constructor:{value:r}}),c(Object.getOwnPropertyNames(f),function(t,e){try{r[e]=f[e]}catch(n){}}),o.wrapInPlace(f.prototype,"then",function(t){return function(){var e=this,n=o.argsToArray.apply(this,arguments),r=a(e);r.promise=e,n[0]=s(n[0],"cb-",r,null,!1),n[1]=s(n[1],"cb-",r,null,!1);var c=t.apply(this,n);return r.nextPromise=c,i.emit("propagate",[e,!0],c,!1,!1),c}}),i.on("executor-start",function(t){t[0]=s(t[0],"resolve-",this,null,!1),t[1]=s(t[1],"resolve-",this,null,!1)}),i.on("executor-err",function(t,e,n){t[1](n)}),i.on("cb-end",function(t,e,n){i.emit("propagate",[n,!0],this.nextPromise,!1,!1)}),i.on("propagate",function(t,e,n){this.getCtx&&!e||(this.getCtx=function(){if(t instanceof Promise)var e=i.context(t);return e&&e.getCtx?e.getCtx():this})}),r.toString=function(){return""+f})},{}],13:[function(t,e,n){var r=t("ee").get("raf"),o=t("wrap-function")(r),i="equestAnimationFrame";e.exports=r,o.inPlace(window,["r"+i,"mozR"+i,"webkitR"+i,"msR"+i],"raf-"),r.on("raf-start",function(t){t[0]=o(t[0],"fn-")})},{}],14:[function(t,e,n){function r(t,e,n){t[0]=a(t[0],"fn-",null,n)}function o(t,e,n){this.method=n,this.timerDuration=isNaN(t[1])?0:+t[1],t[0]=a(t[0],"fn-",this,n)}var i=t("ee").get("timer"),a=t("wrap-function")(i),s="setTimeout",c="setInterval",f="clearTimeout",u="-start",d="-";e.exports=i,a.inPlace(window,[s,"setImmediate"],s+d),a.inPlace(window,[c],c+d),a.inPlace(window,[f,"clearImmediate"],f+d),i.on(c+u,r),i.on(s+u,o)},{}],15:[function(t,e,n){function r(t,e){d.inPlace(e,["onreadystatechange"],"fn-",s)}function o(){var t=this,e=u.context(t);t.readyState>3&&!e.resolved&&(e.resolved=!0,u.emit("xhr-resolved",[],t)),d.inPlace(t,y,"fn-",s)}function i(t){x.push(t),m&&(E?E.then(a):w?w(a):(R=-R,O.data=R))}function a(){for(var t=0;t<x.length;t++)r([],x[t]);x.length&&(x=[])}function s(t,e){return e}function c(t,e){for(var n in t)e[n]=t[n];return e}t(7);var f=t("ee"),u=f.get("xhr"),d=t("wrap-function")(u),p=t(23),l=NREUM.o,h=l.XHR,m=l.MO,v=l.PR,w=l.SI,g="readystatechange",y=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"],x=[];e.exports=u;var b=window.XMLHttpRequest=function(t){var e=new h(t);try{u.emit("new-xhr",[e],e),e.addEventListener(g,o,p(!1))}catch(n){try{u.emit("internal-error",[n])}catch(r){}}return e};if(c(h,b),b.prototype=h.prototype,d.inPlace(b.prototype,["open","send"],"-xhr-",s),u.on("send-xhr-start",function(t,e){r(t,e),i(e)}),u.on("open-xhr-start",r),m){var E=v&&v.resolve();if(!w&&!v){var R=1,O=document.createTextNode(R);new m(a).observe(O,{characterData:!0})}}else f.on("fn-end",function(t){t[0]&&t[0].type===g||a()})},{}],16:[function(t,e,n){function r(t){if(!s(t))return null;var e=window.NREUM;if(!e.loader_config)return null;var n=(e.loader_config.accountID||"").toString()||null,r=(e.loader_config.agentID||"").toString()||null,f=(e.loader_config.trustKey||"").toString()||null;if(!n||!r)return null;var h=l.generateSpanId(),m=l.generateTraceId(),v=Date.now(),w={spanId:h,traceId:m,timestamp:v};return(t.sameOrigin||c(t)&&p())&&(w.traceContextParentHeader=o(h,m),w.traceContextStateHeader=i(h,v,n,r,f)),(t.sameOrigin&&!u()||!t.sameOrigin&&c(t)&&d())&&(w.newrelicHeader=a(h,m,v,n,r,f)),w}function o(t,e){return"00-"+e+"-"+t+"-01"}function i(t,e,n,r,o){var i=0,a="",s=1,c="",f="";return o+"@nr="+i+"-"+s+"-"+n+"-"+r+"-"+t+"-"+a+"-"+c+"-"+f+"-"+e}function a(t,e,n,r,o,i){var a="btoa"in window&&"function"==typeof window.btoa;if(!a)return null;var s={v:[0,1],d:{ty:"Browser",ac:r,ap:o,id:t,tr:e,ti:n}};return i&&r!==i&&(s.d.tk=i),btoa(JSON.stringify(s))}function s(t){return f()&&c(t)}function c(t){var e=!1,n={};if("init"in NREUM&&"distributed_tracing"in NREUM.init&&(n=NREUM.init.distributed_tracing),t.sameOrigin)e=!0;else if(n.allowed_origins instanceof Array)for(var r=0;r<n.allowed_origins.length;r++){var o=h(n.allowed_origins[r]);if(t.hostname===o.hostname&&t.protocol===o.protocol&&t.port===o.port){e=!0;break}}return e}function f(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&!!NREUM.init.distributed_tracing.enabled}function u(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&!!NREUM.init.distributed_tracing.exclude_newrelic_header}function d(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&NREUM.init.distributed_tracing.cors_use_newrelic_header!==!1}function p(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&!!NREUM.init.distributed_tracing.cors_use_tracecontext_headers}var l=t(28),h=t(18);e.exports={generateTracePayload:r,shouldGenerateTrace:s}},{}],17:[function(t,e,n){function r(t){var e=this.params,n=this.metrics;if(!this.ended){this.ended=!0;for(var r=0;r<p;r++)t.removeEventListener(d[r],this.listener,!1);return e.protocol&&"data"===e.protocol?void g("Ajax/DataUrl/Excluded"):void(e.aborted||(n.duration=a.now()-this.startTime,this.loadCaptureCalled||4!==t.readyState?null==e.status&&(e.status=0):i(this,t),n.cbTime=this.cbTime,s("xhr",[e,n,this.startTime,this.endTime,"xhr"],this)))}}function o(t,e){var n=c(e),r=t.params;r.hostname=n.hostname,r.port=n.port,r.protocol=n.protocol,r.host=n.hostname+":"+n.port,r.pathname=n.pathname,t.parsedOrigin=n,t.sameOrigin=n.sameOrigin}function i(t,e){t.params.status=e.status;var n=v(e,t.lastSize);if(n&&(t.metrics.rxSize=n),t.sameOrigin){var r=e.getResponseHeader("X-NewRelic-App-Data");r&&(t.params.cat=r.split(", ").pop())}t.loadCaptureCalled=!0}var a=t("loader");if(a.xhrWrappable&&!a.disabled){var s=t("handle"),c=t(18),f=t(16).generateTracePayload,u=t("ee"),d=["load","error","abort","timeout"],p=d.length,l=t("id"),h=t(24),m=t(22),v=t(19),w=t(23),g=t(25).recordSupportability,y=NREUM.o.REQ,x=window.XMLHttpRequest;a.features.xhr=!0,t(15),t(8),u.on("new-xhr",function(t){var e=this;e.totalCbs=0,e.called=0,e.cbTime=0,e.end=r,e.ended=!1,e.xhrGuids={},e.lastSize=null,e.loadCaptureCalled=!1,e.params=this.params||{},e.metrics=this.metrics||{},t.addEventListener("load",function(n){i(e,t)},w(!1)),h&&(h>34||h<10)||t.addEventListener("progress",function(t){e.lastSize=t.loaded},w(!1))}),u.on("open-xhr-start",function(t){this.params={method:t[0]},o(this,t[1]),this.metrics={}}),u.on("open-xhr-end",function(t,e){"loader_config"in NREUM&&"xpid"in NREUM.loader_config&&this.sameOrigin&&e.setRequestHeader("X-NewRelic-ID",NREUM.loader_config.xpid);var n=f(this.parsedOrigin);if(n){var r=!1;n.newrelicHeader&&(e.setRequestHeader("newrelic",n.newrelicHeader),r=!0),n.traceContextParentHeader&&(e.setRequestHeader("traceparent",n.traceContextParentHeader),n.traceContextStateHeader&&e.setRequestHeader("tracestate",n.traceContextStateHeader),r=!0),r&&(this.dt=n)}}),u.on("send-xhr-start",function(t,e){var n=this.metrics,r=t[0],o=this;if(n&&r){var i=m(r);i&&(n.txSize=i)}this.startTime=a.now(),this.listener=function(t){try{"abort"!==t.type||o.loadCaptureCalled||(o.params.aborted=!0),("load"!==t.type||o.called===o.totalCbs&&(o.onloadCalled||"function"!=typeof e.onload))&&o.end(e)}catch(n){try{u.emit("internal-error",[n])}catch(r){}}};for(var s=0;s<p;s++)e.addEventListener(d[s],this.listener,w(!1))}),u.on("xhr-cb-time",function(t,e,n){this.cbTime+=t,e?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof n.onload||this.end(n)}),u.on("xhr-load-added",function(t,e){var n=""+l(t)+!!e;this.xhrGuids&&!this.xhrGuids[n]&&(this.xhrGuids[n]=!0,this.totalCbs+=1)}),u.on("xhr-load-removed",function(t,e){var n=""+l(t)+!!e;this.xhrGuids&&this.xhrGuids[n]&&(delete this.xhrGuids[n],this.totalCbs-=1)}),u.on("xhr-resolved",function(){this.endTime=a.now()}),u.on("addEventListener-end",function(t,e){e instanceof x&&"load"===t[0]&&u.emit("xhr-load-added",[t[1],t[2]],e)}),u.on("removeEventListener-end",function(t,e){e instanceof x&&"load"===t[0]&&u.emit("xhr-load-removed",[t[1],t[2]],e)}),u.on("fn-start",function(t,e,n){e instanceof x&&("onload"===n&&(this.onload=!0),("load"===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart=a.now()))}),u.on("fn-end",function(t,e){this.xhrCbStart&&u.emit("xhr-cb-time",[a.now()-this.xhrCbStart,this.onload,e],e)}),u.on("fetch-before-start",function(t){function e(t,e){var n=!1;return e.newrelicHeader&&(t.set("newrelic",e.newrelicHeader),n=!0),e.traceContextParentHeader&&(t.set("traceparent",e.traceContextParentHeader),e.traceContextStateHeader&&t.set("tracestate",e.traceContextStateHeader),n=!0),n}var n,r=t[1]||{};"string"==typeof t[0]?n=t[0]:t[0]&&t[0].url?n=t[0].url:window.URL&&t[0]&&t[0]instanceof URL&&(n=t[0].href),n&&(this.parsedOrigin=c(n),this.sameOrigin=this.parsedOrigin.sameOrigin);var o=f(this.parsedOrigin);if(o&&(o.newrelicHeader||o.traceContextParentHeader))if("string"==typeof t[0]||window.URL&&t[0]&&t[0]instanceof URL){var i={};for(var a in r)i[a]=r[a];i.headers=new Headers(r.headers||{}),e(i.headers,o)&&(this.dt=o),t.length>1?t[1]=i:t.push(i)}else t[0]&&t[0].headers&&e(t[0].headers,o)&&(this.dt=o)}),u.on("fetch-start",function(t,e){this.params={},this.metrics={},this.startTime=a.now(),this.dt=e,t.length>=1&&(this.target=t[0]),t.length>=2&&(this.opts=t[1]);var n,r=this.opts||{},i=this.target;if("string"==typeof i?n=i:"object"==typeof i&&i instanceof y?n=i.url:window.URL&&"object"==typeof i&&i instanceof URL&&(n=i.href),o(this,n),"data"!==this.params.protocol){var s=(""+(i&&i instanceof y&&i.method||r.method||"GET")).toUpperCase();this.params.method=s,this.txSize=m(r.body)||0}}),u.on("fetch-done",function(t,e){if(this.endTime=a.now(),this.params||(this.params={}),"data"===this.params.protocol)return void g("Ajax/DataUrl/Excluded");this.params.status=e?e.status:0;var n;"string"==typeof this.rxSize&&this.rxSize.length>0&&(n=+this.rxSize);var r={txSize:this.txSize,rxSize:n,duration:a.now()-this.startTime};s("xhr",[this.params,r,this.startTime,this.endTime,"fetch"],this)})}},{}],18:[function(t,e,n){var r={};e.exports=function(t){if(t in r)return r[t];if(0===(t||"").indexOf("data:"))return{protocol:"data"};var e=document.createElement("a"),n=window.location,o={};e.href=t,o.port=e.port;var i=e.href.split("://");!o.port&&i[1]&&(o.port=i[1].split("/")[0].split("@").pop().split(":")[1]),o.port&&"0"!==o.port||(o.port="https"===i[0]?"443":"80"),o.hostname=e.hostname||n.hostname,o.pathname=e.pathname,o.protocol=i[0],"/"!==o.pathname.charAt(0)&&(o.pathname="/"+o.pathname);var a=!e.protocol||":"===e.protocol||e.protocol===n.protocol,s=e.hostname===document.domain&&e.port===n.port;return o.sameOrigin=a&&(!e.hostname||s),"/"===o.pathname&&(r[t]=o),o}},{}],19:[function(t,e,n){function r(t,e){var n=t.responseType;return"json"===n&&null!==e?e:"arraybuffer"===n||"blob"===n||"json"===n?o(t.response):"text"===n||""===n||void 0===n?o(t.responseText):void 0}var o=t(22);e.exports=r},{}],20:[function(t,e,n){function r(){}function o(t,e,n,r){return function(){return u.recordSupportability("API/"+e+"/called"),i(t+e,[f.now()].concat(s(arguments)),n?null:this,r),n?void 0:this}}var i=t("handle"),a=t(31),s=t(32),c=t("ee").get("tracer"),f=t("loader"),u=t(25),d=NREUM;"undefined"==typeof window.newrelic&&(newrelic=d);var p=["setPageViewName","setCustomAttribute","setErrorHandler","finished","addToTrace","inlineHit","addRelease"],l="api-",h=l+"ixn-";a(p,function(t,e){d[e]=o(l,e,!0,"api")}),d.addPageAction=o(l,"addPageAction",!0),d.setCurrentRouteName=o(l,"routeName",!0),e.exports=newrelic,d.interaction=function(){return(new r).get()};var m=r.prototype={createTracer:function(t,e){var n={},r=this,o="function"==typeof e;return i(h+"tracer",[f.now(),t,n],r),function(){if(c.emit((o?"":"no-")+"fn-start",[f.now(),r,o],n),o)try{return e.apply(this,arguments)}catch(t){throw c.emit("fn-err",[arguments,this,t],n),t}finally{c.emit("fn-end",[f.now()],n)}}}};a("actionText,setName,setAttribute,save,ignore,onEnd,getContext,end,get".split(","),function(t,e){m[e]=o(h,e)}),newrelic.noticeError=function(t,e){"string"==typeof t&&(t=new Error(t)),u.recordSupportability("API/noticeError/called"),i("err",[t,f.now(),!1,e])}},{}],21:[function(t,e,n){function r(t){if(NREUM.init){for(var e=NREUM.init,n=t.split("."),r=0;r<n.length-1;r++)if(e=e[n[r]],"object"!=typeof e)return;return e=e[n[n.length-1]]}}e.exports={getConfiguration:r}},{}],22:[function(t,e,n){e.exports=function(t){if("string"==typeof t&&t.length)return t.length;if("object"==typeof t){if("undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if("undefined"!=typeof Blob&&t instanceof Blob&&t.size)return t.size;if(!("undefined"!=typeof FormData&&t instanceof FormData))try{return JSON.stringify(t).length}catch(e){return}}}},{}],23:[function(t,e,n){var r=!1;try{var o=Object.defineProperty({},"passive",{get:function(){r=!0}});window.addEventListener("testPassive",null,o),window.removeEventListener("testPassive",null,o)}catch(i){}e.exports=function(t){return r?{passive:!0,capture:!!t}:!!t}},{}],24:[function(t,e,n){var r=0,o=navigator.userAgent.match(/Firefox[\/\s](\d+\.\d+)/);o&&(r=+o[1]),e.exports=r},{}],25:[function(t,e,n){function r(t,e){var n=[a,t,{name:t},e];return i("storeMetric",n,null,"api"),n}function o(t,e){var n=[s,t,{name:t},e];return i("storeEventMetrics",n,null,"api"),n}var i=t("handle"),a="sm",s="cm";e.exports={constants:{SUPPORTABILITY_METRIC:a,CUSTOM_METRIC:s},recordSupportability:r,recordCustom:o}},{}],26:[function(t,e,n){function r(){return s.exists&&performance.now?Math.round(performance.now()):(i=Math.max((new Date).getTime(),i))-a}function o(){return i}var i=(new Date).getTime(),a=i,s=t(33);e.exports=r,e.exports.offset=a,e.exports.getLastTimestamp=o},{}],27:[function(t,e,n){function r(t,e){var n=t.getEntries();n.forEach(function(t){"first-paint"===t.name?l("timing",["fp",Math.floor(t.startTime)]):"first-contentful-paint"===t.name&&l("timing",["fcp",Math.floor(t.startTime)])})}function o(t,e){var n=t.getEntries();if(n.length>0){var r=n[n.length-1];if(f&&f<r.startTime)return;var o=[r],i=a({});i&&o.push(i),l("lcp",o)}}function i(t){t.getEntries().forEach(function(t){t.hadRecentInput||l("cls",[t])})}function a(t){var e=navigator.connection||navigator.mozConnection||navigator.webkitConnection;if(e)return e.type&&(t["net-type"]=e.type),e.effectiveType&&(t["net-etype"]=e.effectiveType),e.rtt&&(t["net-rtt"]=e.rtt),e.downlink&&(t["net-dlink"]=e.downlink),t}function s(t){if(t instanceof w&&!y){var e=Math.round(t.timeStamp),n={type:t.type};a(n),e<=h.now()?n.fid=h.now()-e:e>h.offset&&e<=Date.now()?(e-=h.offset,n.fid=h.now()-e):e=h.now(),y=!0,l("timing",["fi",e,n])}}function c(t){"hidden"===t&&(f=h.now(),l("pageHide",[f]))}if(!("init"in NREUM&&"page_view_timing"in NREUM.init&&"enabled"in NREUM.init.page_view_timing&&NREUM.init.page_view_timing.enabled===!1)){var f,u,d,p,l=t("handle"),h=t("loader"),m=t(30),v=t(23),w=NREUM.o.EV;if("PerformanceObserver"in window&&"function"==typeof window.PerformanceObserver){u=new PerformanceObserver(r);try{u.observe({entryTypes:["paint"]})}catch(g){}d=new PerformanceObserver(o);try{d.observe({entryTypes:["largest-contentful-paint"]})}catch(g){}p=new PerformanceObserver(i);try{p.observe({type:"layout-shift",buffered:!0})}catch(g){}}if("addEventListener"in document){var y=!1,x=["click","keydown","mousedown","pointerdown","touchstart"];x.forEach(function(t){document.addEventListener(t,s,v(!1))})}m(c)}},{}],28:[function(t,e,n){function r(){function t(){return e?15&e[n++]:16*Math.random()|0}var e=null,n=0,r=window.crypto||window.msCrypto;r&&r.getRandomValues&&(e=r.getRandomValues(new Uint8Array(31)));for(var o,i="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx",a="",s=0;s<i.length;s++)o=i[s],"x"===o?a+=t().toString(16):"y"===o?(o=3&t()|8,a+=o.toString(16)):a+=o;return a}function o(){return a(16)}function i(){return a(32)}function a(t){function e(){return n?15&n[r++]:16*Math.random()|0}var n=null,r=0,o=window.crypto||window.msCrypto;o&&o.getRandomValues&&Uint8Array&&(n=o.getRandomValues(new Uint8Array(t)));for(var i=[],a=0;a<t;a++)i.push(e().toString(16));return i.join("")}e.exports={generateUuid:r,generateSpanId:o,generateTraceId:i}},{}],29:[function(t,e,n){function r(t,e){if(!o)return!1;if(t!==o)return!1;if(!e)return!0;if(!i)return!1;for(var n=i.split("."),r=e.split("."),a=0;a<r.length;a++)if(r[a]!==n[a])return!1;return!0}var o=null,i=null,a=/Version\/(\S+)\s+Safari/;if(navigator.userAgent){var s=navigator.userAgent,c=s.match(a);c&&s.indexOf("Chrome")===-1&&s.indexOf("Chromium")===-1&&(o="Safari",i=c[1])}e.exports={agent:o,version:i,match:r}},{}],30:[function(t,e,n){function r(t){function e(){t(s&&document[s]?document[s]:document[i]?"hidden":"visible")}"addEventListener"in document&&a&&document.addEventListener(a,e,o(!1))}var o=t(23);e.exports=r;var i,a,s;"undefined"!=typeof document.hidden?(i="hidden",a="visibilitychange",s="visibilityState"):"undefined"!=typeof document.msHidden?(i="msHidden",a="msvisibilitychange"):"undefined"!=typeof document.webkitHidden&&(i="webkitHidden",a="webkitvisibilitychange",s="webkitVisibilityState")},{}],31:[function(t,e,n){function r(t,e){var n=[],r="",i=0;for(r in t)o.call(t,r)&&(n[i]=e(r,t[r]),i+=1);return n}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],32:[function(t,e,n){function r(t,e,n){e||(e=0),"undefined"==typeof n&&(n=t?t.length:0);for(var r=-1,o=n-e||0,i=Array(o<0?0:o);++r<o;)i[r]=t[e+r];return i}e.exports=r},{}],33:[function(t,e,n){e.exports={exists:"undefined"!=typeof window.performance&&window.performance.timing&&"undefined"!=typeof window.performance.timing.navigationStart}},{}],ee:[function(t,e,n){function r(){}function o(t){function e(t){return t&&t instanceof r?t:t?f(t,c,a):a()}function n(n,r,o,i,a){if(a!==!1&&(a=!0),!l.aborted||i){t&&a&&t(n,r,o);for(var s=e(o),c=m(n),f=c.length,u=0;u<f;u++)c[u].apply(s,r);var p=d[y[n]];return p&&p.push([x,n,r,s]),s}}function i(t,e){g[t]=m(t).concat(e)}function h(t,e){var n=g[t];if(n)for(var r=0;r<n.length;r++)n[r]===e&&n.splice(r,1)}function m(t){return g[t]||[]}function v(t){return p[t]=p[t]||o(n)}function w(t,e){l.aborted||u(t,function(t,n){e=e||"feature",y[n]=e,e in d||(d[e]=[])})}var g={},y={},x={on:i,addEventListener:i,removeEventListener:h,emit:n,get:v,listeners:m,context:e,buffer:w,abort:s,aborted:!1};return x}function i(t){return f(t,c,a)}function a(){return new r}function s(){(d.api||d.feature)&&(l.aborted=!0,d=l.backlog={})}var c="nr@context",f=t("gos"),u=t(31),d={},p={},l=e.exports=o();e.exports.getOrSetContext=i,l.backlog=d},{}],gos:[function(t,e,n){function r(t,e,n){if(o.call(t,e))return t[e];var r=n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,e,{value:r,writable:!0,enumerable:!1}),r}catch(i){}return t[e]=r,r}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],handle:[function(t,e,n){function r(t,e,n,r){o.buffer([t],r),o.emit(t,e,n)}var o=t("ee").get("handle");e.exports=r,r.ee=o},{}],id:[function(t,e,n){function r(t){var e=typeof t;return!t||"object"!==e&&"function"!==e?-1:t===window?0:a(t,i,function(){return o++})}var o=1,i="nr@id",a=t("gos");e.exports=r},{}],loader:[function(t,e,n){function r(){if(!T++){var t=O.info=NREUM.info,e=m.getElementsByTagName("script")[0];if(setTimeout(f.abort,3e4),!(t&&t.licenseKey&&t.applicationID&&e))return f.abort();c(E,function(e,n){t[e]||(t[e]=n)});var n=a();s("mark",["onload",n+O.offset],null,"api"),s("timing",["load",n]);var r=m.createElement("script");0===t.agent.indexOf("http://")||0===t.agent.indexOf("https://")?r.src=t.agent:r.src=l+"://"+t.agent,e.parentNode.insertBefore(r,e)}}function o(){"complete"===m.readyState&&i()}function i(){s("mark",["domContent",a()+O.offset],null,"api")}var a=t(26),s=t("handle"),c=t(31),f=t("ee"),u=t(29),d=t(21),p=t(23),l=d.getConfiguration("ssl")===!1?"http":"https",h=window,m=h.document,v="addEventListener",w="attachEvent",g=h.XMLHttpRequest,y=g&&g.prototype,x=!1;NREUM.o={ST:setTimeout,SI:h.setImmediate,CT:clearTimeout,XHR:g,REQ:h.Request,EV:h.Event,PR:h.Promise,MO:h.MutationObserver};var b=""+location,E={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net",agent:"js-agent.newrelic.com/nr-spa-1216.min.js"},R=g&&y&&y[v]&&!/CriOS/.test(navigator.userAgent),O=e.exports={offset:a.getLastTimestamp(),now:a,origin:b,features:{},xhrWrappable:R,userAgent:u,disabled:x};if(!x){t(20),t(27),m[v]?(m[v]("DOMContentLoaded",i,p(!1)),h[v]("load",r,p(!1))):(m[w]("onreadystatechange",o),h[w]("onload",r)),s("mark",["firstbyte",a.getLastTimestamp()],null,"api");var T=0}},{}],"wrap-function":[function(t,e,n){function r(t,e){function n(e,n,r,c,f){function nrWrapper(){var i,a,u,p;try{a=this,i=d(arguments),u="function"==typeof r?r(i,a):r||{}}catch(l){o([l,"",[i,a,c],u],t)}s(n+"start",[i,a,c],u,f);try{return p=e.apply(a,i)}catch(h){throw s(n+"err",[i,a,h],u,f),h}finally{s(n+"end",[i,a,p],u,f)}}return a(e)?e:(n||(n=""),nrWrapper[p]=e,i(e,nrWrapper,t),nrWrapper)}function r(t,e,r,o,i){r||(r="");var s,c,f,u="-"===r.charAt(0);for(f=0;f<e.length;f++)c=e[f],s=t[c],a(s)||(t[c]=n(s,u?c+r:r,o,c,i))}function s(n,r,i,a){if(!h||e){var s=h;h=!0;try{t.emit(n,r,i,e,a)}catch(c){o([c,n,r,i],t)}h=s}}return t||(t=u),n.inPlace=r,n.flag=p,n}function o(t,e){e||(e=u);try{e.emit("internal-error",t)}catch(n){}}function i(t,e,n){if(Object.defineProperty&&Object.keys)try{var r=Object.keys(t);return r.forEach(function(n){Object.defineProperty(e,n,{get:function(){return t[n]},set:function(e){return t[n]=e,e}})}),e}catch(i){o([i],n)}for(var a in t)l.call(t,a)&&(e[a]=t[a]);return e}function a(t){return!(t&&t instanceof Function&&t.apply&&!t[p])}function s(t,e){var n=e(t);return n[p]=t,i(t,n,u),n}function c(t,e,n){var r=t[e];t[e]=s(r,n)}function f(){for(var t=arguments.length,e=new Array(t),n=0;n<t;++n)e[n]=arguments[n];return e}var u=t("ee"),d=t(32),p="nr@original",l=Object.prototype.hasOwnProperty,h=!1;e.exports=r,e.exports.wrapFunction=s,e.exports.wrapInPlace=c,e.exports.argsToArray=f},{}]},{},["loader",2,17,5,3,4]);</script><script id="__LOADABLE_REQUIRED_CHUNKS__" type="application/json">[1793,9234]</script><script id="__LOADABLE_REQUIRED_CHUNKS___ext" type="application/json">{"namedChunks":["chunk-header-exhibitor","chunk-listing-disclaimer"]}</script><noscript><meta content="0;URL=//www.mercadolivre.com.br/gz/webdevice/config?go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&noscript=true" http-equiv="refresh"/></noscript>
<meta charset="utf-8"/>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<meta content="width=device-width, initial-scale=1.0, maximum-scale=5.0" name="viewport"/>
<meta content="True" name="HandheldFriendly"/>
<meta content="on" http-equiv="cleartype"/>
<meta content="samesite=true" name="browser-support"/>
<meta content="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8" name="csrf-token"/>
<link as="font" crossorigin="anonymous" data-head-react="true" href="https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-light.woff2" rel="preload" type="font/woff2"/><link as="font" crossorigin="anonymous" data-head-react="true" href="https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-regular.woff2" rel="preload" type="font/woff2"/><link as="font" crossorigin="anonymous" data-head-react="true" href="https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-semibold.woff2" rel="preload" type="font/woff2"/><style data-head-react="true">@font-face{font-family:'Proxima Nova';font-weight:300;font-display:swap;font-style:normal;src:url(https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-light.woff2) format("woff2"),url(https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-light.woff) format("woff"),url(https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-light.ttf) format("truetype")}@font-face{font-family:'Proxima Nova';font-weight:400;font-display:swap;font-style:normal;src:url(https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-regular.woff2) format("woff2"),url(https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-regular.woff) format("woff"),url(https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-regular.ttf) format("truetype")}@font-face{font-family:'Proxima Nova';font-weight:600;font-display:swap;font-style:normal;src:url(https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-semibold.woff2) format("woff2"),url(https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-semibold.woff) format("woff"),url(https://http2.mlstatic.com/ui/webfonts/v3.0.0/proxima-nova/proximanova-semibold.ttf) format("truetype")}</style><link data-head-react="true" href="https://http2.mlstatic.com/frontend-assets/ui-navigation/5.19.1/mercadolibre/favicon.svg" rel="icon"/><link data-head-react="true" href="https://http2.mlstatic.com/frontend-assets/ui-navigation/5.19.1/mercadolibre/180x180.png" rel="apple-touch-icon"/><script type="application/ld+json">{"@context":"https:\u002F\u002Fschema.org","@graph":[{"@type":"SearchResultsPage","id":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fcomputador","name":"Computador","about":"Frete grátis no dia ✓ Compre Computador parcelado sem juros! Saiba mais sobre nossas incríveis ofertas e promoções em milhões de produtos."},{"@type":"ItemList","id":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fcomputador\u002F#itemList","numberOfItems":1,"itemListElement":[{"@type":"ListItem","position":1,"item":{"@type":"Product","name":"Notebook Compaq Presario CQ-25 gray 14.1\", Intel Pentium N3700 4GB de RAM 120GB SSD, Intel HD Graphics 1366x768px Windows 10 Home","url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fcomputador","aggregateRating":{"@type":"AggregateRating","ratingCount":61,"bestRating":5,"ratingValue":4,"worstRating":1},"offers":{"@type":"AggregateOffer","price":1979,"lowPrice":1979,"priceCurrency":"BRL","offerCount":1,"availability":"https:\u002F\u002Fschema.org\u002FInStock","itemCondition":"https:\u002F\u002Fschema.org\u002FNewCondition"},"brand":{"@type":"Brand","name":"Compaq"}}}]}]}</script><link as="image" data-head-react="true" href="https://http2.mlstatic.com/D_NQ_NP_610237-MLA50807376051_072022-OO.jpg" rel="preload"/><link data-head-react="true" href="https://securepubads.g.doubleclick.net" rel="preconnect"/><link data-head-react="true" href="https://www.googletagservices.com" rel="preconnect"/><title>Computador | MercadoLivre 📦</title><meta content="Frete grátis no dia ✓ Compre Computador parcelado sem juros! Saiba mais sobre nossas incríveis ofertas e promoções em milhões de produtos." data-head-react="true" name="description"/><link data-head-react="true" href="https://lista.mercadolivre.com.br/computador" rel="canonical"/><link data-head-react="true" href="android-app://com.mercadolibre/meli/search?go=https://lista.mercadolivre.com.br/computador" rel="alternate"/><link data-head-react="true" href="ios-app://463624852/meli/search?go=https://lista.mercadolivre.com.br/computador" rel="alternate"/><meta content="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8" data-head-react="true" name="csrf-token"/><style>.cookie-consent-banner-opt-out{position:fixed;bottom:0;left:0;right:0;z-index:2147483647;background-color:rgba(0,0,0,.9);color:#fff;display:-webkit-flex;display:flex;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;align-items:center;-webkit-font-smoothing:antialiased;font-family:Proxima Nova,-apple-system,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;border-top-right-radius:6px;border-top-left-radius:6px}.cookie-consent-banner-opt-out__header{font-weight:600;color:#fff}.cookie-consent-banner-opt-out__message{margin:0 0 24px;font-size:16px;font-weight:400;color:#fff}.cookie-consent-banner-opt-out__more-info{color:#fff!important;text-decoration:underline!important;border-radius:6px}.cookie-consent-banner-opt-out__actions{display:-webkit-flex;display:flex}.cookie-consent-banner-opt-out__form{display:inline-block}.cookie-consent-banner-opt-out__action{color:#fff!important;border-radius:6px;background-color:rgba(65,137,230,.15);border:none;text-decoration:none;font-weight:600;display:inline-block;line-height:1em;white-space:nowrap;text-align:center;cursor:pointer;font-family:Proxima Nova,-apple-system,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;-moz-box-sizing:border-box;box-sizing:border-box}.cookie-consent-banner-opt-out__action:focus{color:#fff;outline:0;box-shadow:0 0 0 .1875em #fff;-webkit-transition:box-shadow .25s ease-in;transition:box-shadow .25s ease-in}.cookie-consent-banner-opt-out__action:hover{color:#fff}.cookie-consent-banner-opt-out__action--key-save{-webkit-transition:box-shadow .25s ease-out,background-color .2s ease-out;transition:box-shadow .25s ease-out,background-color .2s ease-out}.cookie-consent-banner-opt-out__more-info:focus{color:#fff;outline:0;box-shadow:0 0 0 2px #fff;-webkit-transition:box-shadow .25s ease-in;transition:box-shadow .25s ease-in}.cookie-consent-banner-opt-out__modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:2147483647;display:-webkit-flex;display:flex;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;align-items:center;overflow:auto}.cookie-consent-banner-opt-out__modal[aria-hidden=true]{display:none}.cookie-consent-banner-opt-out__modal-closeButton{position:absolute;top:-32px;right:-2px;height:1.25em;width:1.25em;cursor:pointer;background-color:transparent;border:none;padding:0}.cookie-consent-banner-opt-out__modal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.8);color:rgba(0,0,0,.8)}.cookie-consent-banner-opt-out__modal-wrapper{position:relative;padding:0;width:100%;max-width:800px;height:584px;background-color:#fff;border-radius:6px;display:grid;grid-template-rows:1fr 102px}.cookie-consent-banner-opt-out__modal-content{padding:24px 32px 0;border-radius:6px 6px 0 0}.cookie-consent-banner-opt-out__modal-content iframe{width:100%;height:100%;border:0;border-radius:6px 6px 0 0;-webkit-overflow-scrolling:touch}.cookie-consent-banner-opt-out__modal-action{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;height:102px;padding:0 48px;margin-top:auto;background:#fff;border-radius:0 0 6px 6px;box-shadow:0 -5px 4px rgba(0,0,0,.1)}@media(max-width:1024px){.cookie-consent-banner-opt-out__actions{-webkit-flex-wrap:wrap;flex-wrap:wrap}.cookie-consent-banner-opt-out__action{-webkit-flex:1;flex:1;margin-right:0!important}}@media(max-height:620px),(max-width:800px){.cookie-consent-banner-opt-out__modal-wrapper{height:-webkit-calc(100% - 78px);height:calc(100% - 78px);margin:54px 24px 24px;grid-template-rows:1fr 74px}.cookie-consent-banner-opt-out__modal-content{padding:0}.cookie-consent-banner-opt-out__modal-action{padding:0 16px;height:74px}}@media screen and (max-width:540px){.cookie-consent-banner-opt-out{-webkit-flex-wrap:wrap;flex-wrap:wrap}}.cookie-consent-banner-opt-out__action--primary{background-color:#3483fa}.cookie-consent-banner-opt-out__action--key-save:hover{background-color:#2968c8}.cookie-consent-banner-opt-out__action--key-save:focus{box-shadow:0 0 0 .1875em rgba(65,137,230,.3)}.cookie-consent-banner-opt-out{padding:48px 48px 24px}.cookie-consent-banner-opt-out__message-container{margin-right:50px;max-width:585px;min-width:200px}.cookie-consent-banner-opt-out__header{margin:0 0 12px;font-size:20px}.cookie-consent-banner-opt-out__actions{-webkit-align-items:center;align-items:center;margin:0 0 24px}.cookie-consent-banner-opt-out__action{margin:0 8px 8px 0;padding:16px 24px;font-size:16px}.cookie-consent-banner-opt-out__action:last-child{margin:0 0 8px}.cookie-consent-banner-opt-out__form{margin:0 8px 8px 0}.cookie-consent-banner-opt-out__form:last-child{margin:0 0 8px}.cookie-consent-banner-opt-out__form .cookie-consent-banner-opt-out__action,.cookie-consent-banner-opt-out__modal-action>button:last-child{margin:0}@media screen and (max-width:800px){.cookie-consent-banner-opt-out__modal-action>button{width:100%}}@media screen and (max-width:540px){.cookie-consent-banner-opt-out{-webkit-flex-wrap:wrap;flex-wrap:wrap}.cookie-consent-banner-opt-out__message-container{margin-right:0}.cookie-consent-banner-opt-out__actions{-webkit-flex-direction:column;flex-direction:column;width:100%}.cookie-consent-banner-opt-out__action{width:100%;-moz-box-sizing:border-box;box-sizing:border-box;margin:0 0 8px}.cookie-consent-banner-opt-out__action:last-child{margin:0}}.cookie-consent-snackbar{position:fixed;bottom:0;left:50%;-webkit-transform:translate(-50%);transform:translate(-50%);padding:8px;color:#fff;font-family:Proxima Nova,-apple-system,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;max-height:500px;-webkit-transition-property:max-height;transition-property:max-height;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-in-out;transition-timing-function:ease-in-out;width:100%;max-width:600px;-moz-box-sizing:border-box;box-sizing:border-box;z-index:2147483647}.cookie-consent-snackbar__content{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;border-radius:6px}.cookie-consent-snackbar--success .cookie-consent-snackbar__content{background-color:#00a650}.cookie-consent-snackbar--error .cookie-consent-snackbar__content{background-color:#f23d4f}.cookie-consent-snackbar__message{color:#fff;-webkit-flex-grow:1;flex-grow:1;word-break:break-word}.cookie-consent-snackbar--collapsed{max-height:0}.cookie-consent-snackbar--hidden{display:none}.cookie-consent-snackbar__close{margin-left:8px;font-family:Proxima Nova,-apple-system,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;border:0;padding:0;background-color:transparent;color:#fff;text-transform:uppercase;font-weight:600;font-size:inherit}@media screen and (max-width:280px){.cookie-consent-snackbar .cookie-consent-snackbar__content{-webkit-flex-wrap:wrap;flex-wrap:wrap;padding:12px}.cookie-consent-snackbar__close{margin-left:0;margin-top:8px}}.cookie-consent-snackbar__close:focus{outline:2px solid #3483fa}.cookie-consent-snackbar{font-size:16px}.cookie-consent-snackbar__content{padding:23px 24px}</style>
<style media="(min-width: 1024px)">@charset "utf-8";
/*
* Navigation
* @platform "mercadolibre"
* @version 5.19.1
* @author MercadoLibre.com
*/
@font-face{font-family:"navigation";src:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.eot");src:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.eot#iefix") format("embedded-opentype"),url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.woff2") format("woff2"),url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.woff") format("woff"),url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.ttf") format("truetype"),url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.svg#navigation") format("svg");font-weight:normal;font-style:normal}[class^=nav-icon-],[class*=" nav-icon-"]{font-style:normal}[class^=nav-icon-]:before,[class*=" nav-icon-"]:before{display:inline-block;font-variant:normal;margin:0;speak:none;text-align:center;width:1em;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:"navigation"}.nav-icon-back-o:before,.nav-header .nav-header-btn:before{content:""}.nav-icon-bookmarks-o:before{content:""}.nav-icon-bookmarks:before{content:""}.nav-icon-chevron-right-o:before{content:""}.nav-icon-chevron-right:before{content:""}.nav-icon-chevron-up-o:before{content:""}.nav-icon-chevron-up:before{content:""}.nav-icon-close:before{content:""}.nav-icon-facebook:before{content:""}.nav-icon-gplus:before{content:""}.nav-icon-help-o:before{content:""}.nav-icon-help:before{content:""}.nav-icon-instagram:before{content:""}.nav-icon-login-o:before{content:""}.nav-icon-logout-o:before{content:""}.nav-icon-logout:before{content:""}.nav-icon-notifications-o:before{content:""}.nav-icon-notifications:before{content:""}.nav-icon-official-store-o:before{content:""}.nav-icon-register-o:before{content:""}.nav-icon-search-o:before{content:""}.nav-icon-search:before{content:""}.nav-icon-sell-o:before{content:""}.nav-icon-time-o:before{content:""}.nav-icon-twitter:before{content:""}.nav-icon-user-o:before{content:""}.nav-icon-user:before{content:""}.nav-icon-youtube:before{content:""}.nav-icon-close-o:before{content:""}.nav-icon-bookmarks-medium:before{content:""}.nav-icon-cart-empty-medium:before{content:""}.nav-icon-phone:before{content:""}.nav-icon-cart-empty-small:before{content:""}.nav-icon-cart-full-medium:before{content:""}.nav-icon-cart-full-small:before{content:""}.nav-icon-help-medium:before{content:""}.nav-icon-notifications-medium:before{content:""}.nav-icon-user-medium:before{content:""}.nav-icon-search-ml:before{content:""}.nav-icon-user-rounded:before{content:""}.nav-icon-app:before{content:""}.nav-icon-search-plus:before{content:""}.nav-icon-vender-mobile:before{content:""}.nav-icon-bookmarks-mobile:before{content:""}.nav-icon-categories-mobile:before{content:""}.nav-icon-create-account-mobile:before{content:""}.nav-icon-deals-mobile:before{content:""}.nav-icon-download-mobile:before{content:""}.nav-icon-help-mobile:before{content:""}.nav-icon-history-mobile:before{content:""}.nav-icon-logout-mobile:before{content:""}.nav-icon-my-account-mobile:before{content:""}.nav-icon-navigation-mobile:before{content:""}.nav-icon-notifications-mobile:before{content:""}.nav-icon-points-mobile:before{content:""}.nav-icon-purchases-mobile:before{content:""}.nav-icon-stores-mobile:before{content:""}.nav-icon-wallet-mobile:before{content:""}.nav-icon-contact-ms:before{content:""}.nav-icon-cart-ms:before{content:""}.nav-icon-close-ms:before{content:""}.nav-icon-search-ms:before{content:""}.nav-icon-search-spinner-ms:before{content:""}.nav-icon-twitter-ms:before{content:""}.nav-icon-facebook-ms:before{content:""}.nav-icon-instagram-ms:before{content:""}.nav-icon-points-discounts-mobile:before{content:""}.nav-icon-mercado-credits-mobile:before{content:""}.nav-icon-cp-location-mobile:before{content:""}.nav-icon-nav-icon-cp-location-desktop-guest:before{content:""}.nav-icon-nav-icon-cp-location-desktop-logged:before{content:""}.nav-icon-supermercado:before{content:""}.nav-icon-youtube-ms:before{content:""}.nav-icon-home:before{content:""}.nav-icon-quotations-mobile:before{content:""}.nav-icon-pi-logout-mobile:before{content:""}.nav-icon-map-search-mobile:before{content:""}.nav-icon-subscriptions-mobile-video:before{content:""}.nav-icon-contact-tc:before{content:""}.nav-icon-subscriptions-mobile-video-music:before{content:""}.nav-icon-subscriptions-mobile-music:before{content:""}.nav-icon-compra-internacional:before{content:""}.nav-icon-moda-mobile:before{content:""}.nav-icon-mshops-mobile:before{content:""}.nav-icon-summary-mobile:before{content:""}.nav-icon-best-sellers-mobile:before{content:""}.nav-icon-live-mobile:before{content:""}html,body{height:100%;margin:0;padding:0;width:100%}body{border-collapse:collapse;display:table;background-color:#fff;font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif,sans-serif;font-size:14px;table-layout:fixed}.nav-header,[role=main],.nav-footer{display:table-row;width:100%}[role=main]{height:100%}[role=main] .nav-bounds{-moz-box-sizing:border-box;box-sizing:border-box}[role=main] .nav-bounds[class*=ch-box-]{border:none;background-color:rgba(0,0,0,0)}.nav-bounds{display:block;padding:0 10px;margin:0 auto}.nav-footer-navigation,.nav-footer-access,#nav-header-user-switch,[for=nav-header-user-switch],.nav-header-user-layer a:last-child{display:none}.nav-header{font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif;background-color:#ffdb15;color:#333;-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color:rgba(0,0,0,0);cursor:default;border-bottom:0 solid #fff}.nav-header .nav-bounds{position:relative;padding:50px 0 0}.nav-header,.nav-header *,.nav-header *:before,.nav-header *:after{-moz-box-sizing:border-box;box-sizing:border-box}.nav-header.nav-header-sticky{position:fixed;z-index:900}.nav-header.nav-header-sticky+main>.nav-bounds,.nav-header.nav-header-sticky+main>.nav-main-content,.nav-header.nav-header-sticky~main>.nav-bounds,.nav-header.nav-header-sticky~main>.nav-main-content{padding-top:50px}[for=nav-header-menu-switch]{position:absolute;top:0;right:0;height:50px;width:45px;cursor:pointer}#nav-header-menu-switch{display:none}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-top-bread{-webkit-transform:translate(0, 4px) rotate(40deg);transform:translate(0, 4px) rotate(40deg)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-patty{-webkit-transform:scale(0, 0);transform:scale(0, 0)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-bottom-bread{-webkit-transform:translate(0, -4px) rotate(-40deg);transform:translate(0, -4px) rotate(-40deg)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper #nav-header-menu{display:block}.hamburger-bottom-bread,.hamburger-patty,.hamburger-top-bread{position:absolute;display:block;width:20px;height:2px;background-color:#333;top:50%;border-radius:0;-webkit-transition:all 100ms ease-out;transition:all 100ms ease-out;left:12.5px}.hamburger-top-bread{margin-top:-5px}.hamburger-patty{margin-top:-1px}.hamburger-bottom-bread{margin-top:3px}#nav-header-menu:after,#nav-header-menu:before{border-style:solid;border-color:rgba(0,0,0,0);position:absolute;bottom:100%;-webkit-transform:translateY(1px);transform:translateY(1px);content:""}#nav-header-menu{background-color:#fff;display:none;position:relative}#nav-header-menu a{display:block;height:50px;padding:0 10px;font-size:16px;text-decoration:none;line-height:50px;color:#333;border-top:1px solid #eaeaea;position:relative}#nav-header-menu a [class^=nav-icon-]:before,#nav-header-menu a [class*=" nav-icon-"]:before{display:none}#nav-header-menu a:first-child {border-top-color:#fff}#nav-header-menu a:after{position:absolute;top:0;right:20px;display:block;font-family:"navigation";color:#404040;content:""}#nav-header-menu:before{border-bottom-color:#fff;border-width:8px;right:14.5px;pointer-events:none}#nav-header-menu:after{border-width:7px;border-bottom-color:#fff;right:15.5px;pointer-events:none}.nav-logo{background-image:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/logo__small.png");background-repeat:no-repeat;display:inline-block;height:28px;overflow:hidden;text-indent:-999px;width:39px;top:11px;position:absolute;left:10px}@media(-webkit-min-device-pixel-ratio: 2),(min-resolution: 192dpi),(min-resolution: 2dppx){.nav-logo{background-image:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/logo__small@2x.png");background-size:39px 28px}}.nav-search{position:absolute;left:59px;top:0;right:45px;height:50px;padding:8px 0}.nav-bounds-with-cart .nav-search{right:94px}input[type=text].nav-search-input,input[type=search].nav-search-input{border:0 1px 2px 0 rgba(0,0,0,.2);color:#333;font-size:16px;border-radius:2px;width:100%;height:100%;margin:0;background-color:#fff;padding:6px 6px 6px 35px;box-shadow:none;font-family:inherit}input[type=text].nav-search-input:focus,input[type=search].nav-search-input:focus{box-shadow:0 0 1px rgba(0,0,0,0);border:0 1px 2px 0 rgba(0,0,0,.2);padding:6px 6px 6px 35px;outline:0}input[type=text].nav-search-input.ch-autocomplete-loading,input[type=search].nav-search-input.ch-autocomplete-loading{background-position:right 30px center}button.nav-search-btn,button.nav-search-btn:focus{position:absolute;top:0;right:0;height:50px;padding:0;width:48px;background:none;border:none;font-size:22px;color:#666;line-height:1em}.nav-icon-close:before,.nav-icon-search:before{display:inline-block}.nav-icon-close span,.nav-icon-search span{display:none}.nav-footer{background-color:#eee;color:#999;font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif;font-size:14px;overflow:hidden}.nav-footer,.nav-footer *,.nav-footer *:before,.nav-footer *:after{-moz-box-sizing:border-box;box-sizing:border-box}.nav-footer a,.nav-footer a:link,.nav-footer a:visited,.nav-footer a:active{color:#333;text-decoration:none}.nav-footer .nav-footer-change-device,.nav-footer .nav-footer-change-device:link,.nav-footer .nav-footer-change-device:visited,.nav-footer .nav-footer-change-device:active{float:right;display:inline-block;line-height:14px;color:#666}.nav-footer-primaryinfo{margin:0 0 25px 0;border-top:.5px solid #ddd;padding-top:25px;font-size:14px}.nav-footer-secondaryinfo{font-size:12px}.nav-footer-copyright{font-size:inherit;display:inline-block;color:#666;vertical-align:top;width:60%;line-height:14px}.nav-footer-user{padding:25px 12px 20px 12px;border-radius:5px;text-align:center;overflow:hidden;font-size:0}.nav-footer-user .nav-footer-login,.nav-footer-user .nav-footer-registration{font-size:14px;line-height:20px;display:inline-block}.nav-footer-user .nav-footer-login{padding-right:.7em;border-right:.5px solid #ddd}.nav-footer-user .nav-footer-registration{padding-left:.7em}.nav-footer-user strong{font-weight:normal;color:#666;display:inline-block;max-width:100px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;vertical-align:bottom}.nav-footer-user.logged{font-size:14px}.nav-footer-user.logged>a{margin-left:12.5px}.nav-footer-secondary-user{padding:0px 12px 20px;border-radius:5px;text-align:center;margin-top:0;margin-bottom:0;font-size:14px}.nav-footer-downloadapp-banner{display:block;margin-top:32px;text-align:center;background-color:#ffdb08;padding:0 15px}.nav-footer-downloadapp-banner a.nav-footer-downloadapp{font-size:11px;vertical-align:middle;color:#666;padding-top:0;display:inline-block}.nav-footer-downloadapp-banner a.nav-footer-downloadapp:active,.nav-footer-downloadapp-banner a.nav-footer-downloadapp:link,.nav-footer-downloadapp-banner a.nav-footer-downloadapp:visited{color:#666}.nav-footer-downloadapp-banner .nav-icon.nav-icon-downloadapp{background:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/49x64-download-icon.png") top center no-repeat;background-size:49px 64px;display:inline-block;width:49px;height:64px;margin-top:-8px;margin-right:10px;vertical-align:middle}@media(-webkit-min-device-pixel-ratio: 2),(min-resolution: 2dppx),(min-resolution: 192dpi){.nav-footer-downloadapp-banner .nav-icon.nav-icon-downloadapp{background:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/97x127-download-icon@2x.png");background-size:49px 64px;width:49px;height:64px}}.nav-footer-info-wrapper{padding:0 10px}.nav-footer-hp{height:1px;width:1px;position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}.nav-footer-access{font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif}#nav-footer-access-switch{display:none}input[type=text].nav-search-input,input[type=search].nav-search-input{background-color:rgba(255,255,255,.7);border:none;position:relative;-moz-box-sizing:border-box;box-sizing:border-box;z-index:915}input[type=text].nav-search-input:focus,input[type=search].nav-search-input:focus{border:none}.nav-header-has-search-active input[type=text].nav-search-input:focus,.nav-header-has-search-active input[type=search].nav-search-input:focus{color:#666;box-shadow:none}input[type=text].nav-search-input::-webkit-input-placeholder, input[type=search].nav-search-input::-webkit-input-placeholder{color:rgba(0,0,0,.25);font-size:16px;font-weight:400}input[type=text].nav-search-input::-moz-placeholder, input[type=search].nav-search-input::-moz-placeholder{color:rgba(0,0,0,.25);font-size:16px;font-weight:400}input[type=text].nav-search-input::placeholder,input[type=search].nav-search-input::placeholder{color:rgba(0,0,0,.25);font-size:16px;font-weight:400}.nav-header-has-search-active input[type=text].nav-search-input,.nav-header-has-search-active input[type=search].nav-search-input{padding-right:45px}button.nav-search-btn,button.nav-search-btn:focus{left:-6px;right:initial;z-index:920}button.nav-search-btn span,button.nav-search-btn:focus span{display:none}.nav-header-has-search-active button.nav-search-btn,.nav-header-has-search-active button.nav-search-btn:focus{display:none}.nav-search-btn .nav-icon-search{font-size:19px}.nav-search-btn .nav-icon-search:before{content:"";vertical-align:bottom}.nav-header .nav-header-btn{position:absolute;top:3px;left:0;padding:20px;text-indent:-200%;border:0;box-shadow:none;background:none}.nav-header .nav-header-btn:before{font-family:navigation;font-size:20px;line-height:1;color:#333;position:absolute;left:10px;top:10px;text-indent:0}.nav-header .nav-header-btn--no-arrow{text-indent:0;border:1px solid rgba(0,0,0,.15);padding:0 10px;left:10px;top:10px}.nav-header .nav-header-btn--no-arrow:before{display:none}.nav-header .nav-cart{color:#333}.nav-search{z-index:910;will-change:left;-webkit-transition:left .15s ease-out;transition:left .15s ease-out}.nav-search:before{content:"";display:none;position:absolute;top:0;left:-10px;right:-10px;height:100%;background-color:#fff;opacity:0;will-change:opacity;-webkit-transition:opacity .15s ease-out;transition:opacity .15s ease-out}.nav-header-has-search-active .nav-search:before{display:block}.nav-header--is-enter .nav-search:before{opacity:1}.nav-header--is-leave .nav-search:before{opacity:0}.nav-search .nav-category{z-index:917}.nav-search-close-btn,.nav-search-close-btn:focus,.nav-search-clear-btn,.nav-search-clear-btn:focus{font-size:22px;line-height:1;color:#333;border:0;background:none;display:none;position:absolute;top:0;z-index:920;height:50px;padding:0;width:48px}.nav-search-close-btn,.nav-search-close-btn:focus{top:1px;left:-4px;opacity:0;will-change:opacity;-webkit-transition:opacity .15s ease-out;transition:opacity .15s ease-out}.nav-search-close-btn:before,.nav-search-close-btn:focus:before{content:"";font-family:navigation}.nav-header-has-search-active .nav-search-close-btn,.nav-header-has-search-active .nav-search-close-btn:focus{display:block}.nav-header--is-enter .nav-search-close-btn,.nav-header--is-enter .nav-search-close-btn:focus{opacity:1}.nav-header--is-leave .nav-search-close-btn,.nav-header--is-leave .nav-search-close-btn:focus{opacity:0}.nav-search-clear-btn,.nav-search-clear-btn:focus{right:-4px}.nav-search-clear-btn:before{content:"";font-family:"navigation";vertical-align:bottom}.nav-search--has-text .nav-search-clear-btn{display:block}.nav-header--is-leave .nav-search-clear-btn{display:none}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-top-bread,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-top-bread{-webkit-transform:translate(0, 8px) rotate(40deg);transform:translate(0, 8px) rotate(40deg)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-bottom-bread,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-bottom-bread{-webkit-transform:translate(0, -8px) rotate(-40deg);transform:translate(0, -8px) rotate(-40deg)}.hamburger-top-bread{margin-top:-6.6666666667px}.hamburger-patty{margin-top:-.6666666667px}.hamburger-bottom-bread{margin-top:5.3333333333px}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-top-bread,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-top-bread{-webkit-transform:translate(0, 6px) rotate(40deg);transform:translate(0, 6px) rotate(40deg)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-patty,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-patty{-webkit-transform:scale(0, 0);transform:scale(0, 0)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-bottom-bread,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-bottom-bread{-webkit-transform:translate(0, -6px) rotate(-40deg);transform:translate(0, -6px) rotate(-40deg)}#nav-header-menu{padding:16px 0}#nav-header-menu a{padding:0 16px 0 72px;height:50px;line-height:50px;border:none}#nav-header-menu a.notifications-widget,#nav-header-menu a.option-help,#nav-header-menu a.option-register,#nav-header-menu a.bookmarks-widget{border-left:none}#nav-header-menu a.option-my-account:after{content:""}#nav-header-menu a.option-notifications:after{content:""}#nav-header-menu a.option-logout:after{content:""}#nav-header-menu a.option-bookmarks:after{content:""}#nav-header-menu a.option-sell:after{content:""}#nav-header-menu a.option-help:after{content:""}#nav-header-menu a.option-login:after{content:""}#nav-header-menu a.option-register:after{content:""}#nav-header-menu a:after{left:24px;font-size:24px}.nav-bounds.nav-bounds-with-cart [for=nav-header-menu-switch]{right:45px}.nav-bounds-with-cart #nav-header-menu:before{right:59.5px}.nav-bounds-with-cart #nav-header-menu:after{right:60.5px}.nav-cart{display:none}.nav-cart.nav-cart-full .nav-icon-cart:before{content:""}.nav-cart.nav-cart-empty .nav-icon-cart:before{content:""}.nav-bounds.nav-bounds-with-cart .nav-cart{display:block;position:absolute;right:0;top:0;height:50px;width:45px;text-align:center}.nav-bounds.nav-bounds-with-cart .nav-cart :before{font-size:18px;line-height:50px}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart{margin-left:-8px}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart-quantity{position:absolute;right:14px;top:11px;font-size:11px;line-height:15px;width:20px;text-align:center}.nav-bounds.nav-bounds-with-cart .nav-cart.nav-cart-empty .nav-icon-cart-quantity{display:none}#mlMsg{margin:0 auto;-moz-box-sizing:border-box;box-sizing:border-box;max-width:1220px}#mlMsg .content{padding-right:20px}#mlMsg p{margin:0}#mlMsg #mlMsgRemove{width:15px;height:16px;position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);right:12px;cursor:pointer}.nav-header-notifications-badge{display:none}.nav-header-menu-wrapper>.nav-header-notifications-badge{display:none}.ui-message{background-color:#f5f5f5;color:#666;font-size:14px;line-height:1.25;padding:20px;text-align:center;position:relative;width:100%}.ui-message__icon{float:left;margin-right:5px}.ui-message__icon .ui-icon{vertical-align:top}.ui-message__text{overflow:auto}.ui-message--info{background-color:#f5f5f5;color:#666}.ui-message--success{background-color:#64c574;color:#fff}.ui-message__text{overflow:hidden;display:inline}.ui-message__content{display:inline}.ui-message--has-icon.ui-message--warn .ui-message__icon:after{content:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg width='16px' height='16px' viewBox='0 0 68 68' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate%28-414.000000, -365.000000%29'%3E%3Cg transform='translate%28414.000000, 365.000000%29'%3E%3Ccircle fill='rgba(245, 120, 25, 0.999999)' cx='34' cy='34' r='34'%3E%3C/circle%3E%3Cpolygon fill='%23FFFFFF' points='30 16 38 16 37 38 31 38'%3E%3C/polygon%3E%3Ccircle fill='%23FFFFFF' cx='34' cy='48' r='4'%3E%3C/circle%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A")}.ui-message--has-icon.ui-message--default .ui-message__icon:after,.ui-message--has-icon.ui-message--info .ui-message__icon:after{content:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg width='16px' height='16px' viewBox='0 0 16 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate%28-22.000000, -180.000000%29'%3E%3Cg transform='translate%280.000000, 165.000000%29'%3E%3Cg transform='translate%2822.000000, 15.000000%29'%3E%3Ccircle id='circle' fill='rgba(25, 95, 244, 0.999999)' cx='8' cy='8' r='8'%3E%3C/circle%3E%3Cpolygon id='rectangle' fill='%23FFFFFF' points='7 12 9 12 8.75 7 7.25 7'%3E%3C/polygon%3E%3Ccircle id='circle' fill='%23FFFFFF' cx='8' cy='5' r='1'%3E%3C/circle%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A")}.ui-message--has-icon.ui-message--success .ui-message__icon:after{content:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Ccircle%20cx%3D%228%22%20cy%3D%228%22%20r%3D%228%22%20fill%3D%22%23000%22%20fill-opacity%3D%22.208%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M12.4%206L11%204.6l-4%204-2-2L3.6%208%207%2011.4z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")}.ui-message--has-icon.ui-message--error .ui-message__icon:after{content:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg width='16px' height='16px' viewBox='0 0 68 68' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='HIGH-final' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate%28-416.000000, -368.000000%29'%3E%3Cg transform='translate%28270.000000, 256.000000%29'%3E%3Cg transform='translate%28146.000000, 112.000000%29'%3E%3Ccircle fill='rgba(208, 1, 27, 0.999999)' cx='34' cy='34' r='34'%3E%3C/circle%3E%3Crect opacity='0.3' x='17' y='17' width='34' height='34'%3E%3C/rect%3E%3Cpolygon fill='%23FFFFFF' points='20 43.9999997 24.0000003 48 48 24.0000003 43.9999997 20'%3E%3C/polygon%3E%3Cpolygon fill='%23FFFFFF' transform='translate%2834.000000, 34.000000%29 scale%28-1, 1%29 translate%28-34.000000, -34.000000%29 ' points='20 43.9999997 24.0000003 48 48 24.0000003 43.9999997 20'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A")}.ui-message--warn,.ui-message--error,.ui-message--success{color:#fff}.ui-message--warn{background-color:#fbab60}.ui-message--error{background-color:#ff5a5f}.ui-message--success{background-color:#39b54a}.ui-message{border-radius:3px;text-align:left;padding-right:48px}.ui-message__icon{margin-right:8px}.ui-message__close{position:relative;width:16px;height:16px;cursor:pointer;padding:24px;position:absolute;top:50%;right:0;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.ui-message__close:after,.ui-message__close:before{position:absolute;left:8px;top:0;content:"";height:16px;width:2px;background-color:#fff;cursor:pointer}.ui-message__close:before{-webkit-transform:rotate(45deg) translateX(20px);transform:rotate(45deg) translateX(20px)}.ui-message__close:after{-webkit-transform:rotate(-45deg) translateY(20px);transform:rotate(-45deg) translateY(20px)}.ui-message--info{background-color:#5c95ff;color:#fff}.ui-message.ui-message--post-registration,.ui-message.ui-message--overdue-loans{border-radius:0;padding:0;text-align:left}.ui-message.ui-message--post-registration .ui-message--bounds,.ui-message.ui-message--overdue-loans .ui-message--bounds{-moz-box-sizing:border-box;box-sizing:border-box;max-width:1200px;margin:0 auto;position:relative}.ui-message.ui-message--post-registration .ui-message--bounds{padding:20px 46px 20px 34px}.ui-message.ui-message--post-registration .ui-message--bounds .ui-message__icon{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);left:10px}.ui-message.ui-message--post-registration .ui-message--bounds .ui-message__close{right:-6px;-moz-box-sizing:border-box;box-sizing:border-box}.ui-message.ui-message--post-registration a{color:#fff;text-decoration:underline}.ui-message.ui-message--overdue-loans{background-color:#ff5a5f;color:#fff;font-size:0}.ui-message.ui-message--overdue-loans .ui-message--bounds{padding:22px 120px 22px 18px}.ui-message.ui-message--overdue-loans .ui-message__text{display:inline !important}.ui-message.ui-message--overdue-loans .ui-message--overdue-loans-cta{font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif;display:inline-block;position:absolute;top:50%;right:18px;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:84px;height:36px;line-height:36px;color:#fff;border:solid 1px #fff;border-radius:4px;text-align:center;text-decoration:none;-moz-box-sizing:border-box;box-sizing:border-box}.ui-message.ui-message--overdue-loans .ui-message__text,.ui-message.ui-message--overdue-loans .ui-message--overdue-loans-cta{font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif !important;font-size:14px}#nav-header-overdue-loans{text-decoration:none}.kyc-active-campaign__nav-header{text-decoration:none}.kyc-active-campaign__nav-header .kyc-active-campaign__message{background-color:#ff5a5f;color:#fff;border-radius:0;padding:0;text-align:left}.kyc-active-campaign__nav-header .kyc-active-campaign__message .kyc-active-campaign__bounds{-moz-box-sizing:border-box;box-sizing:border-box;max-width:1200px;margin:0 auto;position:relative;padding:13px;font-size:14px}.kyc-active-campaign__nav-header .kyc-active-campaign__message .kyc-active-campaign__bounds .kyc-active-campaign__text{display:inline}.kyc-active-campaign__nav-header .kyc-active-campaign__message .kyc-active-campaign__bounds .kyc-active-campaign__cta{display:inline-block;margin-left:10px;padding:8px 20px;color:#fff;border:solid 1px #fff;border-radius:4px}[class^=nav-icon-]:before,[class*=" nav-icon-"]:before{display:inline-block}[class^=nav-icon-] span,[class*=" nav-icon-"] span{display:none}html,body{font-size:13px;background-color:#fff}.nav-bounds{max-width:1220px}.nav-title,.nav-header-btn,.nav-footer-user,.nav-footer-secondary-user{display:none}.nav-header{background-image:none;height:56px;font-size:13px;font-weight:400}.nav-header .nav-bounds{padding:0 0 0 160px;height:56px}.nav-header.nav-header-sticky+main>.nav-bounds,.nav-header.nav-header-sticky+main>.nav-main-content,.nav-header.nav-header-sticky~main>.nav-bounds,.nav-header.nav-header-sticky~main>.nav-main-content{padding-top:56px}[for=nav-header-menu-switch]{display:none}#nav-header-menu{display:block;font-size:0;margin:0 0 0 16px;background-color:rgba(0,0,0,0);float:right;height:56px;padding:0;white-space:nowrap}#nav-header-menu a{display:inline;height:auto;line-height:1em;border-top:none;color:#333;text-decoration:none;border-left:1px solid rgba(51,51,51,.2);padding:1px 16px;line-height:56px;font-size:13px}#nav-header-menu a [class^=nav-icon-]:before,#nav-header-menu a [class*=" nav-icon-"]:before{display:inline-block}#nav-header-menu a:after{display:none}#nav-header-menu a:hover{color:#000}#nav-header-menu a:hover i:before{color:#000}#nav-header-menu a.bookmarks-widget{border-left:none;padding-left:0;display:inline}#nav-header-menu i:before{color:#333;vertical-align:middle;font-size:16px;text-shadow:0 1px rgba(255,255,255,.75)}#nav-header-menu i.nav-icon-help:before{font-size:17px}#nav-header-menu i span{font-size:14px}#nav-header-menu .nav-icon-user{pointer-events:none}#nav-header-menu .nav-icon-user:before{margin-left:5px}#nav-header-menu:before,#nav-header-menu:after{display:none}[data-country=BR] #nav-header-menu .nav-icon-help:before{display:none}[data-country=BR] #nav-header-menu .nav-icon-help span{display:inline-block}.nav-header-user{display:inline-block;position:relative;height:46px;line-height:46px}[for=nav-header-user-switch]{cursor:pointer;font-size:12px;color:#333;margin:0 16px;padding:10px 0;text-transform:uppercase;display:inline}[for=nav-header-user-switch]:hover{color:#000}#nav-header-menu [for=nav-header-user-switch]:hover i:before{color:#000}.ie8 [for=nav-header-user-switch],.lt-ie9 [for=nav-header-user-switch]{margin:0}.ie8 #nav-header-menu [for=nav-header-user-switch] a,.lt-ie9 #nav-header-menu [for=nav-header-user-switch] a{font-size:12px}#nav-header-user-switch{display:none}#nav-header-user-switch:checked+.nav-header-user-layer{display:block}.nav-header-user-layer{background-color:#fff;border:1px solid #dedede;border-radius:5px;box-shadow:2px 2px 2px rgba(99,99,99,.2);right:0;position:absolute;top:100%;z-index:3;width:150px;display:none}.nav-header-user-layer:before,.nav-header-user-layer:after{border:outset rgba(0,0,0,0);border-bottom-style:solid;bottom:100%;content:"";display:block;height:0;pointer-events:none;position:absolute;width:0}.nav-header-user-layer:before{border-bottom-color:#dedede;border-width:10px;right:4px}.nav-header-user-layer:after{border-bottom-color:#fff;border-width:9px;right:5px}#nav-header-menu .nav-header-user-layer a{color:#000;display:block;line-height:25px;margin:3px 0;padding:5px 15px;text-decoration:none;border-left:none}#nav-header-menu .nav-header-user-layer a:last-child{display:block}#nav-header-menu .nav-header-user-layer a:hover{color:#000;background-color:#fefbd6}.nav-logo{background-image:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/logo__large_plus.png");height:34px;top:11px;width:134px}[data-country=BR] .nav-logo,[data-country=PT] .nav-logo{background-image:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/logo-pt__large_plus.png")}@media(-webkit-min-device-pixel-ratio: 2),(min-resolution: 192dpi),(min-resolution: 2dppx){.nav-logo{background-image:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/logo__large_plus@2x.png");background-size:134px 34px}[data-country=BR] .nav-logo,[data-country=PT] .nav-logo{background-image:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/logo-pt__large_plus@2x.png")}}.nav-search{padding:8px 1px;overflow:auto;max-width:720px;height:56px;position:relative;left:-1px}input[type=text].nav-search-input,input[type=search].nav-search-input{padding:7px 60px 9px 15px;border-radius:2px;background-color:#fff;border:0 1px 2px 0 rgba(0,0,0,.2)}input[type=text].nav-search-input:focus,input[type=search].nav-search-input:focus{border:0 1px 2px 0 rgba(0,0,0,.2);padding:7px 60px 9px 15px}input[type=text].nav-search-input::-webkit-input-placeholder, input[type=search].nav-search-input::-webkit-input-placeholder{visibility:hidden}input[type=text].nav-search-input::-moz-placeholder, input[type=search].nav-search-input::-moz-placeholder{visibility:hidden}input[type=text].nav-search-input::placeholder,input[type=search].nav-search-input::placeholder{visibility:hidden}input[type=text].nav-search-input .ch-autocomplete-loading,input[type=search].nav-search-input .ch-autocomplete-loading{background-position:right 10px center}button.nav-search-btn,button.nav-search-btn:focus{border-radius:0 2px 2px 0;width:46px;height:40px;border:0 1px 2px 0 rgba(0,0,0,.2);background-color:#fff;background-image:-webkit-linear-gradient(#fff, #f1f1f1);background-image:linear-gradient(#fff, #f1f1f1);top:8px;right:1px}.nav-footer{background-color:#f7f7f7;border-top:1px solid #eee;line-height:1;font-size:13px;font-weight:400}.nav-footer .nav-bounds{padding-top:25px;padding-bottom:25px}.nav-footer .nav-footer-change-device,.nav-footer .nav-footer-change-device:link,.nav-footer .nav-footer-change-device:visited,.nav-footer .nav-footer-change-device:active{float:none;border-left:1px solid #ddd;font-size:14px;padding:0 10px}.nav-footer-copyright{margin:0 10px 5px 0;color:#999;vertical-align:initial;width:auto;line-height:initial;font-size:14px}.nav-footer-navigation{display:inline-block;font-size:0}.nav-footer-navigation a{border-right:1px solid #ddd;font-size:14px;padding:0 10px}.nav-footer-navigation a:last-of-type{border-right:none}.nav-footer-navigation a:first-of-type{padding-left:0}.nav-footer-primaryinfo{margin-top:0;margin-bottom:0;border:0;padding-top:0;font-size:0}.nav-footer-secondaryinfo{display:block;margin:12.5px 0 0}.nav-footer-downloadapp-banner{display:none}.nav-footer .nav-footer-downloadapp-wrapper{display:none}.nav-footer-access{display:block;position:relative;font-size:13px;font-weight:400}.nav-footer-access [for=nav-footer-access-switch] i:before{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.nav-footer-access,.nav-footer-access *,.nav-footer-access *:before,.nav-footer-access *:after{-moz-box-sizing:border-box;box-sizing:border-box}#nav-footer-access-switch:checked+.nav-footer-access .nav-footer-access-content{max-height:0;border-top-width:0}#nav-footer-access-switch:checked+.nav-footer-access [for=nav-footer-access-switch] i:before{-webkit-transform:rotate(0deg);transform:rotate(0deg)}[for=nav-footer-access-switch]{background-color:#f7f7f7;border:1px solid #eee;border-bottom:none;color:#666;cursor:pointer;padding:0 20px;height:32px;line-height:32px;position:absolute;left:50%;bottom:100%;-webkit-transform:translate(-50%, 1px);transform:translate(-50%, 1px);border-radius:5px 5px 0 0;z-index:1}[for=nav-footer-access-switch] i{margin-left:2px;font-size:11px;top:0;position:relative}[for=nav-footer-access-switch] i:before{-webkit-transition:all 200ms linear;transition:all 200ms linear}.ie8 [for=nav-footer-access-switch],.lt-ie9 [for=nav-footer-access-switch]{display:none}.nav-footer-access-content{line-height:0;max-height:170px;overflow:hidden;-webkit-transition:max-height 200ms linear;transition:max-height 200ms linear;font-size:0;background-color:#f7f7f7;border-top:1px solid #eee;margin-top:64px;position:relative;bottom:0px}.nav-footer-access-content a,.nav-footer-access-content a:visited,.nav-footer-access-content a:active,.nav-footer-access-content a:link{color:#999;text-decoration:none}.nav-footer-access-content a:hover{text-decoration:underline}.nav-footer-access-content [class^=nav-icon-]:before,.nav-footer-access-content [href*="twitter.com"]:before,.nav-footer-access-content [href*="facebook.com"]:before,.nav-footer-access-content [href*="plus.google.com"]:before,.nav-footer-access-content [href*="youtube.com"]:before,.nav-footer-access-content [href*="instagram.com"]:before{font-size:18px;margin-right:7px;vertical-align:top}.nav-footer-access-content .nav-icon-twitter:before{font-size:20px;margin-right:5px}.nav-footer-access-content [href*="twitter.com"],.nav-footer-access-content [href*="facebook.com"],.nav-footer-access-content [href*="plus.google.com"],.nav-footer-access-content [href*="youtube.com"],.nav-footer-access-content [href*="instagram.com"]{font-style:normal}.nav-footer-access-content [href*="twitter.com"]:before,.nav-footer-access-content [href*="facebook.com"]:before,.nav-footer-access-content [href*="plus.google.com"]:before,.nav-footer-access-content [href*="youtube.com"]:before,.nav-footer-access-content [href*="instagram.com"]:before{display:inline-block;font-variant:normal;margin:0;speak:none;text-align:center;width:1em;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:"navigation"}.nav-footer-access-content [href*="twitter.com"]:before,.nav-footer-access-content [href*="facebook.com"]:before,.nav-footer-access-content [href*="plus.google.com"]:before,.nav-footer-access-content [href*="youtube.com"]:before,.nav-footer-access-content [href*="instagram.com"]:before{font-size:18px;margin-right:7px;vertical-align:top}.nav-footer-access-content [href*="twitter.com"]:before{content:"";font-size:20px;margin-right:5px}.nav-footer-access-content [href*="facebook.com"]:before{content:""}.nav-footer-access-content [href*="plus.google.com"]:before{content:""}.nav-footer-access-content [href*="youtube.com"]:before{content:""}.nav-footer-access-content [href*="instagram.com"]:before{content:""}.nav-footer-access-col{width:20%;font-size:14px;display:inline-block;vertical-align:top;line-height:20px;margin:25px 0}.nav-footer-access-col ul{padding:0;margin:0;list-style:none}.nav-footer-access-title{color:#666;font-weight:600;margin:0 0 5px;font-size:14px}#nav-header-menu a{padding-top:1px;padding-bottom:1px;font-size:14px;line-height:55px}#nav-header-menu a [class^=nav-icon-]:before,#nav-header-menu a [class*=" nav-icon-"]:before{display:inline}#nav-header-menu a.option-sell,#nav-header-menu a.option-cart{border-left:1px solid rgba(51,51,51,.2)}#nav-header-menu a.option-sell{margin-left:9px}#nav-header-menu:first-child{border-left:none}#nav-header-menu [for=nav-header-user-switch]{margin-left:7px;margin-right:7px}#nav-header-menu .option-cart{display:inline}#nav-header-menu i:before{text-shadow:none}#nav-header-menu i.nav-icon-help:before{font-size:16px}.nav-bounds.nav-bounds-with-cart #nav-header-menu{margin-right:45px}.nav-bounds.nav-bounds-with-cart .nav-cart{top:19px;height:18px;width:25px}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart{margin-left:0}.nav-bounds.nav-bounds-with-cart .nav-cart :before{line-height:27px;font-size:16px;color:#333}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart{position:relative;top:-3px}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart-quantity{display:inline-block;top:-3px;right:8px;font-size:11px;line-height:15px;color:#333}.nav-bounds.nav-bounds-with-cart .nav-cart:hover .nav-icon-cart-quantity{color:#000}.nav-bounds.nav-bounds-with-cart .nav-cart:hover :before{color:#000}.nav-footer-primaryinfo a,.nav-footer-primaryinfo a:link,.nav-footer-primaryinfo a:visited,.nav-footer-primaryinfo a:active{color:#0637b3;text-decoration:none}.nav-header-has-search-active .nav-search:before,.nav-header-has-search-active .nav-search .nav-search-close-btn{display:none}.nav-header-has-search-active button.nav-search-btn,.nav-header-has-search-active button.nav-search-btn:focus{display:inline-block}button.nav-search-btn,button.nav-search-btn:focus{left:auto}.nav-search-btn .nav-icon-search{font-size:18px}.nav-search-btn .nav-icon-search:before{content:"";vertical-align:top}.nav-search-clear-btn{display:none}#nav-header-menu .nav-icon-notifications:before{content:""}#nav-header-menu .nav-icon-bookmarks:before{content:""}#nav-header-menu .nav-icon-help:before{content:""}#nav-header-menu .nav-icon-user:before{content:""}.nav-cart.nav-cart-full .nav-icon-cart:before{content:""}.nav-cart.nav-cart-empty .nav-icon-cart:before{content:""}input[type=text].nav-search-input::-webkit-input-placeholder, input[type=search].nav-search-input::-webkit-input-placeholder{visibility:visible}input[type=text].nav-search-input::-moz-placeholder, input[type=search].nav-search-input::-moz-placeholder{visibility:visible}input[type=text].nav-search-input::placeholder,input[type=search].nav-search-input::placeholder{visibility:visible}.nav-link-tag{font-size:11px;font-weight:600;color:#fff;border-radius:8px;background-color:#3483fa;line-height:4px;padding:6px;display:inline-block;text-transform:uppercase}.nav-link-tag--small{font-size:8px;padding:1px 3px;line-height:1em}.nav-bounds.nav-bounds-with-cart .nav-cart{overflow:hidden}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart-quantity>b{font-weight:inherit}.nav-header{background-color:#fff159;border:0;position:relative}.nav-header:before{content:"";position:absolute;width:100%;height:100px;left:0;top:0;box-shadow:0 1px 0 0 rgba(0,0,0,.1)}.nav-header.nav-header-plusclean:before,.nav-header.nav-header-pluslite:before{height:56px}.nav-header .ml-count{font-weight:600}#nav-header-menu-mobile{display:none}.nav-footer-user-info{border-top:1px solid #ededed}.nav-footer-copyright{font-size:12px;width:auto}.nav-footer-navigation a{color:#333;padding:0 8px;border:0}.nav-footer-navigation a:link,.nav-footer-navigation a:visited{color:#333}.nav-footer-navigation a:hover,.nav-footer-navigation a:active,.nav-footer-navigation a:focus{color:#000}@-webkit-keyframes jump-in-number{from{-webkit-transform:translateY(100%);transform:translateY(100%)}20%{-webkit-transform:translateY(-30%);transform:translateY(-30%)}40%{-webkit-transform:translateY(10%);transform:translateY(10%)}60%{-webkit-transform:translateY(-10%);transform:translateY(-10%)}80%{-webkit-transform:translateY(5%);transform:translateY(5%)}to{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes jump-in-number{from{-webkit-transform:translateY(100%);transform:translateY(100%)}20%{-webkit-transform:translateY(-30%);transform:translateY(-30%)}40%{-webkit-transform:translateY(10%);transform:translateY(10%)}60%{-webkit-transform:translateY(-10%);transform:translateY(-10%)}80%{-webkit-transform:translateY(5%);transform:translateY(5%)}to{-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fade-out-number{from{opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{opacity:0;-webkit-transform:scale(0);transform:scale(0)}}@keyframes fade-out-number{from{opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{opacity:0;-webkit-transform:scale(0);transform:scale(0)}}@-webkit-keyframes fade-in-number{from{opacity:0}to{opacity:1}}@keyframes fade-in-number{from{opacity:0}to{opacity:1}}@-webkit-keyframes pseudo-ripple{from{-webkit-transform:scale(0);transform:scale(0);opacity:.8}95%{-webkit-transform:scale(0.95);transform:scale(0.95);opacity:.2}to{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@keyframes pseudo-ripple{from{-webkit-transform:scale(0);transform:scale(0);opacity:.8}95%{-webkit-transform:scale(0.95);transform:scale(0.95);opacity:.2}to{-webkit-transform:scale(1);transform:scale(1);opacity:0}}#nav-header-menu-mobile{display:none}.nav-header{height:100px}.nav-header .nav-header-cp-anchor{display:none}.nav-header .nav-bounds{height:auto;max-width:1200px}.nav-menu{display:block;margin:0 0 0 -150px;max-width:785px}.nav-menu-list{list-style:none;padding:12px 0 0;overflow:hidden;height:36px;margin:0}.nav-menu-item{display:inline-block;line-height:22px;font-size:14px;padding-right:32px;width:auto;float:left}.nav-menu-item a{text-decoration:none;-webkit-font-smoothing:antialiased;color:rgba(51,51,51,.6);-webkit-transition:color .3s ease-out;transition:color .3s ease-out}.nav-menu-item a:link,.nav-menu-item a:visited{color:rgba(51,51,51,.6)}.nav-menu-item a:hover,.nav-menu-item a:active,.nav-menu-item a:focus{color:rgba(51,51,51,.9);text-decoration:none}.nav-menu-item a.nav-menu-item-link{position:relative}.nav-menu-item a.nav-menu-item-link .nav-link-tag{position:absolute;left:50%;-webkit-transform:translate(-50%);transform:translate(-50%);bottom:85%}.nav-menu-item:first-child{font-weight:400;width:186px}.nav-menu-item:first-child>a{color:#333;padding-bottom:9px}.nav-menu-item:first-child>a:link,.nav-menu-item:first-child>a:visited{color:#333;font-weight:inherit}.nav-menu-item:first-child>a:hover,.nav-menu-item:first-child>a:active{color:#111}.nav-menu-item .nav-menu-categories-link:after{border-style:solid;border-width:0 1.5px 1.5px 0;content:"";display:inline-block;height:6px;position:relative;-webkit-transform:rotate(45deg);transform:rotate(45deg);width:6px;color:rgba(0,0,0,.3);margin:8px 0 0 6px;vertical-align:top;will-change:transform;-webkit-transition:all .3s ease-out;transition:all .3s ease-out}.exhibitor__picture{display:inline-block;position:absolute;right:10px;top:9px}.exhibitor__picture img{max-width:340px;max-height:39px}.nav-search{left:35px;max-width:600px}.nav-search .nav-category{display:block;background-color:#fff;color:#666;line-height:20px;height:26px;margin:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:55%;padding:2px 14px;position:absolute;right:46px;top:15px;text-align:right;font-weight:300;font-size:14px;border-left:1px solid #e6e6e6;box-shadow:none;border-top:none;width:auto}.nav-search .nav-category:hover .nav-label-small{width:initial}.nav-search .nav-category label{-webkit-user-select:none}.nav-search .nav-category .nav-label-small{display:inline-block;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;vertical-align:middle;width:58px}.nav-search .nav-category input[type=checkbox]{border:1px solid #ccc;background:0;box-shadow:none;display:inline-block;margin:3px 5px 0 0;height:14px;padding:0;vertical-align:top;width:14px;border-radius:2px}.nav-search.nav-search-with-sugestions input[type=text].nav-search-input,.nav-search.nav-search-with-sugestions input[type=search].nav-search-input{border-bottom-right-radius:0;border-bottom-left-radius:0}input[type=text].nav-search-input,input[type=search].nav-search-input,input[type=text].nav-search-input:focus,input[type=search].nav-search-input:focus,.nav-header-has-search-active input[type=text].nav-search-input:focus,.nav-header-has-search-active input[type=search].nav-search-input:focus{box-shadow:0 1px 2px 0 rgba(0,0,0,.2);height:39px}button.nav-search-btn,button.nav-search-btn:focus{left:auto;background-image:none;height:39px;padding-top:2px;cursor:pointer}button.nav-search-btn .nav-icon-search,button.nav-search-btn:focus .nav-icon-search{font-size:16px;line-height:21px}button.nav-search-btn .nav-icon-search:before,button.nav-search-btn:focus .nav-icon-search:before{content:"";vertical-align:top}button.nav-search-btn:before,button.nav-search-btn:focus:before{content:"";display:block;height:26px;border-left:1px solid #e6e6e6;position:absolute;top:6.5px}#nav-header-menu,.nav-cart{margin-top:48px}.nav-header-pluslite,.nav-header-plusclean{height:56px}.nav-header-pluslite #nav-header-menu,.nav-header-pluslite .nav-cart,.nav-header-plusclean #nav-header-menu,.nav-header-plusclean .nav-cart{margin-top:0}.nav-header-pluslite a.option-help:first-child,.nav-header-plusclean a.option-help:first-child{border:0 !important}.nav-bounds.nav-bounds-with-cart .nav-cart{right:9px;top:19px;height:21px;padding-top:2px;text-decoration:none;font-size:0}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart{font-size:13px}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart:after{display:block;position:absolute;top:-50px;left:-38px;content:"";width:100px;height:100px;border-radius:50%;background-color:#fff;-webkit-transform:scale(0, 0);transform:scale(0, 0);opacity:0}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart-quantity{position:relative;font-size:11px;top:auto;bottom:13px;right:auto;left:0;margin-left:-14px}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart-quantity>b{display:inline-block;width:100%;text-align:center;line-height:1;position:absolute;left:0;bottom:-2px}.nav-bounds.nav-bounds-with-cart .nav-icon-quantity--changing .nav-icon-cart:after{-webkit-animation:pseudo-ripple .45s ease-out;animation:pseudo-ripple .45s ease-out}.nav-bounds.nav-bounds-with-cart .nav-icon-quantity--changing .nav-icon-cart-quantity>b:not(:last-child){-webkit-animation:fade-out-number .15s ease-out;animation:fade-out-number .15s ease-out}.nav-bounds.nav-bounds-with-cart .nav-icon-quantity--changing .nav-icon-cart-quantity>b:last-child{-webkit-animation-name:fade-in-number,jump-in-number;animation-name:fade-in-number,jump-in-number;-webkit-animation-duration:.12s,.45s;animation-duration:.12s,.45s;-webkit-animation-timing-function:linear,linear;animation-timing-function:linear,linear}.nav-bounds.nav-bounds-with-cart #nav-header-menu{min-width:295px;padding:4px 4px 0 0;margin-right:51px}.nav-bounds.nav-bounds-with-cart #nav-header-menu .option-help{padding-right:16px}.nav-bounds.nav-bounds-with-cp .nav-menu-cp{color:#333;display:inline-block;position:absolute;line-height:22px;height:32px;border:solid 1px rgba(0,0,0,0);padding:4px 4px 0px 8px;border-radius:4px;top:63px;left:4px;font-size:0;max-width:170px}.nav-bounds.nav-bounds-with-cp .nav-menu-cp:before{content:"";font-family:navigation;font-size:18px;position:absolute;top:4px;left:7px;-webkit-font-smoothing:antialiased}.nav-bounds.nav-bounds-with-cp .nav-menu-cp:hover{border-color:#eadd61}.nav-bounds.nav-bounds-with-cp .nav-menu-cp .nav-menu-link-cp{color:#333;padding-left:18px;padding-right:3px;font-size:14px;width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:inline-block}.nav-bounds.nav-bounds-with-cp .nav-menu-cp.nav-menu-cp-logged{height:40px;padding:0 8px 0 8px;border:solid 1px rgba(0,0,0,0);border-radius:4px;top:52px;left:1px}.nav-bounds.nav-bounds-with-cp .nav-menu-cp.nav-menu-cp-logged:before{content:"";font-size:23px;position:absolute;top:9px;left:7px;-webkit-font-smoothing:antialiased}.nav-bounds.nav-bounds-with-cp .nav-menu-cp.nav-menu-cp-logged:hover{border-color:#eadd61}.nav-bounds.nav-bounds-with-cp .nav-menu-cp.nav-menu-cp-logged .nav-menu-cp-send{position:relative;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;top:1px;font-size:12px;color:rgba(0,0,0,.5);display:block;width:100%;left:8px;padding:6px 0 0px 13px;margin-right:8px;line-height:10px;height:20px}.nav-bounds.nav-bounds-with-cp .nav-menu-cp.nav-menu-cp-logged .nav-menu-link-cp{line-height:13px;height:20px;padding-left:22px;padding-right:0}.nav-bounds.nav-bounds-with-cp .nav-menu-item:first-child+.nav-menu-item{padding-left:186px}.nav-bounds.nav-bounds-with-cp .nav-menu-item{padding-right:18px}.nav-bounds.nav-bounds-with-cp .nav-menu-item:last-child{padding-right:0}.nav-bounds.nav-bounds-with-cp.nav-bounds-with-cart #nav-header-menu{margin-right:51px}#nav-header-menu{height:52px;min-width:340px;text-align:right;-webkit-font-smoothing:antialiased;left:2px;padding-top:4px;margin-right:15px;margin-left:0}#nav-header-menu>a{border:none;left:12px;padding:0 10px 0 10px;font-size:14px}#nav-header-menu>a.option-purchases{padding-left:7px}#nav-header-menu>a.option-notifications{padding-left:16px;bottom:1px}#nav-header-menu>a.option-bookmarks{padding:0 6px 0 7px}#nav-header-menu>a.option-bookmarks .bookmarks-text:after{border-style:solid;border-width:0 1.5px 1.5px 0;content:"";display:inline-block;height:6px;-webkit-transform:rotate(45deg);transform:rotate(45deg);width:6px;color:rgba(0,0,0,.3);margin:8px 0 0 6px;top:-3px;left:0px;position:relative;padding:2px}#nav-header-menu .nav-header-user{line-height:40px;height:40px;left:16px}#nav-header-menu .nav-header-avatar-user{display:inline-block;width:20px;height:20px;vertical-align:top;position:relative;margin:10px 6px 0 0}#nav-header-menu .nav-header-avatar-user:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);border-radius:50%}#nav-header-menu .nav-header-avatar-user-img{vertical-align:top;max-width:100%;border-radius:50%}#nav-header-menu .nav-icon-user{line-height:1}#nav-header-menu .nav-icon-user:before{content:"";margin:0;vertical-align:top;font-size:20px;background-color:#fff159;z-index:1;position:relative}#nav-header-menu .nav-header-username{display:inline-block;font-size:14px;line-height:40px;left:12px}#nav-header-menu .nav-header-username-chevron{border-style:solid;border-width:0 1.5px 1.5px 0;content:"";display:inline-block;height:6px;position:relative;-webkit-transform:rotate(45deg);transform:rotate(45deg);width:6px;color:rgba(0,0,0,.3);margin:16px 0 0 6px;vertical-align:top}#nav-header-menu [for=nav-header-user-switch]{padding:0 16px 0 0;text-transform:none;font-size:0;margin:0;line-height:40px;display:block}#nav-header-menu .nav-header-user-myml{padding:0;line-height:inherit;font-size:0;border-left:none;display:block}nav#nav-header-menu a.option-help{padding-right:10px}.nav-footer .nav-bounds{padding:16px 10px;max-width:1200px}.nav-footer .nav-bounds .nav-footer-downloadapp-wrapper{text-align:right}.nav-footer-info-wrapper{padding:0}.nav-footer-primaryinfo{vertical-align:top;position:relative;height:40px}.nav-footer-primaryinfo .nav-footer-navigation a{font-size:13px}.nav-footer-user-info{border-top:none}.nav-footer-secondaryinfo{font-size:12px;margin-top:2px}[for=nav-footer-access-switch],.nav-footer{border-color:#e6e6e6;background-color:#fff}[for=nav-footer-access-switch]{-webkit-transition:all 200ms linear;transition:all 200ms linear}#nav-footer-access-switch:not(:checked)+.nav-footer-access [for=nav-footer-access-switch]{background-color:#f7f7f7}#nav-footer-access-switch:not(:checked)+.nav-footer-access .nav-bounds{display:-webkit-flex;display:flex;visibility:visible}.nav-footer-access-content{max-height:270px;border-color:#e6e6e6;-webkit-transition:all 200ms ease-in;transition:all 200ms ease-in}.nav-footer-access-content [href*=".com"]:before{display:none}.nav-footer-access-content .nav-bounds{visibility:hidden;padding:0 110px;-webkit-justify-content:space-between;justify-content:space-between}.nav-footer-access-col{line-height:1.6;width:auto;margin:46px 0}.nav-footer-access-title{color:#333;margin-bottom:14px}.nav-footer-copyright{margin:0;position:absolute;top:20px}.nav-footer a.nav-footer-downloadapp{border-radius:4px;background-color:#ffe600;border:solid 1px #d9cd4b;font-size:12px;line-height:30px;padding:0 8px}.nav-footer a.nav-footer-downloadapp i{background:none;margin-right:6px;top:0;vertical-align:top}.nav-footer a.nav-footer-downloadapp i:before{content:"";font-size:16px}.nav-footer-mobile-links-bounds{display:none}.modeless-box:after{right:17px !important}.nav-icon-downloadapp:before{content:""}#nav-header-menu a.option-sell{display:none}.nav-menu-cp{display:none}@media(max-width: 1200px){.nav-bounds .nav-menu .nav-menu-list .nav-menu-item:nth-last-child(3){display:none}}@media(max-width: 1095px){.nav-bounds .nav-menu .nav-menu-list .nav-menu-item:nth-last-child(4){display:none}}.nav-footer-access-icon{vertical-align:sub;margin-left:8px}#nav-skip-to-main-content{color:#fff}.ui-message.ui-message--overdue-loans .ui-message--bounds{padding:13px}.ui-message.ui-message--overdue-loans .ui-message--overdue-loans-cta{margin-left:10px;position:static;-webkit-transform:none;transform:none}@supports((display: -webkit-flex) or (display: flex)){body{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;min-height:100vh;height:auto}[role=main]{height:auto;-webkit-flex-grow:1;flex-grow:1}.nav-header,[role=main],.nav-footer{display:block}body,[role=main]{padding:0 !important}.nav-footer{overflow:unset}.nav-footer-access-content{margin-top:0}.nav-footer-access{margin-top:64px}}*:focus:not(:focus-visible){outline:0}</style>
<style media="(max-width: 1023px)">@charset "utf-8";
/*
* Navigation
* @platform "mercadolibre"
* @version 5.19.1
* @author MercadoLibre.com
*/
@font-face{font-family:"navigation";src:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.eot");src:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.eot#iefix") format("embedded-opentype"),url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.woff2") format("woff2"),url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.woff") format("woff"),url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.ttf") format("truetype"),url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/navigation.svg#navigation") format("svg");font-weight:normal;font-style:normal}[class^=nav-icon-],[class*=" nav-icon-"]{font-style:normal}[class^=nav-icon-]:before,[class*=" nav-icon-"]:before{display:inline-block;font-variant:normal;margin:0;speak:none;text-align:center;width:1em;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:"navigation"}.nav-icon-back-o:before,.nav-header .nav-header-btn:before{content:""}.nav-icon-bookmarks-o:before{content:""}.nav-icon-bookmarks:before{content:""}.nav-icon-chevron-right-o:before{content:""}.nav-icon-chevron-right:before{content:""}.nav-icon-chevron-up-o:before{content:""}.nav-icon-chevron-up:before{content:""}.nav-icon-close:before{content:""}.nav-icon-facebook:before{content:""}.nav-icon-gplus:before{content:""}.nav-icon-help-o:before{content:""}.nav-icon-help:before{content:""}.nav-icon-instagram:before{content:""}.nav-icon-login-o:before{content:""}.nav-icon-logout-o:before{content:""}.nav-icon-logout:before{content:""}.nav-icon-notifications-o:before{content:""}.nav-icon-notifications:before{content:""}.nav-icon-official-store-o:before{content:""}.nav-icon-register-o:before{content:""}.nav-icon-search-o:before{content:""}.nav-icon-search:before{content:""}.nav-icon-sell-o:before{content:""}.nav-icon-time-o:before{content:""}.nav-icon-twitter:before{content:""}.nav-icon-user-o:before{content:""}.nav-icon-user:before{content:""}.nav-icon-youtube:before{content:""}.nav-icon-close-o:before{content:""}.nav-icon-bookmarks-medium:before{content:""}.nav-icon-cart-empty-medium:before{content:""}.nav-icon-phone:before{content:""}.nav-icon-cart-empty-small:before{content:""}.nav-icon-cart-full-medium:before{content:""}.nav-icon-cart-full-small:before{content:""}.nav-icon-help-medium:before{content:""}.nav-icon-notifications-medium:before{content:""}.nav-icon-user-medium:before{content:""}.nav-icon-search-ml:before{content:""}.nav-icon-user-rounded:before{content:""}.nav-icon-app:before{content:""}.nav-icon-search-plus:before{content:""}.nav-icon-vender-mobile:before{content:""}.nav-icon-bookmarks-mobile:before{content:""}.nav-icon-categories-mobile:before{content:""}.nav-icon-create-account-mobile:before{content:""}.nav-icon-deals-mobile:before{content:""}.nav-icon-download-mobile:before{content:""}.nav-icon-help-mobile:before{content:""}.nav-icon-history-mobile:before{content:""}.nav-icon-logout-mobile:before{content:""}.nav-icon-my-account-mobile:before{content:""}.nav-icon-navigation-mobile:before{content:""}.nav-icon-notifications-mobile:before{content:""}.nav-icon-points-mobile:before{content:""}.nav-icon-purchases-mobile:before{content:""}.nav-icon-stores-mobile:before{content:""}.nav-icon-wallet-mobile:before{content:""}.nav-icon-contact-ms:before{content:""}.nav-icon-cart-ms:before{content:""}.nav-icon-close-ms:before{content:""}.nav-icon-search-ms:before{content:""}.nav-icon-search-spinner-ms:before{content:""}.nav-icon-twitter-ms:before{content:""}.nav-icon-facebook-ms:before{content:""}.nav-icon-instagram-ms:before{content:""}.nav-icon-points-discounts-mobile:before{content:""}.nav-icon-mercado-credits-mobile:before{content:""}.nav-icon-cp-location-mobile:before{content:""}.nav-icon-nav-icon-cp-location-desktop-guest:before{content:""}.nav-icon-nav-icon-cp-location-desktop-logged:before{content:""}.nav-icon-supermercado:before{content:""}.nav-icon-youtube-ms:before{content:""}.nav-icon-home:before{content:""}.nav-icon-quotations-mobile:before{content:""}.nav-icon-pi-logout-mobile:before{content:""}.nav-icon-map-search-mobile:before{content:""}.nav-icon-subscriptions-mobile-video:before{content:""}.nav-icon-contact-tc:before{content:""}.nav-icon-subscriptions-mobile-video-music:before{content:""}.nav-icon-subscriptions-mobile-music:before{content:""}.nav-icon-compra-internacional:before{content:""}.nav-icon-moda-mobile:before{content:""}.nav-icon-mshops-mobile:before{content:""}.nav-icon-summary-mobile:before{content:""}.nav-icon-best-sellers-mobile:before{content:""}.nav-icon-live-mobile:before{content:""}html,body{height:100%;margin:0;padding:0;width:100%}body{border-collapse:collapse;display:table;background-color:#fff;font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif,sans-serif;font-size:14px;table-layout:fixed}.nav-header,[role=main],.nav-footer{display:table-row;width:100%}[role=main]{height:100%}[role=main] .nav-bounds{-moz-box-sizing:border-box;box-sizing:border-box}[role=main] .nav-bounds[class*=ch-box-]{border:none;background-color:rgba(0,0,0,0)}.nav-bounds{display:block;padding:0 10px;margin:0 auto}.nav-footer-navigation,.nav-footer-access,#nav-header-user-switch,[for=nav-header-user-switch],.nav-header-user-layer a:last-child{display:none}.nav-header{font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif;background-color:#ffdb15;color:#333;-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color:rgba(0,0,0,0);cursor:default;border-bottom:0 solid #fff}.nav-header .nav-bounds{position:relative;padding:50px 0 0}.nav-header,.nav-header *,.nav-header *:before,.nav-header *:after{-moz-box-sizing:border-box;box-sizing:border-box}.nav-header.nav-header-sticky{position:fixed;z-index:900}.nav-header.nav-header-sticky+main>.nav-bounds,.nav-header.nav-header-sticky+main>.nav-main-content,.nav-header.nav-header-sticky~main>.nav-bounds,.nav-header.nav-header-sticky~main>.nav-main-content{padding-top:50px}[for=nav-header-menu-switch]{position:absolute;top:0;right:0;height:50px;width:45px;cursor:pointer}#nav-header-menu-switch{display:none}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-top-bread{-webkit-transform:translate(0, 4px) rotate(40deg);transform:translate(0, 4px) rotate(40deg)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-patty{-webkit-transform:scale(0, 0);transform:scale(0, 0)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-bottom-bread{-webkit-transform:translate(0, -4px) rotate(-40deg);transform:translate(0, -4px) rotate(-40deg)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper #nav-header-menu{display:block}.hamburger-bottom-bread,.hamburger-patty,.hamburger-top-bread{position:absolute;display:block;width:20px;height:2px;background-color:#333;top:50%;border-radius:0;-webkit-transition:all 100ms ease-out;transition:all 100ms ease-out;left:12.5px}.hamburger-top-bread{margin-top:-5px}.hamburger-patty{margin-top:-1px}.hamburger-bottom-bread{margin-top:3px}#nav-header-menu:after,#nav-header-menu:before{border-style:solid;border-color:rgba(0,0,0,0);position:absolute;bottom:100%;-webkit-transform:translateY(1px);transform:translateY(1px);content:""}#nav-header-menu{background-color:#fff;display:none;position:relative}#nav-header-menu a{display:block;height:50px;padding:0 10px;font-size:16px;text-decoration:none;line-height:50px;color:#333;border-top:1px solid #eaeaea;position:relative}#nav-header-menu a [class^=nav-icon-]:before,#nav-header-menu a [class*=" nav-icon-"]:before{display:none}#nav-header-menu a:first-child {border-top-color:#fff}#nav-header-menu a:after{position:absolute;top:0;right:20px;display:block;font-family:"navigation";color:#404040;content:""}#nav-header-menu:before{border-bottom-color:#fff;border-width:8px;right:14.5px;pointer-events:none}#nav-header-menu:after{border-width:7px;border-bottom-color:#fff;right:15.5px;pointer-events:none}.nav-logo{background-image:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/logo__small.png");background-repeat:no-repeat;display:inline-block;height:28px;overflow:hidden;text-indent:-999px;width:39px;top:11px;position:absolute;left:10px}@media(-webkit-min-device-pixel-ratio: 2),(min-resolution: 192dpi),(min-resolution: 2dppx){.nav-logo{background-image:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/logo__small@2x.png");background-size:39px 28px}}.nav-search{position:absolute;left:59px;top:0;right:45px;height:50px;padding:8px 0}.nav-bounds-with-cart .nav-search{right:94px}input[type=text].nav-search-input,input[type=search].nav-search-input{border:0 1px 2px 0 rgba(0,0,0,.2);color:#333;font-size:16px;border-radius:2px;width:100%;height:100%;margin:0;background-color:#fff;padding:6px 6px 6px 35px;box-shadow:none;font-family:inherit}input[type=text].nav-search-input:focus,input[type=search].nav-search-input:focus{box-shadow:0 0 1px rgba(0,0,0,0);border:0 1px 2px 0 rgba(0,0,0,.2);padding:6px 6px 6px 35px;outline:0}input[type=text].nav-search-input.ch-autocomplete-loading,input[type=search].nav-search-input.ch-autocomplete-loading{background-position:right 30px center}button.nav-search-btn,button.nav-search-btn:focus{position:absolute;top:0;right:0;height:50px;padding:0;width:48px;background:none;border:none;font-size:22px;color:#666;line-height:1em}.nav-icon-close:before,.nav-icon-search:before{display:inline-block}.nav-icon-close span,.nav-icon-search span{display:none}.nav-footer{background-color:#eee;color:#999;font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif;font-size:14px;overflow:hidden}.nav-footer,.nav-footer *,.nav-footer *:before,.nav-footer *:after{-moz-box-sizing:border-box;box-sizing:border-box}.nav-footer a,.nav-footer a:link,.nav-footer a:visited,.nav-footer a:active{color:#333;text-decoration:none}.nav-footer .nav-footer-change-device,.nav-footer .nav-footer-change-device:link,.nav-footer .nav-footer-change-device:visited,.nav-footer .nav-footer-change-device:active{float:right;display:inline-block;line-height:14px;color:#666}.nav-footer-primaryinfo{margin:0 0 25px 0;border-top:.5px solid #ddd;padding-top:25px;font-size:14px}.nav-footer-secondaryinfo{font-size:12px}.nav-footer-copyright{font-size:inherit;display:inline-block;color:#666;vertical-align:top;width:60%;line-height:14px}.nav-footer-user{padding:25px 12px 20px 12px;border-radius:5px;text-align:center;overflow:hidden;font-size:0}.nav-footer-user .nav-footer-login,.nav-footer-user .nav-footer-registration{font-size:14px;line-height:20px;display:inline-block}.nav-footer-user .nav-footer-login{padding-right:.7em;border-right:.5px solid #ddd}.nav-footer-user .nav-footer-registration{padding-left:.7em}.nav-footer-user strong{font-weight:normal;color:#666;display:inline-block;max-width:100px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;vertical-align:bottom}.nav-footer-user.logged{font-size:14px}.nav-footer-user.logged>a{margin-left:12.5px}.nav-footer-secondary-user{padding:0px 12px 20px;border-radius:5px;text-align:center;margin-top:0;margin-bottom:0;font-size:14px}.nav-footer-downloadapp-banner{display:block;margin-top:32px;text-align:center;background-color:#ffdb08;padding:0 15px}.nav-footer-downloadapp-banner a.nav-footer-downloadapp{font-size:11px;vertical-align:middle;color:#666;padding-top:0;display:inline-block}.nav-footer-downloadapp-banner a.nav-footer-downloadapp:active,.nav-footer-downloadapp-banner a.nav-footer-downloadapp:link,.nav-footer-downloadapp-banner a.nav-footer-downloadapp:visited{color:#666}.nav-footer-downloadapp-banner .nav-icon.nav-icon-downloadapp{background:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/49x64-download-icon.png") top center no-repeat;background-size:49px 64px;display:inline-block;width:49px;height:64px;margin-top:-8px;margin-right:10px;vertical-align:middle}@media(-webkit-min-device-pixel-ratio: 2),(min-resolution: 2dppx),(min-resolution: 192dpi){.nav-footer-downloadapp-banner .nav-icon.nav-icon-downloadapp{background:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/97x127-download-icon@2x.png");background-size:49px 64px;width:49px;height:64px}}.nav-footer-info-wrapper{padding:0 10px}.nav-footer-hp{height:1px;width:1px;position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}.nav-footer-access{font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif}#nav-footer-access-switch{display:none}input[type=text].nav-search-input,input[type=search].nav-search-input{background-color:rgba(255,255,255,.7);border:none;position:relative;-moz-box-sizing:border-box;box-sizing:border-box;z-index:915}input[type=text].nav-search-input:focus,input[type=search].nav-search-input:focus{border:none}.nav-header-has-search-active input[type=text].nav-search-input:focus,.nav-header-has-search-active input[type=search].nav-search-input:focus{color:#666;box-shadow:none}input[type=text].nav-search-input::-webkit-input-placeholder, input[type=search].nav-search-input::-webkit-input-placeholder{color:rgba(0,0,0,.25);font-size:16px;font-weight:400}input[type=text].nav-search-input::-moz-placeholder, input[type=search].nav-search-input::-moz-placeholder{color:rgba(0,0,0,.25);font-size:16px;font-weight:400}input[type=text].nav-search-input::placeholder,input[type=search].nav-search-input::placeholder{color:rgba(0,0,0,.25);font-size:16px;font-weight:400}.nav-header-has-search-active input[type=text].nav-search-input,.nav-header-has-search-active input[type=search].nav-search-input{padding-right:45px}button.nav-search-btn,button.nav-search-btn:focus{left:-6px;right:initial;z-index:920}button.nav-search-btn span,button.nav-search-btn:focus span{display:none}.nav-header-has-search-active button.nav-search-btn,.nav-header-has-search-active button.nav-search-btn:focus{display:none}.nav-search-btn .nav-icon-search{font-size:19px}.nav-search-btn .nav-icon-search:before{content:"";vertical-align:bottom}.nav-header .nav-header-btn{position:absolute;top:3px;left:0;padding:20px;text-indent:-200%;border:0;box-shadow:none;background:none}.nav-header .nav-header-btn:before{font-family:navigation;font-size:20px;line-height:1;color:#333;position:absolute;left:10px;top:10px;text-indent:0}.nav-header .nav-header-btn--no-arrow{text-indent:0;border:1px solid rgba(0,0,0,.15);padding:0 10px;left:10px;top:10px}.nav-header .nav-header-btn--no-arrow:before{display:none}.nav-header .nav-cart{color:#333}.nav-search{z-index:910;will-change:left;-webkit-transition:left .15s ease-out;transition:left .15s ease-out}.nav-search:before{content:"";display:none;position:absolute;top:0;left:-10px;right:-10px;height:100%;background-color:#fff;opacity:0;will-change:opacity;-webkit-transition:opacity .15s ease-out;transition:opacity .15s ease-out}.nav-header-has-search-active .nav-search:before{display:block}.nav-header--is-enter .nav-search:before{opacity:1}.nav-header--is-leave .nav-search:before{opacity:0}.nav-search .nav-category{z-index:917}.nav-search-close-btn,.nav-search-close-btn:focus,.nav-search-clear-btn,.nav-search-clear-btn:focus{font-size:22px;line-height:1;color:#333;border:0;background:none;display:none;position:absolute;top:0;z-index:920;height:50px;padding:0;width:48px}.nav-search-close-btn,.nav-search-close-btn:focus{top:1px;left:-4px;opacity:0;will-change:opacity;-webkit-transition:opacity .15s ease-out;transition:opacity .15s ease-out}.nav-search-close-btn:before,.nav-search-close-btn:focus:before{content:"";font-family:navigation}.nav-header-has-search-active .nav-search-close-btn,.nav-header-has-search-active .nav-search-close-btn:focus{display:block}.nav-header--is-enter .nav-search-close-btn,.nav-header--is-enter .nav-search-close-btn:focus{opacity:1}.nav-header--is-leave .nav-search-close-btn,.nav-header--is-leave .nav-search-close-btn:focus{opacity:0}.nav-search-clear-btn,.nav-search-clear-btn:focus{right:-4px}.nav-search-clear-btn:before{content:"";font-family:"navigation";vertical-align:bottom}.nav-search--has-text .nav-search-clear-btn{display:block}.nav-header--is-leave .nav-search-clear-btn{display:none}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-top-bread,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-top-bread{-webkit-transform:translate(0, 8px) rotate(40deg);transform:translate(0, 8px) rotate(40deg)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-bottom-bread,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-bottom-bread{-webkit-transform:translate(0, -8px) rotate(-40deg);transform:translate(0, -8px) rotate(-40deg)}.hamburger-top-bread{margin-top:-6.6666666667px}.hamburger-patty{margin-top:-.6666666667px}.hamburger-bottom-bread{margin-top:5.3333333333px}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-top-bread,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-top-bread{-webkit-transform:translate(0, 6px) rotate(40deg);transform:translate(0, 6px) rotate(40deg)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-patty,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-patty{-webkit-transform:scale(0, 0);transform:scale(0, 0)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-bottom-bread,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-bottom-bread{-webkit-transform:translate(0, -6px) rotate(-40deg);transform:translate(0, -6px) rotate(-40deg)}#nav-header-menu{padding:16px 0}#nav-header-menu a{padding:0 16px 0 72px;height:50px;line-height:50px;border:none}#nav-header-menu a.notifications-widget,#nav-header-menu a.option-help,#nav-header-menu a.option-register,#nav-header-menu a.bookmarks-widget{border-left:none}#nav-header-menu a.option-my-account:after{content:""}#nav-header-menu a.option-notifications:after{content:""}#nav-header-menu a.option-logout:after{content:""}#nav-header-menu a.option-bookmarks:after{content:""}#nav-header-menu a.option-sell:after{content:""}#nav-header-menu a.option-help:after{content:""}#nav-header-menu a.option-login:after{content:""}#nav-header-menu a.option-register:after{content:""}#nav-header-menu a:after{left:24px;font-size:24px}.nav-bounds.nav-bounds-with-cart [for=nav-header-menu-switch]{right:45px}.nav-bounds-with-cart #nav-header-menu:before{right:59.5px}.nav-bounds-with-cart #nav-header-menu:after{right:60.5px}.nav-cart{display:none}.nav-cart.nav-cart-full .nav-icon-cart:before{content:""}.nav-cart.nav-cart-empty .nav-icon-cart:before{content:""}.nav-bounds.nav-bounds-with-cart .nav-cart{display:block;position:absolute;right:0;top:0;height:50px;width:45px;text-align:center}.nav-bounds.nav-bounds-with-cart .nav-cart :before{font-size:18px;line-height:50px}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart{margin-left:-8px}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart-quantity{position:absolute;right:14px;top:11px;font-size:11px;line-height:15px;width:20px;text-align:center}.nav-bounds.nav-bounds-with-cart .nav-cart.nav-cart-empty .nav-icon-cart-quantity{display:none}#mlMsg{margin:0 auto;-moz-box-sizing:border-box;box-sizing:border-box;max-width:1220px}#mlMsg .content{padding-right:20px}#mlMsg p{margin:0}#mlMsg #mlMsgRemove{width:15px;height:16px;position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);right:12px;cursor:pointer}@-webkit-keyframes nav-header-notification-pulse{0%{-webkit-transform:scale(0);transform:scale(0);opacity:0}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes nav-header-notification-pulse{0%{-webkit-transform:scale(0);transform:scale(0);opacity:0}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.nav-header-notifications-badge{position:absolute;padding:0 4px;background:#f64c41;color:#fff;border-radius:2px;font-size:11px;text-align:center;min-width:18px;height:18px;line-height:18px;pointer-events:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-moz-font-feature-settings:"liga","kern";-webkit-text-size-adjust:100%}.nav-header-menu-wrapper>.nav-header-notifications-badge{top:8px;right:8px;-webkit-animation-name:nav-header-notification-pulse;animation-name:nav-header-notification-pulse;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:cubic-bezier(0.4, 0, 0.2, 1);animation-timing-function:cubic-bezier(0.4, 0, 0.2, 1);-webkit-animation-iteration-count:1;animation-iteration-count:1}.nav-bounds-with-cart .nav-header-menu-wrapper>.nav-header-notifications-badge{right:53px}nav .nav-header-notifications-badge{top:16px;right:20px}.nav-header-notifications-badge:empty,#nav-header-menu-switch:checked+.nav-header-menu-wrapper>.nav-header-notifications-badge,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper>.nav-header-notifications-badge{display:none;-webkit-animation-name:none;animation-name:none}.ui-message{background-color:#f5f5f5;color:#666;font-size:14px;line-height:1.25;padding:20px;text-align:center;position:relative;width:100%}.ui-message__icon{float:left;margin-right:5px}.ui-message__icon .ui-icon{vertical-align:top}.ui-message__text{overflow:auto}.ui-message--info{background-color:#f5f5f5;color:#666}.ui-message--success{background-color:#64c574;color:#fff}.ui-message__text{overflow:hidden;display:inline}.ui-message__content{display:inline}.ui-message--has-icon.ui-message--warn .ui-message__icon:after{content:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg width='16px' height='16px' viewBox='0 0 68 68' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate%28-414.000000, -365.000000%29'%3E%3Cg transform='translate%28414.000000, 365.000000%29'%3E%3Ccircle fill='rgba(245, 120, 25, 0.999999)' cx='34' cy='34' r='34'%3E%3C/circle%3E%3Cpolygon fill='%23FFFFFF' points='30 16 38 16 37 38 31 38'%3E%3C/polygon%3E%3Ccircle fill='%23FFFFFF' cx='34' cy='48' r='4'%3E%3C/circle%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A")}.ui-message--has-icon.ui-message--default .ui-message__icon:after,.ui-message--has-icon.ui-message--info .ui-message__icon:after{content:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg width='16px' height='16px' viewBox='0 0 16 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate%28-22.000000, -180.000000%29'%3E%3Cg transform='translate%280.000000, 165.000000%29'%3E%3Cg transform='translate%2822.000000, 15.000000%29'%3E%3Ccircle id='circle' fill='rgba(25, 95, 244, 0.999999)' cx='8' cy='8' r='8'%3E%3C/circle%3E%3Cpolygon id='rectangle' fill='%23FFFFFF' points='7 12 9 12 8.75 7 7.25 7'%3E%3C/polygon%3E%3Ccircle id='circle' fill='%23FFFFFF' cx='8' cy='5' r='1'%3E%3C/circle%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A")}.ui-message--has-icon.ui-message--success .ui-message__icon:after{content:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Ccircle%20cx%3D%228%22%20cy%3D%228%22%20r%3D%228%22%20fill%3D%22%23000%22%20fill-opacity%3D%22.208%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M12.4%206L11%204.6l-4%204-2-2L3.6%208%207%2011.4z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")}.ui-message--has-icon.ui-message--error .ui-message__icon:after{content:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg width='16px' height='16px' viewBox='0 0 68 68' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='HIGH-final' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate%28-416.000000, -368.000000%29'%3E%3Cg transform='translate%28270.000000, 256.000000%29'%3E%3Cg transform='translate%28146.000000, 112.000000%29'%3E%3Ccircle fill='rgba(208, 1, 27, 0.999999)' cx='34' cy='34' r='34'%3E%3C/circle%3E%3Crect opacity='0.3' x='17' y='17' width='34' height='34'%3E%3C/rect%3E%3Cpolygon fill='%23FFFFFF' points='20 43.9999997 24.0000003 48 48 24.0000003 43.9999997 20'%3E%3C/polygon%3E%3Cpolygon fill='%23FFFFFF' transform='translate%2834.000000, 34.000000%29 scale%28-1, 1%29 translate%28-34.000000, -34.000000%29 ' points='20 43.9999997 24.0000003 48 48 24.0000003 43.9999997 20'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A")}.ui-message--warn,.ui-message--error,.ui-message--success{color:#fff}.ui-message--warn{background-color:#fbab60}.ui-message--error{background-color:#ff5a5f}.ui-message--success{background-color:#39b54a}.ui-message{border-radius:3px;text-align:left;padding-right:48px}.ui-message__icon{margin-right:8px}.ui-message__close{position:relative;width:16px;height:16px;cursor:pointer;padding:24px;position:absolute;top:50%;right:0;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.ui-message__close:after,.ui-message__close:before{position:absolute;left:8px;top:0;content:"";height:16px;width:2px;background-color:#fff;cursor:pointer}.ui-message__close:before{-webkit-transform:rotate(45deg) translateX(20px);transform:rotate(45deg) translateX(20px)}.ui-message__close:after{-webkit-transform:rotate(-45deg) translateY(20px);transform:rotate(-45deg) translateY(20px)}.ui-message--info{background-color:#5c95ff;color:#fff}.ui-message.ui-message--post-registration,.ui-message.ui-message--overdue-loans{border-radius:0;padding:0;text-align:left}.ui-message.ui-message--post-registration .ui-message--bounds,.ui-message.ui-message--overdue-loans .ui-message--bounds{-moz-box-sizing:border-box;box-sizing:border-box;max-width:1200px;margin:0 auto;position:relative}.ui-message.ui-message--post-registration .ui-message--bounds{padding:20px 46px 20px 34px}.ui-message.ui-message--post-registration .ui-message--bounds .ui-message__icon{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);left:10px}.ui-message.ui-message--post-registration .ui-message--bounds .ui-message__close{right:-6px;-moz-box-sizing:border-box;box-sizing:border-box}.ui-message.ui-message--post-registration a{color:#fff;text-decoration:underline}.ui-message.ui-message--overdue-loans{background-color:#ff5a5f;color:#fff;font-size:0}.ui-message.ui-message--overdue-loans .ui-message--bounds{padding:22px 120px 22px 18px}.ui-message.ui-message--overdue-loans .ui-message__text{display:inline !important}.ui-message.ui-message--overdue-loans .ui-message--overdue-loans-cta{font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif;display:inline-block;position:absolute;top:50%;right:18px;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:84px;height:36px;line-height:36px;color:#fff;border:solid 1px #fff;border-radius:4px;text-align:center;text-decoration:none;-moz-box-sizing:border-box;box-sizing:border-box}.ui-message.ui-message--overdue-loans .ui-message__text,.ui-message.ui-message--overdue-loans .ui-message--overdue-loans-cta{font-family:"Proxima Nova",-apple-system,Roboto,Arial,sans-serif !important;font-size:14px}#nav-header-overdue-loans{text-decoration:none}.kyc-active-campaign__nav-header{text-decoration:none}.kyc-active-campaign__nav-header .kyc-active-campaign__message{background-color:#ff5a5f;color:#fff;border-radius:0;padding:0;text-align:left}.kyc-active-campaign__nav-header .kyc-active-campaign__message .kyc-active-campaign__bounds{-moz-box-sizing:border-box;box-sizing:border-box;max-width:1200px;margin:0 auto;position:relative;padding:13px;font-size:14px}.kyc-active-campaign__nav-header .kyc-active-campaign__message .kyc-active-campaign__bounds .kyc-active-campaign__text{display:inline}.kyc-active-campaign__nav-header .kyc-active-campaign__message .kyc-active-campaign__bounds .kyc-active-campaign__cta{display:inline-block;margin-left:10px;padding:8px 20px;color:#fff;border:solid 1px #fff;border-radius:4px}.nav-link-tag{font-size:11px;font-weight:600;color:#fff;border-radius:8px;background-color:#3483fa;line-height:4px;padding:6px;display:inline-block;text-transform:uppercase}.nav-link-tag--small{font-size:8px;padding:1px 3px;line-height:1em}.nav-bounds.nav-bounds-with-cart .nav-cart{overflow:hidden}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart-quantity>b{font-weight:inherit}.nav-header{background-color:#fff159;border:0;position:relative}.nav-header:before{content:"";position:absolute;width:100%;height:100px;left:0;top:0;box-shadow:0 1px 0 0 rgba(0,0,0,.1)}.nav-header.nav-header-plusclean:before,.nav-header.nav-header-pluslite:before{height:56px}.nav-header .ml-count{font-weight:600}#nav-header-menu-mobile{display:none}.nav-footer-user-info{border-top:1px solid #ededed}.nav-footer-copyright{font-size:12px;width:auto}.nav-footer-navigation a{color:#333;padding:0 8px;border:0}.nav-footer-navigation a:link,.nav-footer-navigation a:visited{color:#333}.nav-footer-navigation a:hover,.nav-footer-navigation a:active,.nav-footer-navigation a:focus{color:#000}input[type=text].nav-search-input,input[type=search].nav-search-input{background-color:#fff}input[type=text].nav-search-input::-webkit-input-placeholder, input[type=search].nav-search-input::-webkit-input-placeholder{color:#bbb;font-weight:200}input[type=text].nav-search-input::-moz-placeholder, input[type=search].nav-search-input::-moz-placeholder{color:#bbb;font-weight:200}input[type=text].nav-search-input::placeholder,input[type=search].nav-search-input::placeholder{color:#bbb;font-weight:200}input[type=search].nav-search-input{-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=search].nav-search-input::-ms-clear,input[type=search].nav-search-input::-ms-reveal{display:none}input[type=search].nav-search-input::-webkit-search-decoration,input[type=search].nav-search-input::-webkit-search-cancel-button,input[type=search].nav-search-input::-webkit-search-results-button,input[type=search].nav-search-input::-webkit-search-results-decoration{display:none}.nav-header:before,.nav-header.nav-header-plusclean:before,.nav-header.nav-header-pluslite:before{height:48px}.nav-footer{background-color:#fff}.nav-footer-mobile-links-bounds{padding:26px 10%;font-size:0}.nav-footer-mobile-links-bounds a{display:inline-block;width:50%;font-size:14px;line-height:1.3em;color:#333;white-space:normal;vertical-align:middle;margin:.75em 0;padding-right:10px}.nav-footer-mobile-links-bounds a:nth-child(2n){padding-right:0}.nav-footer-mobile-links{word-break:break-word}.nav-footer-mobile-links-bounds+.nav-bounds,.nav-footer-mobile-links-bounds:first-child,.nav-bounds{padding:22px 10%}.nav-bounds .nav-footer-user{text-align:left;padding:0;margin:0 0 12px 0;overflow:visible;font-size:0;color:#333;height:25px;line-height:25px}.nav-bounds .nav-footer-user .nav-icon-user{vertical-align:middle}.nav-bounds .nav-footer-user strong{color:#333;font-size:16px;font-weight:normal;vertical-align:middle;max-width:none}.nav-bounds .nav-footer-user.logged a{display:inline-block;margin:0}.nav-bounds .nav-footer-user.logged .nav-footer-avatar-user-img{height:25px;width:25px;border-radius:50%;margin-right:6px;vertical-align:middle}.nav-bounds .nav-footer-user.logged .nav-icon-user{display:inline-block;font-size:23px}.nav-bounds .nav-footer-user.logged .nav-icon-user:before{content:""}.nav-bounds .nav-footer-user .nav-footer-login,.nav-bounds .nav-footer-user .nav-footer-registration{font-size:16px;color:#3484fa;font-weight:300}.nav-bounds .nav-footer-user .nav-footer-login{padding-right:10px;border-right:solid 1px #eaeaea}.nav-bounds .nav-footer-user .nav-footer-registration{padding-left:10px}.nav-footer-info-wrapper{text-align:left;margin:0;padding:0}.nav-footer-info-wrapper .nav-footer-primaryinfo{border:none;margin:0;padding:0}.nav-footer-info-wrapper .nav-footer-primaryinfo .nav-footer-copyright{font-size:12px;color:#999;font-weight:300}.nav-menu,.nav-search .nav-category,.exhibitor__picture,a.option-logout{display:none !important}.hamburger-top-bread,.hamburger-patty,.hamburger-bottom-bread{height:1px}.hamburger-bottom-bread{margin-top:6px}.hamburger-top-bread{margin-top:-8px}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-top-bread,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-top-bread{-webkit-transform:translate(0, 8px) rotate(45deg);transform:translate(0, 8px) rotate(45deg)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-patty,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-patty{-webkit-transform:scale(0, 0);transform:scale(0, 0)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper .hamburger-bottom-bread,#nav-header-menu-switch:checked~header .nav-header-menu-wrapper .hamburger-bottom-bread{-webkit-transform:translate(0, -6px) rotate(-45deg);transform:translate(0, -6px) rotate(-45deg)}#nav-header-menu-switch:checked+.nav-header-menu-wrapper #nav-header-menu{display:none}.ui-loading--inline{position:relative}.ui-loading--block{position:absolute;z-index:7}.ui-loading--block .ui-loading__container{z-index:8}.ui-loading--fullscreen{position:fixed;z-index:1022}.ui-loading--fullscreen .ui-loading__container{z-index:1023}.ui-loading--block,.ui-loading--fullscreen,.ui-loading__mask{width:100%;height:100%;top:0;left:0}.ui-loading--block .ui-loading__container,.ui-loading--fullscreen .ui-loading__container{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}.ui-loading__mask{position:absolute;background-color:rgba(255,255,255,.9)}.ui-loading--inline .ui-loading__mask{display:none}.ui-loading__spinner{width:32px;height:32px;-webkit-animation:loading-rotate 2s linear infinite;animation:loading-rotate 2s linear infinite;-webkit-transform-origin:center center;transform-origin:center center;position:relative}.ui-loading__spinner--small{width:32px;height:32px}.ui-loading__spinner--large{width:64px;height:64px}.ui-loading__spinner-path{stroke-dasharray:89,200;stroke-dashoffset:-10;-webkit-animation:loading-dash 1.5s ease-in-out infinite,loading-color 6s ease-in-out infinite;animation:loading-dash 1.5s ease-in-out infinite,loading-color 6s ease-in-out infinite;stroke-linecap:round;stroke:#3483fa}@-webkit-keyframes loading-rotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes loading-rotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes loading-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}100%{stroke-dasharray:89,200;stroke-dashoffset:-124px}}@keyframes loading-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}100%{stroke-dasharray:89,200;stroke-dashoffset:-124px}}@-webkit-keyframes loading-color{100%,0%{stroke:#3483fa}}@keyframes loading-color{100%,0%{stroke:#3483fa}}a.nav-mobile-button{font-size:14px;font-weight:600;line-height:1;padding:12px 0;text-align:center;border-radius:4px;font-size:14px;font-weight:600;border:1px solid #3484fa;cursor:pointer;box-shadow:0 0 0 0 #fff;text-decoration:none;display:inline-block;width:48%}@media(min-width: 450px){a.nav-mobile-button{width:40%}}@media(min-width: 768px){a.nav-mobile-button{width:44%}}a.nav-mobile-button.nav-mobile-button-outline{background:#fff;color:#3484fa}a.nav-mobile-button.nav-mobile-button-filled{background:#3484fa;color:#fff;margin-right:4px}#nav-header-menu-mobile{background:#fff;margin:0;padding:0;color:#333;position:relative;display:none;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);border-top:solid 1px #e5d850}#nav-header-menu-mobile:before{content:"";position:absolute;top:-6px;right:17px;width:10px;height:10px;-webkit-transform:rotate(45deg);transform:rotate(45deg);background:#fff;border-top:solid 1px #e5d850;border-left:solid 1px #e5d850}#nav-header-menu-mobile #nav-header-menu-mobile-user-info{border-bottom:solid 1px #e6e6e6;padding:18px 24px;-moz-box-sizing:content-box;box-sizing:content-box;height:52px}#nav-header-menu-mobile #nav-header-menu-mobile-user-info.nav-header-menu-mobile-guest{height:auto;padding:18px 24px}#nav-header-menu-mobile #nav-header-menu-mobile-user-info #nav-header-mobile-avatar-form{position:relative;width:40px;height:40px;line-height:42px;text-align:center;background:#ededed;border-radius:50%;color:#bbb;font-size:25px;float:left;margin-right:12px;margin-top:6px}#nav-header-menu-mobile #nav-header-menu-mobile-user-info #nav-header-mobile-avatar-form input{opacity:0;position:absolute;left:-1000px}#nav-header-menu-mobile #nav-header-menu-mobile-user-info #nav-header-mobile-avatar-form img{width:100%;height:100%;border-radius:50%;border:solid 1px #f5f5f5;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}#nav-header-menu-mobile #nav-header-menu-mobile-user-info #nav-header-mobile-avatar-form svg{display:none;position:absolute;top:-12px;left:-12px;width:64px;height:64px}#nav-header-menu-mobile #nav-header-menu-mobile-user-info #nav-header-mobile-avatar-form svg path{stroke-width:4}#nav-header-menu-mobile #nav-header-menu-mobile-user-info.nav-header-menu-mobile-with-loyalty #nav-header-mobile-avatar-form{margin-right:20px}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-icon-create-account-mobile{margin-left:2px}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-menu-mobile-guest-logo{height:56px;width:56px;background-color:#ededed;border-radius:50%;float:left;margin-right:16px;text-align:center}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-menu-mobile-guest-icon{margin-top:9px}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-menu-mobile-guest-title{font-size:16px;font-weight:600;margin:4px 0;line-height:1}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-menu-mobile-guest-text{font-size:14px;color:rgba(0,0,0,.45);margin:0;line-height:1.14}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-menu-mobile-guest-buttons{margin-top:14px}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-mobile-loyalty-link{font-size:14px;text-decoration:none;font-weight:400}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-mobile-loyalty-link-icon{margin-left:3px}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-mobile-loyalty-level-1{stroke:#20c261;color:#20c261}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-mobile-loyalty-level-2{stroke:#1ac2b0;color:#1ac2b0}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-mobile-loyalty-level-3{stroke:#00a4d5;color:#00a4d5}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-mobile-loyalty-level-4{stroke:#4063ea;color:#4063ea}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-mobile-loyalty-level-5{stroke:#8700ff;color:#8700ff}#nav-header-menu-mobile #nav-header-menu-mobile-user-info .nav-header-mobile-loyalty-level-6{stroke:#a90f90;color:#a90f90}#nav-header-menu-mobile #nav-header-menu-mobile-user-info.nav-header-menu-mobile-with-loyalty #nav-header-mobile-avatar-form svg{display:inline-block}#nav-header-menu-mobile #nav-header-menu-mobile-user-info #nav-header-user-greetings{font-size:16px;font-weight:600;line-height:1.25;margin:5px 0 0 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#nav-header-menu-mobile #nav-header-menu-mobile-user-info.nav-header-menu-mobile-with-loyalty #nav-header-user-greetings{font-size:14px;line-height:1.29;color:rgba(0,0,0,.45);font-weight:400}#nav-header-menu-mobile #nav-header-menu-mobile-user-info #nav-header-user-mail-or-level{font-size:14px;line-height:1.29;color:rgba(0,0,0,.45);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#nav-header-menu-mobile #nav-header-menu-mobile-user-info.nav-header-menu-mobile-with-loyalty #nav-header-user-mail-or-level .nav-header-mobile-loyalty-link{line-height:1.25;font-size:16px;font-weight:600;color:rgba(0,0,0,.8)}#nav-header-menu-mobile #nav-header-menu-mobile-user-info.nav-header-menu-mobile-with-loyalty #nav-header-user-mail-or-level path{stroke:rgba(0,0,0,.8)}#nav-header-menu-mobile ul{position:relative;background:#fff;list-style:none;margin:0;padding:16px 0;border-bottom:solid 1px #e6e6e6;font-size:14px}#nav-header-menu-mobile ul li{display:block;padding:4px 0;margin:0}#nav-header-menu-mobile ul li:last-of-type{margin-bottom:0}#nav-header-menu-mobile ul li.nav-mobile-menu-selected{background:#f7f7f7}#nav-header-menu-mobile ul li.nav-mobile-menu-selected a{color:#3483fa}#nav-header-menu-mobile ul li a{display:block;min-height:39px;line-height:23px;text-decoration:none;padding:8px 20px 8px 26px;margin:0;color:rgba(0,0,0,.8)}#nav-header-menu-mobile ul li a i{font-size:20px;width:20px;height:20px;display:inline-block;margin-right:18px;float:left}#nav-header-menu-mobile ul li a i.nav-icon-bookmarks-mobile{font-size:18px;height:18px}#nav-header-menu-mobile ul li a i.nav-icon-deals-mobile{font-size:22px;height:23px;margin-top:2px}#nav-header-menu-mobile ul li a i.nav-icon-points-discounts-mobile{font-size:22px;height:22px}#nav-header-menu-mobile ul li a span{margin:0;font-weight:600}#nav-header-menu-mobile ul li a span .nav-header-notifications-badge{position:static;display:inline-block;margin-left:10px}#nav-header-menu-mobile ul li a span .nav-header-notifications-badge:empty{display:none}#nav-header-menu-mobile ul li a span .nav-header-badge{border-radius:4px;background-color:#3483fa;display:inline-block;margin:2px 0 0 10px;color:#fff;padding:0 8px;line-height:20px;font-size:10px;text-transform:uppercase;vertical-align:top}@media(max-width: 359px){#nav-header-menu-mobile ul li a span .nav-header-badge{text-indent:-200px;overflow:hidden;width:10px;height:10px;padding:0;border-radius:50%;margin-top:8px}}#nav-header-menu-mobile ul li a .nav-link-tag{margin-left:9px}#nav-header-menu-mobile ul #nav-header-menu-mobile-account-money a{height:62px;line-height:38px}#nav-header-menu-mobile ul #nav-header-menu-mobile-account-money p{padding-left:41px;line-height:23px}#nav-header-menu-mobile ul #nav-header-menu-mobile-account-money #nav-header-menu-mobile-account-money-detail{display:block;color:#797979;font-size:14px;line-height:1.14}#nav-header-menu-mobile ul #nav-header-menu-mobile-account-money #nav-header-menu-mobile-account-money-detail svg{width:20px;height:20px}#nav-header-menu-switch:checked~header .nav-header-menu-wrapper #nav-header-menu-mobile{display:block}#nav-header-menu-switch:checked~header .nav-bounds-with-cart .nav-header-menu-wrapper #nav-header-menu-mobile:before,.nav-bounds-with-cart #nav-header-menu-switch:checked+.nav-header-menu-wrapper #nav-header-menu-mobile:before{right:62px}.nav-bounds.nav-bounds-with-cart .nav-cart .nav-icon-cart-quantity{right:12px}.nav-icon-search{color:#aaa}.nav-cart.nav-cart-full .nav-icon-cart:before{content:""}.nav-cart.nav-cart-empty .nav-icon-cart:before{content:""}.nav-search input[type=text].nav-search-input,.nav-search input[type=search].nav-search-input{padding-top:5px;padding-bottom:7px}input[type=text].nav-search-input,input[type=search].nav-search-input{background-color:#fff;box-shadow:0 1px 2px 0 rgba(0,0,0,.1)}input[type=text].nav-search-input::-webkit-input-placeholder, input[type=search].nav-search-input::-webkit-input-placeholder{color:rgba(0,0,0,.25)}input[type=text].nav-search-input::-moz-placeholder, input[type=search].nav-search-input::-moz-placeholder{color:rgba(0,0,0,.25)}input[type=text].nav-search-input::placeholder,input[type=search].nav-search-input::placeholder{color:rgba(0,0,0,.25)}.nav-icon-search:before{-webkit-transform:translateY(-2px);transform:translateY(-2px)}.nav-search .nav-search-btn{padding-bottom:2px}.nav-search .nav-search-btn .nav-icon-search{font-size:13px;line-height:18px;display:inline}.nav-search .nav-search-btn .nav-icon-search:before{content:""}.nav-footer .nav-footer-downloadapp-banner{margin:0;padding:10px 10%;background:#fff159;border-top:solid 1px #f2e454;border-bottom:solid 1px #f2e454;text-align:left;white-space:nowrap;overflow:hidden}.nav-footer .nav-footer-downloadapp-banner a.nav-footer-downloadapp{font-size:16px;line-height:1.11;color:#333}.nav-footer .nav-footer-downloadapp-banner .nav-icon.nav-icon-downloadapp{margin:0 16px 0 0;display:inline-block;width:50px;height:50px;border-radius:5.8px;box-shadow:0 2px 5px 0 rgba(0,0,0,.18);vertical-align:middle;background-image:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/logo__small.png");background-repeat:no-repeat;background-position:center center;background-size:39px 28px}@media(-webkit-min-device-pixel-ratio: 2),(min-resolution: 192dpi),(min-resolution: 2dppx){.nav-footer .nav-footer-downloadapp-banner .nav-icon.nav-icon-downloadapp{background-image:url("https://http2.mlstatic.com/frontend-assets/ml-web-navigation/ui-navigation/5.19.1/mercadolibre/logo__small@2x.png");background-size:39px 28px}}.nav-footer .nav-footer-downloadapp-banner .nav-icon.nav-icon-downloadapp:before{content:none}.nav-footer .nav-bounds a.nav-footer-change-device{display:none}@media(min-width: 360px){.nav-footer .nav-footer-downloadapp-banner a.nav-footer-downloadapp{font-size:18px}}@media(min-width: 475px){.nav-footer-mobile-links-bounds a{width:33%}.nav-footer-mobile-links-bounds a:nth-child(2n){padding-right:10px}.nav-footer-mobile-links-bounds a:nth-child(3n){padding-right:0}}.nav-header .nav-logo{background-size:44px 31px;width:44px;height:32px;top:8px;left:10px}.nav-header .nav-bounds{padding:48px 0 0}.nav-header .nav-bounds .nav-search{height:48px;left:64px}.nav-header--is-enter .nav-bounds .nav-search{left:10px;right:10px}a.nav-header-cp-anchor,a.nav-header-cp-anchor:hover,a.nav-header-cp-anchor:visited,a.nav-header-cp-anchor:active,a.nav-header-cp-anchor:link{color:#736c28;text-decoration:none;display:block;height:39px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;position:relative;padding:1px 30px 0 28px;line-height:38px;font-size:13px;box-shadow:0 1px 0px 0 rgba(0,0,0,.1)}a.nav-header-cp-anchor:before,a.nav-header-cp-anchor:hover:before,a.nav-header-cp-anchor:visited:before,a.nav-header-cp-anchor:active:before,a.nav-header-cp-anchor:link:before{font-family:navigation;content:"";position:absolute;left:10px;font-size:16px;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}a.nav-header-cp-anchor:after,a.nav-header-cp-anchor:hover:after,a.nav-header-cp-anchor:visited:after,a.nav-header-cp-anchor:active:after,a.nav-header-cp-anchor:link:after{position:absolute;top:16px;right:12px;border-style:solid;border-width:0 2px 2px 0;border-color:#c1b74d;content:"";display:inline-block;height:7px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);width:7px}#nav-header-menu-switch:checked+.nav-header .nav-header-cp-anchor{display:none}.nav-footer-access-icon{margin-left:8px}@media(max-width: 355px){.nav-footer-access-icon{margin-left:4px}}.nav-footer-navigation{margin-bottom:8px}.nav-footer-navigation a{padding:0 4px}.nav-footer-navigation a:first-child{padding-left:0}.nav-footer-navigation--mobile{display:block}.nav-footer-secondaryinfo{margin:0 0 4px}@supports((display: -webkit-flex) or (display: flex)){body{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;min-height:100vh;height:auto}[role=main]{height:auto;-webkit-flex-grow:1;flex-grow:1}.nav-header,[role=main],.nav-footer{display:block}body,[role=main]{padding:0 !important}.nav-footer{overflow:unset}.nav-footer-access-content{margin-top:0}.nav-footer-access{margin-top:64px}}*:focus:not(:focus-visible){outline:0}</style>
<style>a.nav-skip-to-main-content{border:0;border-bottom-left-radius:4px;border-bottom-right-radius:4px;position:absolute;color:#fff;font-weight:100;text-decoration:none;text-align:center;background:#3484fa;top:0;left:0;z-index:999;cursor:pointer;height:0;padding:0;line-height:normal}a.nav-skip-to-main-content:focus{border:1px solid #3484fa;height:54px;padding:8px 8px}.nav-skip-to-main-content>.nav-skip-to-main-content__content{display:none}.nav-skip-to-main-content:focus>.nav-skip-to-main-content__content{display:block;padding:8px;border:1px solid #fff;border-radius:4px}</style>
<style>#nav-header-menu-mobile #nav-header-menu-mobile-user-info{padding:12px 16px!important}.user-menu__coins{margin:0 20px;background:#e5e5e5;border-radius:16px}#nav-header-menu .user-menu__coins label>.user-menu__coins-main{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0;padding:11px 12px 11px 16px;cursor:auto;-ms-flex-pack:distribute;justify-content:space-around}.user-menu__coins-mobile{border-radius:16px;margin:0;background:#ffffff80;padding:0;height:auto;-webkit-transition:height .5s,width .5s 0.75s;-o-transition:height .5s,width .5s 0.75s;transition:height .5s,width .5s 0.75s}#nav-header-menu .user-menu__coins .user-menu__coins-main-link.user-menu__coins-link-label{color:#3483fa;font-weight:400;font-size:14px;line-height:18px;margin:0;padding:0 0 12px}#nav-header-menu .user-menu__one-column .user-menu__coins .user-menu__coins-main-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0;padding:11px 12px 11px 18px;cursor:auto}.user-menu__coins .user-menu__coins-main-mobile{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0 12px;height:40px;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.user-menu__coins-mp{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center}#nav-header-menu .user-menu__one-column .user-menu__coins .user-menu__coins-main-item.user-menu__coins-main-item-padding{padding:8px 12px 10px 18px}#nav-header-menu .user-menu__one-column .user-menu__coins .user-menu__coins-main-cursor{cursor:pointer}.user-menu__coins-icon{width:22px;margin-right:18px}.user-menu__coins-icon-mobile{width:20px;margin-right:18px}.user-menu__coins-icon-title{margin-right:16px;width:24px;height:24px;-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.user-menu__coins-icon-item{-ms-flex-item-align:start;align-self:flex-start;margin-right:18px;width:20px;height:20px}.user-menu__user-badge-email__chevron.user-menu__coins-title__chevron{color:#737373;-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg);position:absolute;top:-2px;right:4px;-webkit-transition:195ms;-o-transition:195ms;transition:195ms}.user-menu__coins-title{font-size:14px;color:#1a1a1a;margin:0;font-weight:600;line-height:18px;display:-webkit-box;display:-ms-flexbox;display:flex}.user-menu__coins-title-weight{font-weight:400}.user-menu__coins-title-image-align{-ms-flex-item-align:start;align-self:flex-start}.user-menu__coins-item{width:100%;-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.user-menu__coins-item-core{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;width:100%;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.user-menu__coins-each-items{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;width:100%;-webkit-box-align:start;-ms-flex-align:start;align-items:start;padding:11px 12px}#nav-header-menu-mobile-user-info .user-menu__coins .user-menu__coins-info ul{border-bottom:0 solid #fff;padding:0}.user-menu__coins-item-container-title{width:100%;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline;padding-right:10px;position:relative}.user-menu__coins-title-mobile{padding:11px 0}.user-menu__coins-super-index{font-size:9px;vertical-align:top;line-height:22px}.user-menu__coins-container-item-info{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%}.user-menu__coins-percentage{font-size:11px;padding:3px 6px 2px;border-radius:8px;font-weight:600;line-height:11px}.user-menu__coins-percentage-mobile{margin-left:10px;border-radius:14px}.user-menu__coins-percentage-green{color:#00a650;background:rgba(0,166,80,.1)}.user-menu__coins-percentage-red{color:#f23d4f;background:rgba(242,61,79,.1)}.user-menu__coins-subtitle{font-size:12px;color:#737373;line-height:normal;margin:0;font-weight:400}.user-menu__coins-subtitle-info{font-size:14px;color:#3483fa;margin:0;font-weight:400;line-height:18px}.user-menu__coins-subtitle-ma{margin-left:3px}#nav-header-menu .user-menu__one-column .user-menu__coins .user-menu__coins-main.user-menu__coins-main-kyc{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;display:-webkit-box;display:-ms-flexbox;display:flex;padding:10px 12px 12px 16px}.user-menu__coins-kyc-label{color:#3483fa;font-weight:600;font-size:14px;line-height:18px;margin:0}.user-menu__user-badge-email__chevron.user-menu__user-badge-kyc{color:#3483fa;margin-right:5px}.user-menu__coins-chevron .user-menu__coins-kyc-chevron{color:#3483fa;stroke:#3483fa}.user-menu__coins-kyc-label-mobile{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;padding:11px 12px;text-decoration:none;background:#fff}.user-menu__coins-kyc-label-mobile p{margin:0}.user-menu__coins-item-list{padding:0;height:0;opacity:0;overflow:hidden;-webkit-transition:height .3s,opacity .5s;-o-transition:height .3s,opacity .5s;transition:height .3s,opacity .5s}.user-menu__coins-container-list{padding:0;max-height:0;opacity:0;overflow:hidden;-webkit-transition:195ms;-o-transition:195ms;transition:195ms}.user-menu__coins-mp-link{width:100%}.user-menu__coins-show-item-list{height:107px;opacity:1}.user-menu__coins-show-item-list-with-kyc{height:145px;opacity:1}.user-menu__coins-item-container-title .user-menu__coins-rotate-icon{-webkit-transform:rotate(315deg);-ms-transform:rotate(315deg);transform:rotate(315deg)}.user-menu__coins-main-mobile .user-menu__coins-chevron{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);-webkit-transition:-webkit-transform .4s ease-in-out;transition:-webkit-transform .4s ease-in-out;-o-transition:transform .4s ease-in-out;transition:transform .4s ease-in-out;transition:transform .4s ease-in-out, -webkit-transform .4s ease-in-out}.user-menu__coins-chevron .user-menu__coins--chevron{color:#737373;stroke:#737373}#nav-header-menu .user-menu__one-column .user-menu__coins .user-menu__shortcuts-separator{margin:0;border-top:1px solid}#nav-header-menu .user-menu__one-column .user-menu__shortcuts-separator.user-menu__shortcuts-separator-coin{margin:0 12px 0 16px}#nav-header-menu .nav-header-user-layer .user-menu__coins-link-label:hover,#nav-header-menu .nav-header-user-layer .user-menu__coins-main-item:hover,#nav-header-menu .nav-header-user-layer .user-menu__coins-main:hover{background:0 0}.user-menu__coins-kyc-list{height:188px}.user-menu__coins ul{padding:0}.user-menu__coins-currency.andes-money-amount{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline}.user-menu__coins-title .andes-money-amount--cents-superscript .andes-money-amount__cents{-ms-flex-item-align:start;align-self:flex-start;margin-left:1px}.user-menu__coins-title .andes-money-amount--cents-comma .andes-money-amount__cents::before{content:','}.user-menu__coins-title .andes-money-amount--cents-dot .andes-money-amount__cents::before{content:'.'}.user-menu__coins-title .andes-money-amount__cents--superscript-16{margin-top:.7px!important}.user-menu__coins-title-weight .andes-money-amount--cents-superscript[style]{font-size:14px!important}#user-menu__coins-state:checked~.user-menu__coins-container-list{max-height:200px;opacity:1;-webkit-transition:225ms;-o-transition:225ms;transition:225ms}#user-menu__coins-state:checked~label .user-menu__coins-title__chevron{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);top:0;-webkit-transition:225ms;-o-transition:225ms;transition:225ms}#user-menu__coins-state:checked~.user-menu__coins-mobile{background:#fff;-webkit-transition:225ms ease-in-out;-o-transition:225ms ease-in-out;transition:225ms ease-in-out}.user-menu__coins-item-container-title .user-menu__coins-chevron{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}#user-menu__coins-state:checked~.user-menu__coins-mobile .user-menu__coins-chevron-mp{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transition:225ms ease-in-out;-o-transition:225ms ease-in-out;transition:225ms ease-in-out}#user-menu__coins-state:checked~.user-menu__coins-mobile .user-menu__coins-info{max-height:500px;-webkit-transition:225ms ease-in-out;-o-transition:225ms ease-in-out;transition:225ms ease-in-out}.user-menu__coins-main-mobile{-webkit-box-sizing:border-box;box-sizing:border-box}.user-menu__coins-info{overflow:hidden;border-radius:0 0 16px 16px;max-height:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:195ms ease-in-out;-o-transition:195ms ease-in-out;transition:195ms ease-in-out}#nav-header-menu-mobile .user-menu__coins ul li span a span{color:#3483fa;font-weight:400}#nav-header-menu-mobile .user-menu__coins ul li span a{padding:0;height:auto;min-height:auto;margin-top:10px}.hide-visually,.user-menu__coins .andes-visually-hidden{clip:rect(0 0 0 0);border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:0 -1px -1px 0;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.user-menu__coins-divisor{border-bottom:1px solid #e6e6e6;width:100%}.user-menu__coins-divisor-coins{border-bottom:1px solid #e6e6e6;width:-webkit-fill-available;margin:0 12px}.user-menu__coins-no-kyc-list{height:156px}.user-menu__coins-kyc-list,.user-menu__coins-no-kyc-list{background:#fff;-webkit-box-shadow:0 6px 16px 0 #0000001a;box-shadow:0 6px 16px 0 #0000001a;-webkit-transition:height 225ms,_ 225ms 225ms;-o-transition:height 225ms,_ 225ms 225ms;transition:height 225ms,_ 225ms 225ms}#nav-header-menu-mobile .user-menu__coins-info ul li{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0}.user-menu__coins-kyc-list{max-height:150px}#nav-header-menu-mobile ul{border-bottom:0}.user-menu__coins-currency.andes-money-amount{-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline;display:-webkit-box;display:-ms-flexbox;display:flex;font-weight:400;line-height:1.25}.andes-money-amount__currency-symbol,.andes-money-amount__negative-symbol{padding-right:.2em}.andes-money-amount--compact{line-height:1}.andes-money-amount--cents-superscript .andes-money-amount__cents{-ms-flex-item-align:start;align-self:flex-start;margin-left:1px}#nav-header-menu-mobile-user-info,#nav-header-menu-mobile:before{background:#fff159}</style>
<style>.nav-search .nav-category{background-color:#fff;color:#666;line-height:20px;height:24px;margin:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:55%;padding:2px 10px;position:absolute;right:50px;top:15px;text-align:right}.nav-search .nav-category:hover .nav-label-small{width:initial}.nav-search .nav-category label{-webkit-user-select:none}.nav-search .nav-category .nav-label-small{display:inline-block;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;vertical-align:middle;width:58px}.nav-search .nav-category input[type=checkbox]{border:1px solid #ccc;background:0;box-shadow:none;display:inline-block;margin:2px 9px 0 0;height:14px;padding:0;vertical-align:top;width:14px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.nav-search .nav-category input[type=checkbox]:focus{outline:1px dotted #9a9a9a}.mobile-view#mlCategory{top:unset;max-width:unset;text-align:left}.nav-search .nav-category input[type=checkbox]{vertical-align:unset}@media (max-width:768px){.nav-search .nav-category{display:none}}.nav-search .nav-category label .nav-category-icon{vertical-align:text-bottom}.nav-search .nav-category label .nav-icon-supermarket-logo{width:115px;height:18px}.mobile-view#mlCategory label .nav-icon-supermarket-logo{width:125px;height:22px;margin-left:1px;vertical-align:middle}</style>
<link href="https://http2.mlstatic.com/frontend-assets/search-nordic/search.desktop.72f1728a.css" onerror="(window['_pfl'] = window['_pfl'] || []).push(['css', this.href])" rel="stylesheet" type="text/css"/>
<script>
(function(win, doc) {
function preloadCriticalPath() {
var head = doc.getElementsByTagName('head')[0],
assets = ["https://http2.mlstatic.com/frontend-assets/ui-navigation/5.19.1/mercadolibre/navigation-desktop.css","https://http2.mlstatic.com/frontend-assets/ui-navigation/5.19.1/mercadolibre/navigation-mobile.css"],
link,
i;
for(i = 0; i < assets.length; i++) {
link = doc.createElement('link');
link.rel = 'prefetch';
link.href = assets[i];
link.onerror = function(e) {
(window['_pfl'] = window['_pfl'] || []).push(['css', e.target.href]);
}
head.appendChild(link);
}
}
if (doc.readyState === 'complete') {
setTimeout(preloadCriticalPath, 0);
} else {
win.addEventListener('load', function() {
preloadCriticalPath();
});
}
})(window, document);
</script>
<script>
(function(a,b){a.GoogleAnalyticsObject=b;a[b]=a[b]||function(){(a[b].q=a[b].q||[]).push(arguments)};a[b].l=1*new Date})(window,"meli_ga");
meli_ga("set", "title", "app-search-nordic-nodejs-3.2.1");
meli_ga("set", "page", "/SEARCH/LISTING/?q=computador&c={'MLB1648':'Inform\u00E1tica'}");
meli_ga("set", "dimension49", "MLB1983288877,MLB1930876153,MLB1937079157,MLB1607748387,MLB1983278713,MLB2131342947,MLB2025368730,MLB1937076326,MLB2081933352,MLB2114151338,MLB2153875378,MLB1669162236,MLB1983288732,MLB2603247328,MLB1983288643,MLB2614218974,MLB1983278831,MLB2696339147,MLB1663773541,MLB1837442511,MLB1983279452,MLB2610297318,MLB2210259535,MLB2669020387,MLB2610554493,MLB2199976353,MLB1986322829,MLB1680063928,MLB1899027328,MLB1506134141,MLB1983288676,MLB1983279518,MLB2022879801,MLB2096063553,MLB2161556728,MLB1983287147,MLB2103940157,MLB2724080796,MLB1983296789,MLB2618767197,MLB2145104504,MLB2626699161,MLB1983286920,MLB1983288815,MLB1786478708,MLB2618802287,MLB2044748327,MLB1885917902,MLB2222645583,MLB1615760527,MLB2025342637,MLB2032160315,MLB2625920831,MLB2685001475");
meli_ga("set", "dimension86", "MLB-COMPUTER_EQUIPMENT_AND_SPARE_PARTS");
meli_ga("set", "dimension117", "PDP+officialStore");
meli_ga("set", "dimension22", "547937");
meli_ga("set", "dimension9", "NONE");
meli_ga("set", "dimension23", "SEO-allowlist: in - SEARCH-noindex: false");
meli_ga("set", "dimension21", "115|393");
meli_ga("set", "dimension25", "{\"mclics/grid-layout\":\"12899\",\"search/new-search-api\":\"8650\",\"mclics/show-pads-search-list\":\"5146\",\"mclics/pseudo-search-buybox-query\":\"9461\",\"mclics/show-pads-global\":\"5176\",\"mclics/pseudo-search-pads-buybox\":\"7708\",\"frontend/assetsCdnDomainMLB\":\"DEFAULT\",\"frontend/assetsCdnDomainMLU\":\"DEFAULT\"}");
meli_ga("set", "dimension7", "MARKETPLACE");
meli_ga("set", "dimension8", "CORE");
meli_ga("set", "dimension48", "NONE");
meli_ga("set", "dimension113", "fdbc07bf-dc75-448b-bca8-3904faaf0d2a");
meli_ga("set", "dimension3", "{'MLB1648':'Inform\u00E1tica'}");
meli_ga("set", "contentGroup1", "/MARKETPLACE/SEARCH/LISTING/");
meli_ga("set", "contentGroup2", "/CORE/SEARCH/LISTING/");
meli_ga("set", "contentGroup3", "/MLB1648/SEARCH/LISTING/");
meli_ga("set", "dimension1", "desktop");
meli_ga("set", "dimension6", "gallery");
meli_ga("set", "dimension7", "MARKETPLACE");
meli_ga("set", "dimension8", "CORE");
meli_ga("send", "pageview");
(function(d) {
var i = d.createElement('iframe');
(i.frameElement || i).style.cssText = 'width: 0; height: 0; border: 0; position: absolute';
i.src = "about:srcdoc";
i.srcdoc="\<script\ src='https://http2.mlstatic.com/analytics/ga/mlb-ml-analytics.min.js'>\</script\>";
i.id = "GoogleAnalyticsIframe";
var w = d.getElementsByTagName('script')[0];
w.parentNode.insertBefore(i, w);
var doc = i.contentWindow.document;
var s = doc.createElement('script');
s.type = 'text/javascript';
s.text ='window.inDapIF = true;';
doc.documentElement.appendChild(s);
})(document);
</script>
</head><body data-country="BR" data-site="ML"><input id="nav-header-menu-switch" type="checkbox"/><header class="nav-header nav-header-plus" data-siteid="MLB" role="banner"><div class="nav-bounds nav-bounds-with-cart nav-bounds-with-cp"><a aria-label="Ir para conteúdo principal" class="nav-skip-to-main-content" href="#root-app" id="nav-skip-to-main-content" role="button" tabindex="1"><span class="nav-skip-to-main-content__content">Ir para conteúdo principal</span></a><a class="nav-logo" href="//www.mercadolivre.com.br" tabindex="2">Mercado Livre Brasil - Onde comprar e vender de Tudo</a><div class="nav-header-menu-wrapper"><label aria-controls="nav-header-menu" for="nav-header-menu-switch"><span class="hamburger-top-bread"></span><span class="hamburger-patty"></span><span class="hamburger-bottom-bread"></span></label><nav class="nav-header-menu-mobile-guest" id="nav-header-menu-mobile"><div id="nav-header-menu-mobile-content"><div class="nav-header-menu-mobile-guest" id="nav-header-menu-mobile-user-info"><div class="nav-header-menu-mobile-guest-logo"><svg class="nav-header-menu-mobile-guest-icon" height="35" width="28" xmlns="http://www.w3.org/2000/svg"><path d="M27.343 33.706l-1.356.64A13.25 13.25 0 0 0 14 26.75c-5.17 0-9.8 2.988-11.978 7.578l-1.356-.643A14.75 14.75 0 0 1 14 25.25a14.75 14.75 0 0 1 13.343 8.456zM14 21.75C8.063 21.75 3.25 16.937 3.25 11S8.063.25 14 .25 24.75 5.063 24.75 11 19.937 21.75 14 21.75zm0-1.5a9.25 9.25 0 1 0 0-18.5 9.25 9.25 0 0 0 0 18.5zm0-2.5v-1.5a5.25 5.25 0 1 0 0-10.5v-1.5a6.75 6.75 0 0 1 0 13.5z" fill="#BBB" fill-rule="nonzero"></path></svg></div><h3 class="nav-header-menu-mobile-guest-title">Bem-vindo</h3><p class="nav-header-menu-mobile-guest-text">Entra na sua conta para ver suas compras, favoritos etc.</p><div class="nav-header-menu-mobile-guest-buttons"><a class="nav-mobile-button nav-mobile-button-filled" href="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit" rel="nofollow">Entre</a><a class="nav-mobile-button nav-mobile-button-outline" href="https://www.mercadolivre.com.br/registration?confirmation_url=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador" rel="nofollow">Crie a sua conta</a></div></div><ul><li><a href="https://www.mercadolivre.com.br#menu-user"><i class="nav-icon-home"></i><span>Início</span></a></li><li><a href="https://www.mercadolivre.com.br/ofertas#menu-user"><i class="nav-icon-deals-mobile"></i><span>Ofertas do dia</span></a></li><li><a href="https://www.mercadolivre.com.br/gz/home/navigation#menu-user"><i class="nav-icon-history-mobile"></i><span>Histórico</span></a></li><li><a href="https://www.mercadolivre.com.br/ajuda#menu-user"><i class="nav-icon-help-mobile"></i><span>Contato</span></a></li></ul><ul><li><a href="https://www.mercadolivre.com.br/c/calcados-roupas-e-bolsas#menu-user"><i class="nav-icon-moda-mobile"></i><span>Moda</span></a></li><li><a href="https://www.mercadolivre.com.br/mais-vendidos#menu-user"><i class="nav-icon-best-sellers-mobile"></i><span>Mais vendidos</span><span class="nav-link-tag">Novo</span></a></li><li><a href="https://www.mercadolivre.com.br/a/especial/compra-internacional#menu-user"><i class="nav-icon-compra-internacional"></i><span>Compra Internacional</span><span class="nav-link-tag">Novo</span></a></li><li><a href="https://www.mercadolivre.com.br/lojas-oficiais#menu-user"><i class="nav-icon-stores-mobile"></i><span>Lojas oficiais</span></a></li><li><a href="https://www.mercadolivre.com.br/categorias#menu-user"><i class="nav-icon-categories-mobile"></i><span>Categorias</span></a></li></ul><ul><li><a href="https://www.mercadolivre.com.br/resumo#menu-user"><i class="nav-icon-summary-mobile"></i><span>Resumo</span></a></li><li><a href="https://www.mercadolivre.com.br/anuncie#menu-user"><i class="nav-icon-vender-mobile"></i><span>Vender</span></a></li></ul><ul><li><a href="https://www.mercadolivre.com.br/l/app#menu-user" id="nav-header-menu-download-mobile"><i class="nav-icon-download-mobile"></i><span>Compre e venda com o app!</span></a></li></ul></div></nav><nav id="nav-header-menu"><a data-link-id="registration" href="https://www.mercadolivre.com.br/registration?confirmation_url=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador#nav-header" rel="nofollow" tabindex="8">Crie a sua conta</a><a data-link-id="login" href="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit#nav-header" rel="nofollow" tabindex="8">Entre</a><a data-link-id="purchases" href="https://myaccount.mercadolivre.com.br/purchases/list#nav-header" rel="nofollow" tabindex="8">Compras</a></nav></div><form action="https://www.mercadolivre.com.br/jm/search" class="nav-search" method="GET" role="search"><input aria-label="Digite o que você quer encontrar" autocapitalize="off" autocomplete="off" autocorrect="off" class="nav-search-input" maxlength="120" name="as_word" placeholder="Buscar produtos, marcas e muito mais…" spellcheck="false" tabindex="3" type="text" value="computador"/><p class="nav-category" id="mlCategory" title="Somente em Informática"><input id="categorySearch" name="as_categ_id" type="checkbox"/><label for="categorySearch">Somente em Informática</label></p><button class="nav-search-btn" tabindex="4" type="submit"><div aria-label="Buscar" class="nav-icon-search" role="img"></div></button></form><div class="nav-menu"><ul class="nav-menu-list"><li class="nav-menu-item"><a class="nav-menu-cp nav-menu-cp-logged" data-js="cp" data-modal-action="true" href="https://www.mercadolivre.com.br/navigation/addresses-hub?go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador" tabindex="6"><span class="nav-menu-cp-send">Informe seu</span><span class="nav-menu-link-cp"> CEP</span></a></li><li class="nav-menu-item"><a class="nav-menu-categories-link" data-js="nav-menu-categories-trigger" href="https://www.mercadolivre.com.br/categorias#nav-header" rel="nofollow" tabindex="7">Categorias</a></li><li class="nav-menu-item"><a class="nav-menu-item-link" href="https://www.mercadolivre.com.br/ofertas#nav-header" rel="nofollow" tabindex="7">Ofertas do dia</a></li><li class="nav-menu-item"><a class="nav-menu-item-link" href="https://www.mercadolivre.com.br/gz/home/navigation#nav-header" rel="nofollow" tabindex="7">Histórico</a></li><li class="nav-menu-item"><a class="nav-menu-item-link" href="https://www.mercadolivre.com.br/c/calcados-roupas-e-bolsas#nav-header" rel="nofollow" tabindex="7">Moda</a></li><li class="nav-menu-item"><a class="nav-menu-item-link" href="https://www.mercadolivre.com.br/anuncie#nav-header" rel="nofollow" tabindex="7">Vender</a></li><li class="nav-menu-item"><a class="nav-menu-item-link" href="https://www.mercadolivre.com.br/ajuda#nav-header" rel="nofollow" tabindex="7">Contato</a></li></ul></div><a aria-label="0 produtos em seu carrinho" class="nav-cart nav-cart-empty" href="https://www.mercadolivre.com.br/gz/cart" id="nav-cart" tabindex="9" title="Carrinho de compras"><i class="nav-icon-cart"></i><span class="nav-icon-cart-quantity"></span></a><a class="exhibitor__picture" href="https://www.mercadolivre.com.br/assinaturas/nivel-6?utm_source=BM+NIVEL+6&utm_medium=BM+NIVEL+6&utm_campaign=BM+NIVEL+6#DEAL_ID=&S=MKT&V=7&T=MENU&L=LOYALTYNIVEL6T3_NIVEL6&origin=banner-menu&me.bu_line=26&me.flow=-1&me.bu=3&me.audience=all&me.content_id=BANNER_MENU_NIVEL1A5&me.component_id=banner_menu_web_ml&me.logic=user_journey&me.position=0" tabindex="5"><img alt="Loyalty" src="https://http2.mlstatic.com/D_NQ_806934-MLA50801953236_072022-OO.jpg" title="Loyalty"/></a><a class="nav-header-cp-anchor" data-js="cp" data-modal-action="true" href="https://www.mercadolivre.com.br/navigation/addresses-hub?go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador" tabindex="6"><span class="nav-menu-cp-send">Informe seu</span><span class="nav-menu-link-cp"> CEP</span></a></div></header><main id="root-app" role="main"><div class="ui-search"><svg class="ui-search-svg-sprites" height="0" width="0" xmlns="http://www.w3.org/2000/svg"><defs><symbol id="full" viewbox="0 0 100 32"><path d="M6.4 0h12.8l-6.4 11.429h10.667l-17.067 20.571 4.267-13.714h-10.667l6.4-18.286zM34.626 23.467h-4.77l4.077-18.498h13.562l-0.915 4.16h-8.791l-0.61 2.884h8.57l-0.915 4.16h-8.597l-1.609 7.294zM57.687 23.799c-5.685 0-8.486-2.718-8.486-6.601 0-0.305 0.083-0.943 0.139-1.22l2.441-11.010h4.853l-2.413 10.899c-0.028 0.139-0.083 0.444-0.083 0.777 0.028 1.525 1.193 2.995 3.55 2.995 2.551 0 3.855-1.609 4.326-3.772l2.413-10.899h4.826l-2.413 10.982c-0.998 4.493-3.439 7.849-9.152 7.849zM82.33 23.467h-12.203l4.077-18.498h4.77l-3.134 14.338h7.405l-0.915 4.16zM98.596 23.467h-12.203l4.077-18.498h4.77l-3.134 14.338h7.405l-0.915 4.16z"></path></symbol></defs><defs><symbol id="start-empty"><path d="M5.256 8L2.131 9.648l.597-3.49L.2 3.684l3.494-.509L5.256 0l1.562 3.176 3.494.51-2.528 2.471.597 3.491z" fill="#ddd" fill-rule="evenodd"></path></symbol></defs><defs><symbol id="start-full"><path d="M5.056 8L1.931 9.648l.597-3.49L0 3.684l3.494-.509L5.056 0l1.562 3.176 3.494.51-2.528 2.471.597 3.491z" fill-rule="evenodd"></path></symbol></defs><defs><symbol id="start-half"><g fill-rule="evenodd"><path d="M5.256 8L2.131 9.648l.597-3.49L.2 3.684l3.494-.509L5.256 0l1.562 3.176 3.494.51-2.528 2.471.597 3.491z" fill="#ddd"></path><path d="M5.272 8.026L2.137 9.679l.6-3.502L.2 3.697l3.505-.51L5.272 0z"></path></g></symbol></defs><defs><symbol id="bookmark"><g fill-rule="evenodd" stroke-width="1.0"><path d="M10.977 2.705C11.93 1.618 13.162 1 14.895 1c3.333 0 5.607 2.152 5.607 6.274 0 .08-.002.16-.005.24-.107 2.596-1.876 5.253-4.737 7.892a33.77 33.77 0 0 1-3.165 2.57 32.447 32.447 0 0 1-1.45.983l-.394.243-.394-.243-.009-.005-.021-.014-.08-.05a32.447 32.447 0 0 1-1.34-.914 33.77 33.77 0 0 1-3.165-2.57c-2.86-2.639-4.63-5.296-4.737-7.892A5.839 5.839 0 0 1 1 7.274C1 3.152 3.274 1 6.607 1c1.733 0 2.966.618 3.918 1.705.056.064.137.165.226.282.09-.117.17-.218.226-.282z"></path></g></symbol></defs><defs><symbol id="sum"><path d="M625.784 488.568h187.392v46.863h-187.392v187.392h-46.863v-187.392h-187.392v-46.863h187.392v-187.392h46.863v187.392z"></path></symbol></defs><defs><symbol id="rest"><path d="M391.529 542.118v-60.235h421.647v60.235z"></path></symbol></defs><defs><symbol id="close"><path d="M409.6 512l-358.4 358.4 102.4 102.4 358.4-358.4 358.4 358.4 102.4-102.4-358.4-358.4 358.4-358.4-102.4-102.4-358.4 358.4-358.4-358.4-102.4 102.4z"></path></symbol></defs><defs><symbol id="supermarket-logo"><path d="M7.731 23.774c4.224 0 6.733-2.739 6.733-5.862 0-4.941-8.346-4.659-8.346-6.886 0-0.922 0.973-1.69 2.278-1.69 1.741 0 3.814 0.691 5.094 2.176l2.278-2.611c-1.536-1.766-4.096-2.765-6.81-2.765-4.198 0-6.682 2.739-6.682 5.555 0 4.992 8.32 4.531 8.32 6.938 0 0.87-0.742 1.92-2.586 1.92-2.355 0-4.582-1.075-5.76-2.662l-2.253 2.688c1.434 1.894 4.378 3.2 7.731 3.2zM24.926 23.774c5.043 0 7.194-2.995 8.090-7.142l2.278-10.24h-3.712l-2.227 10.163c-0.538 2.381-1.818 4.019-4.429 4.019-2.406 0-3.661-1.459-3.686-3.174 0-0.358 0.051-0.691 0.102-0.845l2.227-10.163h-3.686l-2.253 10.24c-0.051 0.282-0.128 0.845-0.128 1.178 0 3.558 2.534 5.965 7.424 5.965zM38.972 23.467l1.357-6.093h4.275c5.35 0 7.066-3.712 7.066-6.246 0-2.586-2.022-4.736-4.762-4.736h-7.808l-3.763 17.075h3.635zM44.834 14.174h-3.814l1.024-4.582h3.712c1.254 0 2.125 0.794 2.125 1.92 0 1.51-1.229 2.662-3.046 2.662zM63.846 23.467l0.691-3.2h-8.422l0.845-3.891h8.269l0.691-3.2h-8.243l0.794-3.584h8.422l0.717-3.2h-12.083l-3.763 17.075h12.083zM70.75 23.467l1.331-6.067h2.816l2.022 6.067h4.045l-2.381-6.323c2.765-0.512 4.864-2.867 4.864-5.939 0-2.97-2.509-4.813-5.274-4.813h-7.296l-3.763 17.075h3.635zM76.612 14.199h-3.814l1.024-4.608h3.661c1.126 0 2.176 0.819 2.176 1.971 0 1.536-1.152 2.637-3.046 2.637zM87.637 23.467l2.714-12.314 2.099 12.314h1.587l7.526-12.314-2.714 12.314h3.661l3.763-17.075h-5.248l-6.502 10.675-1.792-10.675h-4.966l-3.763 17.075h3.635zM118.4 23.467l0.691-3.2h-8.422l0.845-3.891h8.269l0.691-3.2h-8.243l0.794-3.584h8.422l0.717-3.2h-12.083l-3.763 17.075h12.083zM125.303 23.467l1.331-6.067h2.816l2.022 6.067h4.045l-2.381-6.323c2.765-0.512 4.864-2.867 4.864-5.939 0-2.97-2.509-4.813-5.274-4.813h-7.296l-3.763 17.075h3.635zM131.166 14.199h-3.814l1.024-4.608h3.661c1.126 0 2.176 0.819 2.176 1.971 0 1.536-1.152 2.637-3.046 2.637zM147.772 23.774c2.227 0 5.069-0.794 7.040-3.302l-2.816-1.894c-0.973 1.203-2.56 1.971-4.019 1.971-2.944 0-4.787-1.997-4.787-4.659 0-3.763 2.714-6.554 5.939-6.554 1.971 0 3.61 0.973 4.275 2.79l3.482-1.178c-0.998-2.586-3.405-4.838-7.578-4.838-5.299 0-9.933 3.968-9.933 10.010 0 4.659 3.686 7.654 8.397 7.654zM158.925 23.467l1.69-2.893h7.322l0.435 2.893h3.942l-2.816-17.075h-4.557l-10.342 17.075h4.326zM167.654 17.374h-5.325l4.275-7.347 1.050 7.347zM181.035 23.467c8.038 0 11.059-5.248 11.059-9.754 0-4.403-3.61-7.322-7.398-7.322h-6.605l-3.763 17.075h6.707zM181.7 20.267h-3.021l2.355-10.675h2.995c2.509 0 4.301 1.894 4.301 4.378 0 3.405-2.509 6.298-6.63 6.298zM202.351 23.774c5.632 0 9.933-4.454 9.933-10.035 0-4.685-3.686-7.629-8.397-7.629-5.632 0-9.933 4.429-9.933 10.010 0 4.685 3.661 7.654 8.397 7.654zM202.556 20.548c-2.739 0-4.787-1.792-4.787-4.659 0-3.661 2.586-6.554 5.888-6.554 2.739 0 4.813 1.792 4.813 4.659 0 3.661-2.611 6.554-5.914 6.554z"></path></symbol></defs><defs><symbol id="cart-volume-discount"><path d="M2.04388 2.57091L3.77432 10.97H13.8226L15.265 3.77064H14.1025L12.8392 9.76997H4.75229L3.02185 1.37091H0.734863V2.57091H2.04388Z"></path><path d="M4.93086 13.9697C5.59361 13.9697 6.13086 13.4324 6.13086 12.7697C6.13086 12.107 5.59361 11.5697 4.93086 11.5697C4.26812 11.5697 3.73086 12.107 3.73086 12.7697C3.73086 13.4324 4.26812 13.9697 4.93086 13.9697Z"></path><path d="M12.7289 13.9697C13.3916 13.9697 13.9289 13.4324 13.9289 12.7697C13.9289 12.107 13.3916 11.5697 12.7289 11.5697C12.0661 11.5697 11.5289 12.107 11.5289 12.7697C11.5289 13.4324 12.0661 13.9697 12.7289 13.9697Z"></path><path d="M6.53383 8.15687L12.1338 2.55687L11.2853 1.70834L5.6853 7.30834L6.53383 8.15687Z"></path><path d="M6.73378 3.75697C7.28607 3.75697 7.73378 3.30925 7.73378 2.75697C7.73378 2.20468 7.28607 1.75697 6.73378 1.75697C6.1815 1.75697 5.73378 2.20468 5.73378 2.75697C5.73378 3.30925 6.1815 3.75697 6.73378 3.75697Z"></path><path d="M11.9337 6.97023C11.9337 7.52251 11.486 7.97023 10.9337 7.97023C10.3814 7.97023 9.93373 7.52251 9.93373 6.97023C9.93373 6.41794 10.3814 5.97023 10.9337 5.97023C11.486 5.97023 11.9337 6.41794 11.9337 6.97023Z"></path></symbol></defs><defs><symbol id="international-logo"><path d="M4.102 9.15c1.089 0 2.477-.388 3.44-1.613L6.166 6.61c-.475.588-1.25.963-1.964.963-1.438 0-2.338-.975-2.338-2.276 0-1.839 1.325-3.202 2.901-3.202.963 0 1.764.475 2.089 1.363l1.701-.575C8.067 1.62 6.891.52 4.853.52 2.263.52 0 2.459 0 5.41c0 2.277 1.801 3.74 4.102 3.74zM12.774 9.15c2.752 0 4.853-2.176 4.853-4.903 0-2.289-1.8-3.727-4.102-3.727-2.752 0-4.853 2.164-4.853 4.89 0 2.29 1.789 3.74 4.102 3.74zm.1-1.576c-1.338 0-2.338-.875-2.338-2.276 0-1.789 1.263-3.202 2.876-3.202 1.338 0 2.352.875 2.352 2.276 0 1.789-1.276 3.202-2.89 3.202zM26.878 9L28.717.658h-2.564l-3.177 5.215L22.1.658h-2.426L17.835 9h1.776l1.326-6.016L21.963 9h.775l3.677-6.016L25.09 9h1.788zM30.311 9l.663-2.977h2.089c2.614 0 3.452-1.813 3.452-3.052A2.296 2.296 0 0 0 34.188.658h-3.814L28.535 9h1.776zm2.852-4.54h-1.851l.5-2.239h1.813c.613 0 1.038.388 1.038.938 0 .738-.6 1.3-1.488 1.3h-.012zM43.118 9l-1.163-3.09c1.351-.25 2.377-1.4 2.377-2.901 0-1.45-1.226-2.351-2.577-2.351h-3.564L36.352 9h1.776l.65-2.964h1.376L41.142 9h1.976zM40.98 4.472h-1.851l.5-2.251h1.788c.55 0 1.064.4 1.064.963 0 .75-.563 1.288-1.489 1.288h-.012zM52.168 9L50.793.658h-2.227L43.513 9h2.114l.826-1.413h3.577L50.242 9h1.926zm-2.276-2.977h-2.601l2.088-3.59.513 3.59zM57.927 9L59.766.658H57.99L56.15 9h1.776zM67.05 9L68.89.658h-1.776l-1.189 5.315L63.248.658h-1.826L59.583 9h1.776l1.226-5.528L65.337 9h1.713zM72.41 9l1.488-6.779h2.439l.338-1.563H70.02l-.338 1.563h2.439L70.622 9h1.788zM81.878 9l.338-1.563H78.1l.412-1.902h4.04l.338-1.563h-4.027l.387-1.751h4.115l.35-1.563h-5.903L75.975 9h5.903zM90.033 9L88.87 5.91c1.35-.25 2.376-1.4 2.376-2.901 0-1.45-1.226-2.351-2.576-2.351h-3.565L83.266 9h1.776l.65-2.964h1.377L88.057 9h1.976zm-2.139-4.528h-1.851l.5-2.251h1.789c.55 0 1.063.4 1.063.963 0 .75-.563 1.288-1.488 1.288h-.013zM98.77 9L100.61.658h-1.776l-1.189 5.315L94.968.658h-1.826L91.303 9h1.776l1.226-5.528L97.057 9h1.713zM108.195 9L106.819.658h-2.227L99.54 9h2.113l.826-1.413h3.577L106.268 9h1.927zm-2.277-2.977h-2.601l2.088-3.59.513 3.59zM112.918 9.15c1.088 0 2.476-.388 3.439-1.613l-1.375-.926c-.476.588-1.251.963-1.964.963-1.438 0-2.339-.975-2.339-2.276 0-1.839 1.326-3.202 2.902-3.202.963 0 1.763.475 2.088 1.363l1.701-.575C116.883 1.62 115.707.52 113.668.52c-2.589 0-4.853 1.939-4.853 4.89 0 2.277 1.802 3.74 4.103 3.74zM118.778 9l1.838-8.342h-1.776L117.002 9h1.776zM124.937 9.15c2.751 0 4.852-2.176 4.852-4.903 0-2.289-1.801-3.727-4.102-3.727-2.752 0-4.853 2.164-4.853 4.89 0 2.29 1.789 3.74 4.103 3.74zm.1-1.576c-1.339 0-2.339-.875-2.339-2.276 0-1.789 1.263-3.202 2.876-3.202 1.339 0 2.352.875 2.352 2.276 0 1.789-1.276 3.202-2.889 3.202zM137.464 9l1.839-8.342h-1.776l-1.188 5.315-2.677-5.315h-1.826L129.998 9h1.776l1.225-5.528L135.751 9h1.713zM146.889 9L145.513.658h-2.226L138.234 9h2.114l.825-1.413h3.577L144.963 9h1.926zm-2.277-2.977h-2.601l2.089-3.59.512 3.59zM152.9 9l.337-1.563h-3.527l1.501-6.78h-1.788L147.584 9h5.316z"></path></symbol></defs><defs><symbol id="virtual-tour"><g fill="none" fill-rule="evenodd"><g fill="#00A650"><g><g><g><g><g><path d="M20.746.002l.034.01C22.253.624 23 1.369 23 2.226c0 .942-.894 1.744-2.658 2.384-1.515.549-3.64.947-5.984 1.122l-.04.002c-.015 0-.037 0-.037-.01l-.001-.109-.001-.888c4.796-.209 7.684-1.724 7.684-2.501 0-.392-.595-.873-1.59-1.286-.033-.014-.064-.03-.092-.05l.465-.888zM2.137.033l.493.866-.04.02c-.915.377-1.487.812-1.56 1.181l-.007.078c0 .41.732 1.096 2.797 1.677 1.626.457 4.025.754 6.272.846l-.467-1.048c-.224-.165-.68-.5-.51-.717.172-.217.752.467.977.632l1.537 1.258c.21.155.263.45.117.664-.031.046-.071.088-.117.122L9.425 7.233c-.092.069-.201.102-.31.102-.153 0-.306-.067-.406-.195-.172-.217-.128-.526.096-.692l1.038-.763c-2.377-.09-4.577-.395-6.31-.882C1.223 4.153 0 3.245 0 2.178 0 1.338.737.608 2.19.011l-.053.022z" fill-rule="nonzero" transform="translate(-100 -572) translate(84 259) translate(0 296) translate(16 17) translate(0 3.918)"></path><path d="M8.401 3.615L12.307 3.565 12.292 4.742 8.386 4.792z" transform="translate(-100 -572) translate(84 259) translate(0 296) translate(16 17) translate(0 3.918) rotate(50 10.347 4.179)"></path></g><path d="M8.195 5.617L12.152 5.627 12.155 6.813 8.197 6.804z" transform="translate(-100 -572) translate(84 259) translate(0 296) translate(16 17) translate(0 3.918) rotate(-40 10.175 6.215)"></path></g><path d="M6.506 5.66c1.363 0 2.267-.666 2.267-1.627 0-.788-.707-1.24-1.29-1.298.65-.106 1.2-.591 1.2-1.232C8.682.6 7.902 0 6.505 0c-1.01 0-1.734.37-2.194.887l.682.887c.386-.345.863-.525 1.364-.525.526 0 .92.156.92.5 0 .288-.32.428-.887.428h-.296c-.185-.001-.377-.003-.444-.008v1.256c.083-.008.502-.008.74-.008.747 0 .977.148.977.46 0 .304-.312.534-.92.534-.476 0-1.1-.189-1.495-.575l-.714.961c.427.493 1.215.863 2.267.863zm5.249 0c1.273 0 2.185-.797 2.185-1.923 0-1.166-.912-1.798-1.898-1.798-.558 0-1.076.262-1.347.624v-.066c0-.764.616-1.248 1.281-1.248.452 0 .748.115 1.052.361l.616-1.084C13.234.206 12.625 0 11.976 0c-1.659 0-2.71 1.084-2.71 2.834 0 1.569.755 2.826 2.489 2.826zm-.09-1.249c-.666 0-.929-.46-.97-.903.238-.247.575-.37.92-.37.427 0 .895.189.895.649 0 .304-.32.624-.846.624zm5.018 1.249c1.602 0 2.35-1.389 2.35-2.834 0-1.446-.748-2.826-2.35-2.826s-2.35 1.38-2.35 2.826c0 1.445.748 2.834 2.35 2.834zm0-1.249c-.657 0-.92-.616-.92-1.585 0-.97.263-1.577.92-1.577s.92.607.92 1.577c0 .969-.263 1.585-.92 1.585z" fill-rule="nonzero" transform="translate(-100 -572) translate(84 259) translate(0 296) translate(16 17)"></path></g></g></g></g></g></symbol></defs><defs><symbol id="supermarket"><path clip-rule="evenodd" d="M72.9268 6.92808C71.9982 8.13533 70.6597 8.51721 69.6105 8.51721C67.3916 8.51721 65.655 7.07591 65.655 4.83388C65.655 1.92663 67.8378 0.0172119 70.334 0.0172119C72.2997 0.0172119 73.4333 1.10127 73.9036 2.34547L72.2635 2.91214C71.95 2.0375 71.1782 1.56939 70.2496 1.56939C68.7301 1.56939 67.4519 2.91214 67.4519 4.72301C67.4519 6.00417 68.3201 6.96504 69.707 6.96504C70.3943 6.96504 71.142 6.59547 71.6003 6.01649L72.9268 6.92808ZM6.81352 5.6962C6.81352 7.1991 5.63171 8.51721 3.64192 8.51721C2.06215 8.51721 0.675323 7.88895 0 6.97736L1.06122 5.68388C1.61595 6.44765 2.66511 6.96504 3.77457 6.96504C4.64284 6.96504 4.99256 6.45997 4.99256 6.04113C4.99256 5.56661 4.33442 5.32377 3.55753 5.03712C2.43857 4.62427 1.07328 4.12052 1.07328 2.70272C1.07328 1.34765 2.24304 0.0295308 4.22077 0.0295308C5.49905 0.0295308 6.70499 0.509966 7.42855 1.35997L6.35527 2.61649C5.7523 1.90199 4.7755 1.56939 3.95546 1.56939C3.34044 1.56939 2.88218 1.93895 2.88218 2.38243C2.88218 2.81295 3.51655 3.04866 4.27564 3.33071C5.40624 3.75081 6.81352 4.27372 6.81352 5.6962ZM15.5525 5.08026C15.1304 7.07591 14.1175 8.51721 11.7418 8.51721C9.43844 8.51721 8.24456 7.35924 8.24456 5.64692C8.24456 5.48678 8.28074 5.21576 8.30486 5.08026L9.36608 0.152719H11.1026L10.0535 5.0433C10.0293 5.11721 10.0052 5.27736 10.0052 5.44982C10.0173 6.27518 10.6082 6.97736 11.7418 6.97736C12.9718 6.97736 13.5748 6.18895 13.828 5.0433L14.8772 0.152719H16.6258L15.5525 5.08026ZM18.3583 8.36939L18.9975 5.4375H21.0114C23.5318 5.4375 24.3398 3.65127 24.3398 2.4317C24.3398 1.1875 23.3871 0.152719 22.0967 0.152719H18.4186L16.6459 8.36939H18.3583ZM19.3231 3.89765H21.1199C21.9761 3.89765 22.555 3.3433 22.555 2.61649C22.555 2.07446 22.145 1.69257 21.554 1.69257H19.8054L19.3231 3.89765ZM30.076 8.36939L30.4016 6.82953H26.4341L26.832 4.95707H30.7272L31.0528 3.41721H27.1697L27.5435 1.69257H31.511L31.8487 0.152719H26.1567L24.384 8.36939H30.076ZM33.9551 5.44982L33.328 8.36939H31.6155L33.3883 0.152719H36.8252C38.1276 0.152719 39.3094 1.03968 39.3094 2.46866C39.3094 3.94692 38.3205 5.08026 37.0181 5.32663L38.1396 8.36939H36.2343L35.2816 5.44982H33.9551ZM36.0896 3.90997H34.2927L34.7751 1.69257H36.4996C37.0302 1.69257 37.5246 2.08678 37.5246 2.64112C37.5246 3.38026 36.9819 3.90997 36.0896 3.90997ZM42.5614 2.44402L41.2831 8.36939H39.5707L41.3434 0.152719H43.6829L44.5271 5.28968L47.5901 0.152719H50.0623L48.2896 8.36939H46.5651L47.8434 2.44402L44.2979 8.36939H43.5503L42.5614 2.44402ZM55.7744 8.36939L56.1 6.82953H52.1325L52.5304 4.95707H56.4256L56.7512 3.41721H52.8681L53.242 1.69257H57.2095L57.5471 0.152719H51.8551L50.0824 8.36939H55.7744ZM59.6535 5.44982L59.0264 8.36939H57.314L59.0867 0.152719H62.5236C63.826 0.152719 65.0078 1.03968 65.0078 2.46866C65.0078 3.94692 64.019 5.08026 62.7166 5.32663L63.8381 8.36939H61.9327L60.98 5.44982H59.6535ZM61.788 3.90997H59.9912L60.4735 1.69257H62.198C62.7286 1.69257 63.2231 2.08678 63.2231 2.64112C63.2231 3.38026 62.6804 3.90997 61.788 3.90997ZM74.8643 8.36939L75.6602 6.97736H79.1092L79.3142 8.36939H81.1714L79.8448 0.152719H77.6983L72.8263 8.36939H74.8643ZM76.4682 5.4375H78.9766L78.4821 1.90199L76.4682 5.4375ZM85.2796 8.36939C89.0662 8.36939 90.4892 5.84402 90.4892 3.67591C90.4892 1.55707 88.7888 0.152719 87.0041 0.152719H83.8928L82.12 8.36939H85.2796ZM84.1701 6.82953H85.5931C87.5347 6.82953 88.7165 5.4375 88.7165 3.7991C88.7165 2.60417 87.8723 1.69257 86.6905 1.69257H85.2796L84.1701 6.82953ZM95.321 8.51721C97.974 8.51721 100 6.37373 100 3.68823C100 1.43388 98.2635 0.0172119 96.0445 0.0172119C93.3915 0.0172119 91.3655 2.14837 91.3655 4.83388C91.3655 7.08823 93.09 8.51721 95.321 8.51721ZM93.1624 4.72301C93.1624 6.10272 94.1271 6.96504 95.4175 6.96504C96.9731 6.96504 98.2032 5.57301 98.2032 3.81141C98.2032 2.4317 97.2264 1.56939 95.936 1.56939C94.3803 1.56939 93.1624 2.96142 93.1624 4.72301Z" fill="#C70F5A" fill-rule="evenodd"></path></symbol></defs></svg><div style="display:contents"><a class="ui-search-header--exhibitor__link ui-search-link" href="https://lista.mercadolivre.com.br/_Deal_entrefechas?utm_source=TSB+ACHADOS+DA+SEMANA&utm_medium=TSB+ACHADOS+DA+SEMANA&utm_id=TSB+ACHADOS+DA+SEMANA#DEAL_ID=MLB10205&S=MKT&V=1&T=TSB&L=MKT_T1_ENTRE_FECHAS_ACHADOS"><img alt="banner" class="ui-search-header--exhibitor__link__image" decoding="async" src="https://http2.mlstatic.com/D_NQ_NP_610237-MLA50807376051_072022-OO.jpg"/></a></div><section class="ui-search-top-keywords"><ul class="ui-search-top-keywords__list"><li class="ui-search-top-keywords__item">Buscas relacionadas</li><li class="ui-search-top-keywords__item"><a class="ui-search-top-keywords__link" href="https://lista.mercadolivre.com.br/intel-core-i5-8-geraçao#topkeyword">intel core i5 8 geracao</a></li><li class="ui-search-top-keywords__item"><a class="ui-search-top-keywords__link" href="https://lista.mercadolivre.com.br/montar-pc-pichau#topkeyword">montar pc pichau</a></li><li class="ui-search-top-keywords__item"><a class="ui-search-top-keywords__link" href="https://lista.mercadolivre.com.br/hackintosh#topkeyword">hackintosh</a></li><li class="ui-search-top-keywords__item"><a class="ui-search-top-keywords__link" href="https://lista.mercadolivre.com.br/impressora-portatil-a4#topkeyword">impressora portatil a4</a></li><li class="ui-search-top-keywords__item"><a class="ui-search-top-keywords__link" href="https://lista.mercadolivre.com.br/notebook-com-impressora#topkeyword">notebook com impressora</a></li><li class="ui-search-top-keywords__item"><a class="ui-search-top-keywords__link" href="https://lista.mercadolivre.com.br/tablet-windows#topkeyword">tablet windows</a></li><li class="ui-search-top-keywords__item"><a class="ui-search-top-keywords__link" href="https://lista.mercadolivre.com.br/computador-barato#topkeyword">computador barato</a></li></ul></section><div class="ui-search-main ui-search-main--exhibitor ui-search-main--only-products ui-search-main--with-topkeywords"><aside class="ui-search-sidebar"><div class="ui-search-breadcrumb"><ol class="andes-breadcrumb" itemscope="" itemtype="http://schema.org/BreadcrumbList"><li class="andes-breadcrumb__item" itemprop="itemListElement" itemscope="" itemtype="http://schema.org/ListItem"><a class="andes-breadcrumb__link" href="https://www.mercadolivre.com.br/c/informatica" itemprop="item" title="Informática"><span itemprop="name">Informática</span></a><meta content="1" itemprop="position"/></li></ol><h1 class="ui-search-breadcrumb__title">Computador</h1></div><div class="ui-search-search-result"><span class="ui-search-search-result__quantity-results">547.937 resultado</span></div><section class="ui-search-filter-groups"><div class="ui-search-filter-dl"><ul><li class="ui-search-filter-highlighted ui-search-filter-highlighted-shipping_highlighted_fulfillment"><form action="https://informatica.mercadolivre.com.br/computador_Frete_Full_NoIndex_True#applied_filter_id%3Dshipping_highlighted_fulfillment%26applied_filter_name%3DTipo+de+envio%26applied_filter_order%3D1%26applied_value_id%3Dfulfillment%26applied_value_name%3DFull%26applied_value_order%3D1%26applied_value_results%3D28144%26is_custom%3Dfalse" class="ui-search-filter-highlighted__container"><button class="ui-search-filter-highlighted__content ui-search-filter-highlighted__content-button" name="button" type="submit"><label class="ui-search-filter-highlighted__title ui-search-icon-label" for="shipping_highlighted_fulfillment"><svg aria-label="full" class="ui-search-icon ui-search-icon--full" viewbox="0 0 100 32" xmlns="http://www.w3.org/2000/svg"><use href="#full"></use></svg> economiza frete</label><label class="ui-search-filter-highlighted__subtitle ui-search-icon-label" for="shipping_highlighted_fulfillment">Em carrinhos de compras</label></button><div class="ui-search-filter-highlighted__switch-container"><div class="andes-checkbox andes-switch ui-search-filter-highlighted__switch-icon andes-checkbox--default andes-checkbox--default andes-checkbox--without-label"><input autocomplete="off" class="andes-checkbox__input" id="shipping_highlighted_fulfillment" role="switch" type="checkbox"/></div></div></form></li></ul></div><div class="ui-search-filter-dl"><ul><li class="ui-search-filter-highlighted ui-search-filter-highlighted-shipping_cost_highlighted"><form action="https://informatica.mercadolivre.com.br/computador_CustoFrete_Gratis_NoIndex_True#applied_filter_id%3Dshipping_cost_highlighted%26applied_filter_name%3DCusto+do+frete%26applied_filter_order%3D2%26applied_value_id%3Dfree%26applied_value_name%3DGratis%26applied_value_order%3D1%26applied_value_results%3D482501%26is_custom%3Dfalse" class="ui-search-filter-highlighted__container"><button class="ui-search-filter-highlighted__content ui-search-filter-highlighted__content-button" name="button" type="submit"><label class="ui-search-filter-highlighted__title ui-search-icon-label" for="shipping_cost_highlighted">Frete grátis</label></button><div class="ui-search-filter-highlighted__switch-container"><div class="andes-checkbox andes-switch ui-search-filter-highlighted__switch-icon andes-checkbox--default andes-checkbox--default andes-checkbox--without-label"><input autocomplete="off" class="andes-checkbox__input" id="shipping_cost_highlighted" role="switch" type="checkbox"/></div></div></form></li></ul></div><div class="ui-search-filter-dl"><ul><li class="ui-search-filter-highlighted ui-search-filter-highlighted-SHIPPING_ORIGIN_HIGHLIGHTED"><form action="https://informatica.mercadolivre.com.br/computador_NoIndex_True_SHIPPING*ORIGIN_10215069#applied_filter_id%3DSHIPPING_ORIGIN_HIGHLIGHTED%26applied_filter_name%3DOrigem+do+frete%26applied_filter_order%3D3%26applied_value_id%3D10215069%26applied_value_name%3DInternacional%26applied_value_order%3D1%26applied_value_results%3D1319%26is_custom%3Dfalse" class="ui-search-filter-highlighted__container"><button class="ui-search-filter-highlighted__content ui-search-filter-highlighted__content-button" name="button" type="submit"><label class="ui-search-filter-highlighted__title ui-search-icon-label" for="SHIPPING_ORIGIN_HIGHLIGHTED"><svg class="ui-search-icon ui-search-icon--international-filter-cbt" fill="none" height="16" viewbox="0 0 156 16" width="156" xmlns="http://www.w3.org/2000/svg"><circle cx="8.00019" cy="8.00019" r="7.1" stroke="#1F4E96" stroke-width="1.4"></circle><path d="M2.38083 3.22679C2.58026 4.1877 3.79511 6.49183 4.71976 7.79722C5.15489 11.0063 6.78987 12.982 6.78987 12.982C7.77304 13.3164 8.75751 9.41797 8.7991 8.28674C8.85349 6.60061 6.42402 7.45274 5.15489 7.68844C4.88294 7.36209 4.90469 6.209 5.64441 5.51279C6.56906 4.64253 9.80241 1.53423 9.20411 0.827148" stroke="#1F4E96" stroke-linejoin="round" stroke-width="1.4"></path><path d="M13.1512 2.57544C12.4622 3.22813 11.2692 4.91425 12.009 6.43721C12.7487 7.96017 14.4928 9.39247 15.2724 9.91825" stroke="#1F4E96" stroke-width="1.4"></path><path d="M24.092 11.632C25.049 11.632 26.27 11.291 27.117 10.213L25.907 9.399C25.489 9.916 24.807 10.246 24.18 10.246C22.915 10.246 22.123 9.388 22.123 8.244C22.123 6.627 23.289 5.428 24.675 5.428C25.522 5.428 26.226 5.846 26.512 6.627L28.008 6.121C27.579 5.01 26.545 4.042 24.752 4.042C22.475 4.042 20.484 5.747 20.484 8.343C20.484 10.345 22.068 11.632 24.092 11.632ZM31.719 11.632C34.139 11.632 35.987 9.718 35.987 7.32C35.987 5.307 34.403 4.042 32.379 4.042C29.959 4.042 28.111 5.945 28.111 8.343C28.111 10.356 29.684 11.632 31.719 11.632ZM31.807 10.246C30.63 10.246 29.75 9.476 29.75 8.244C29.75 6.671 30.861 5.428 32.28 5.428C33.457 5.428 34.348 6.198 34.348 7.43C34.348 9.003 33.226 10.246 31.807 10.246ZM44.1231 11.5L45.7401 4.163H43.4851L40.6911 8.75L39.9211 4.163H37.7871L36.1701 11.5H37.7321L38.8981 6.209L39.8001 11.5H40.4821L43.7161 6.209L42.5501 11.5H44.1231ZM47.1422 11.5L47.7252 8.882H49.5622C51.8612 8.882 52.5982 7.287 52.5982 6.198C52.5982 5.087 51.7292 4.163 50.5522 4.163H47.1972L45.5802 11.5H47.1422ZM49.6502 7.507H48.0222L48.4622 5.538H50.0572C50.5962 5.538 50.9702 5.879 50.9702 6.363C50.9702 7.012 50.4422 7.507 49.6612 7.507H49.6502ZM58.4062 11.5L57.3832 8.783C58.5712 8.563 59.4732 7.551 59.4732 6.231C59.4732 4.955 58.3952 4.163 57.2072 4.163H54.0722L52.4552 11.5H54.0172L54.5892 8.893H55.7992L56.6682 11.5H58.4062ZM56.5252 7.518H54.8972L55.3372 5.538H56.9102C57.3942 5.538 57.8452 5.89 57.8452 6.385C57.8452 7.045 57.3502 7.518 56.5362 7.518H56.5252ZM66.3656 11.5L65.1556 4.163H63.1976L58.7536 11.5H60.6126L61.3386 10.257H64.4846L64.6716 11.5H66.3656ZM64.3636 8.882H62.0756L63.9126 5.725L64.3636 8.882ZM71.4303 11.5L73.0473 4.163H71.4853L69.8683 11.5H71.4303ZM79.4539 11.5L81.0709 4.163H79.5089L78.4639 8.838L76.1099 4.163H74.5039L72.8869 11.5H74.4489L75.5269 6.638L77.9469 11.5H79.4539ZM84.1676 11.5L85.4766 5.538H87.6216L87.9186 4.163H82.0666L81.7696 5.538H83.9146L82.5946 11.5H84.1676ZM92.4949 11.5L92.7919 10.125H89.1729L89.5359 8.453H93.0889L93.3859 7.078H89.8439L90.1849 5.538H93.8039L94.1119 4.163H88.9199L87.3029 11.5H92.4949ZM99.667 11.5L98.644 8.783C99.832 8.563 100.734 7.551 100.734 6.231C100.734 4.955 99.656 4.163 98.468 4.163H95.333L93.716 11.5H95.278L95.85 8.893H97.06L97.929 11.5H99.667ZM97.786 7.518H96.158L96.598 5.538H98.171C98.655 5.538 99.106 5.89 99.106 6.385C99.106 7.045 98.611 7.518 97.797 7.518H97.786ZM107.351 11.5L108.968 4.163H107.406L106.361 8.838L104.007 4.163H102.401L100.784 11.5H102.346L103.424 6.638L105.844 11.5H107.351ZM115.64 11.5L114.43 4.163H112.472L108.028 11.5H109.887L110.613 10.257H113.759L113.946 11.5H115.64ZM113.638 8.882H111.35L113.187 5.725L113.638 8.882ZM119.794 11.632C120.751 11.632 121.972 11.291 122.819 10.213L121.609 9.399C121.191 9.916 120.509 10.246 119.882 10.246C118.617 10.246 117.825 9.388 117.825 8.244C117.825 6.627 118.991 5.428 120.377 5.428C121.224 5.428 121.928 5.846 122.214 6.627L123.71 6.121C123.281 5.01 122.247 4.042 120.454 4.042C118.177 4.042 116.186 5.747 116.186 8.343C116.186 10.345 117.77 11.632 119.794 11.632ZM124.948 11.5L126.565 4.163H125.003L123.386 11.5H124.948ZM130.364 11.632C132.784 11.632 134.632 9.718 134.632 7.32C134.632 5.307 133.048 4.042 131.024 4.042C128.604 4.042 126.756 5.945 126.756 8.343C126.756 10.356 128.329 11.632 130.364 11.632ZM130.452 10.246C129.275 10.246 128.395 9.476 128.395 8.244C128.395 6.671 129.506 5.428 130.925 5.428C132.102 5.428 132.993 6.198 132.993 7.43C132.993 9.003 131.871 10.246 130.452 10.246ZM141.383 11.5L143 4.163H141.438L140.393 8.838L138.039 4.163H136.433L134.816 11.5H136.378L137.456 6.638L139.876 11.5H141.383ZM149.671 11.5L148.461 4.163H146.503L142.059 11.5H143.918L144.644 10.257H147.79L147.977 11.5H149.671ZM147.669 8.882H145.381L147.218 5.725L147.669 8.882ZM154.958 11.5L155.255 10.125H152.153L153.473 4.163H151.9L150.283 11.5H154.958Z" fill="#1F4E96"></path></svg> </label><label class="ui-search-filter-highlighted__subtitle ui-search-icon-label" for="SHIPPING_ORIGIN_HIGHLIGHTED">Frete grátis do mundo até sua casa</label></button><div class="ui-search-filter-highlighted__switch-container"><div class="andes-checkbox andes-switch ui-search-filter-highlighted__switch-icon andes-checkbox--default andes-checkbox--default andes-checkbox--without-label"><input autocomplete="off" class="andes-checkbox__input" id="SHIPPING_ORIGIN_HIGHLIGHTED" role="switch" type="checkbox"/></div></div></form></li></ul></div><div class="ui-search-filter-dl"><div aria-level="3" class="ui-search-filter-dt-title" role="heading">Categorias</div><ul><li class="ui-search-filter-container"><a aria-label="Portáteis e Acessórios" class="ui-search-link" href="https://informatica.mercadolivre.com.br/portateis-e-acessorios/computador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430687%26applied_value_name%3DPort%C3%A1teis+e+Acess%C3%B3rios%26applied_value_order%3D13%26applied_value_results%3D9850%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Portáteis e Acessórios</span><span class="ui-search-filter-results-qty">(9.850)</span></a></li><li class="ui-search-filter-container"><a aria-label="PC de Mesa" class="ui-search-link" href="https://informatica.mercadolivre.com.br/pc-mesa/computador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430637%26applied_value_name%3DPC+de+Mesa%26applied_value_order%3D11%26applied_value_results%3D472826%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">PC de Mesa</span><span class="ui-search-filter-results-qty">(472.826)</span></a></li><li class="ui-search-filter-container"><a aria-label="Componentes para PC" class="ui-search-link" href="https://informatica.mercadolivre.com.br/componentes-pc/computador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB1712%26applied_value_name%3DComponentes+para+PC%26applied_value_order%3D5%26applied_value_results%3D31486%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Componentes para PC</span><span class="ui-search-filter-results-qty">(31.486)</span></a></li><li class="ui-search-filter-container"><a aria-label="Periféricos para PC" class="ui-search-link" href="https://informatica.mercadolivre.com.br/perifericos-pc/computador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB454379%26applied_value_name%3DPerif%C3%A9ricos+para+PC%26applied_value_order%3D12%26applied_value_results%3D22779%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Periféricos para PC</span><span class="ui-search-filter-results-qty">(22.779)</span></a></li><li class="ui-search-filter-container"><a aria-label="Armazenamento" class="ui-search-link" href="https://informatica.mercadolivre.com.br/armazenamento/computador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430598%26applied_value_name%3DArmazenamento%26applied_value_order%3D3%26applied_value_results%3D17238%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Armazenamento</span><span class="ui-search-filter-results-qty">(17.238)</span></a></li><li class="ui-search-filter-container"><a aria-label="Monitores e Acessórios" class="ui-search-link" href="https://informatica.mercadolivre.com.br/monitores/computador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB14370%26applied_value_name%3DMonitores+e+Acess%C3%B3rios%26applied_value_order%3D10%26applied_value_results%3D4925%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Monitores e Acessórios</span><span class="ui-search-filter-results-qty">(4.925)</span></a></li><li class="ui-search-filter-container"><a aria-label="Acessórios para PC Gaming" class="ui-search-link" href="https://informatica.mercadolivre.com.br/acessorios-pc-gaming/computador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB447778%26applied_value_name%3DAcess%C3%B3rios+para+PC+Gaming%26applied_value_order%3D2%26applied_value_results%3D1759%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Acessórios para PC Gaming</span><span class="ui-search-filter-results-qty">(1.759)</span></a></li><li class="ui-search-filter-container"><a aria-label="Cabos e Hubs USB" class="ui-search-link" href="https://informatica.mercadolivre.com.br/cabos-e-hubs-usb/computador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430918%26applied_value_name%3DCabos+e+Hubs+USB%26applied_value_order%3D4%26applied_value_results%3D1231%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Cabos e Hubs USB</span><span class="ui-search-filter-results-qty">(1.231)</span></a></li><li class="ui-search-filter-container"><a aria-label="Limpeza de PCs" class="ui-search-link" href="https://informatica.mercadolivre.com.br/limpeza-pcs/computador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB99944%26applied_value_name%3DLimpeza+de+PCs%26applied_value_order%3D9%26applied_value_results%3D1055%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Limpeza de PCs</span><span class="ui-search-filter-results-qty">(1.055)</span></a></li><li><a class="ui-search-modal__link ui-search-modal--default ui-search-link" href="https://lista.mercadolivre.com.br/computador_FiltersAvailableSidebar?filter=category">Mostrar mais</a></li></ul></div><div class="ui-search-filter-dl"><div aria-level="3" class="ui-search-filter-dt-title" role="heading">Processador</div><ul><li class="ui-search-filter-container"><a aria-label="Intel Core i5" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_PROCESSOR*TYPE_345574#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345574%26applied_value_name%3DIntel+Core+i5%26applied_value_order%3D19%26applied_value_results%3D143008%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Intel Core i5</span><span class="ui-search-filter-results-qty">(143.008)</span></a></li><li class="ui-search-filter-container"><a aria-label="Intel Core i3" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_PROCESSOR*TYPE_345573#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345573%26applied_value_name%3DIntel+Core+i3%26applied_value_order%3D18%26applied_value_results%3D50132%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Intel Core i3</span><span class="ui-search-filter-results-qty">(50.132)</span></a></li><li class="ui-search-filter-container"><a aria-label="Intel Core i7" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_PROCESSOR*TYPE_345575#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345575%26applied_value_name%3DIntel+Core+i7%26applied_value_order%3D20%26applied_value_results%3D42040%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Intel Core i7</span><span class="ui-search-filter-results-qty">(42.040)</span></a></li><li class="ui-search-filter-container"><a aria-label="Intel Core 2 Duo" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_PROCESSOR*TYPE_345571#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345571%26applied_value_name%3DIntel+Core+2+Duo%26applied_value_order%3D16%26applied_value_results%3D15479%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Intel Core 2 Duo</span><span class="ui-search-filter-results-qty">(15.479)</span></a></li><li class="ui-search-filter-container"><a aria-label="Intel Dual Core" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_PROCESSOR*TYPE_345576#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345576%26applied_value_name%3DIntel+Dual+Core%26applied_value_order%3D21%26applied_value_results%3D7212%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Intel Dual Core</span><span class="ui-search-filter-results-qty">(7.212)</span></a></li><li class="ui-search-filter-container"><a aria-label="Intel Celeron" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_PROCESSOR*TYPE_345570#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345570%26applied_value_name%3DIntel+Celeron%26applied_value_order%3D15%26applied_value_results%3D4573%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Intel Celeron</span><span class="ui-search-filter-results-qty">(4.573)</span></a></li><li class="ui-search-filter-container"><a aria-label="AMD A6" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_PROCESSOR*TYPE_2785903#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D2785903%26applied_value_name%3DAMD+A6%26applied_value_order%3D3%26applied_value_results%3D4221%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">AMD A6</span><span class="ui-search-filter-results-qty">(4.221)</span></a></li><li class="ui-search-filter-container"><a aria-label="AMD A8" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_PROCESSOR*TYPE_2785904#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D2785904%26applied_value_name%3DAMD+A8%26applied_value_order%3D4%26applied_value_results%3D3430%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">AMD A8</span><span class="ui-search-filter-results-qty">(3.430)</span></a></li><li class="ui-search-filter-container"><a aria-label="AMD Athlon" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_PROCESSOR*TYPE_345562#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345562%26applied_value_name%3DAMD+Athlon%26applied_value_order%3D5%26applied_value_results%3D2462%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">AMD Athlon</span><span class="ui-search-filter-results-qty">(2.462)</span></a></li><li><a class="ui-search-modal__link ui-search-modal--default ui-search-link" href="https://lista.mercadolivre.com.br/computador_FiltersAvailableSidebar?filter=PROCESSOR_TYPE">Mostrar mais</a></li></ul></div><div class="ui-search-filter-dl"><div aria-level="3" class="ui-search-filter-dt-title" role="heading">Tipo de envio</div><ul><li class="ui-search-filter-container"><a aria-label="Full" class="ui-search-filter-icon ui-search-link" href="https://informatica.mercadolivre.com.br/computador_Frete_Full_NoIndex_True#applied_filter_id%3Dshipping%26applied_filter_name%3DTipo+de+envio%26applied_filter_order%3D6%26applied_value_id%3Dfulfillment%26applied_value_name%3DFull%26applied_value_order%3D1%26applied_value_results%3D28144%26is_custom%3Dfalse" rel="nofollow"><svg aria-label="full" class="ui-search-icon ui-search-icon--full ui-search-filter-icon--full" viewbox="0 0 100 32" xmlns="http://www.w3.org/2000/svg"><use href="#full"></use></svg><span class="ui-search-filter-results-qty">(28.144)</span></a></li></ul></div><div class="ui-search-filter-dl"><div aria-level="3" class="ui-search-filter-dt-title" role="heading">RAM</div><ul><li class="ui-search-filter-container"><a aria-label="Menos de 8 GB" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_RAM*SIZE_*-8GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%28*-8GB%29%26applied_value_name%3DMenos+de+8+GB%26applied_value_order%3D5%26applied_value_results%3D111258%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Menos de 8 GB</span><span class="ui-search-filter-results-qty">(111.258)</span></a></li><li class="ui-search-filter-container"><a aria-label="8 a 15 GB" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_RAM*SIZE_8GB-16GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B8GB-16GB%29%26applied_value_name%3D8+a+15+GB%26applied_value_order%3D4%26applied_value_results%3D212842%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">8 a 15 GB</span><span class="ui-search-filter-results-qty">(212.842)</span></a></li><li class="ui-search-filter-container"><a aria-label="16 a 31 GB" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_RAM*SIZE_16GB-32GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B16GB-32GB%29%26applied_value_name%3D16+a+31+GB%26applied_value_order%3D2%26applied_value_results%3D111082%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">16 a 31 GB</span><span class="ui-search-filter-results-qty">(111.082)</span></a></li><li class="ui-search-filter-container"><a aria-label="32 a 127 GB" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_RAM*SIZE_32GB-128GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B32GB-128GB%29%26applied_value_name%3D32+a+127+GB%26applied_value_order%3D3%26applied_value_results%3D24098%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">32 a 127 GB</span><span class="ui-search-filter-results-qty">(24.098)</span></a></li><li class="ui-search-filter-container"><a aria-label="128 GB ou mais" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_RAM*SIZE_128GB-*#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B128GB-*%29%26applied_value_name%3D128+GB+ou+mais%26applied_value_order%3D1%26applied_value_results%3D3606%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">128 GB ou mais</span><span class="ui-search-filter-results-qty">(3.606)</span></a></li><li><form class="ui-search-price-filter ui-search-filter-range--RAM_SIZE" method="post"><div class="ui-search-price-filter-container"><div class="andes-form-control andes-form-control--textfield andes-form-control--default"><label><div class="andes-visually-hidden"><span class="andes-form-control__label"></span></div><div class="andes-form-control__control"><input class="andes-form-control__field" data-testid="Minimum-RAM_SIZE" enterkeyhint="go" maxlength="120" name="Minimum" pattern="[0-9]*" placeholder="Mínimo" rows="1"/></div></label><div class="andes-form-control__bottom"><span class="andes-form-control__message"></span></div></div></div><div class="ui-search-price-filter-container"><div class="andes-form-control andes-form-control--textfield andes-form-control--default"><label><div class="andes-visually-hidden"><span class="andes-form-control__label"></span></div><div class="andes-form-control__control"><input class="andes-form-control__field" data-testid="Maximum-RAM_SIZE" enterkeyhint="go" maxlength="120" name="Maximum" pattern="[0-9]*" placeholder="Máximo" rows="1"/></div></label><div class="andes-form-control__bottom"><span class="andes-form-control__message"></span></div></div></div><div class="ui-search-price-filter-container"><button aria-label="Aplicar" class="ui-search-price-filter-action-btn" data-testid="submit-RAM_SIZE" disabled="" type="submit"><svg fill="rgba(0, 0, 0, 0.9)" height="20" viewbox="0 0 20 20" width="20"><path d="M8.27686 4.34644L7.42834 5.19496L12.224 9.99059L7.42334 14.7912L8.27187 15.6397L13.921 9.99059L8.27686 4.34644Z" fill="rgba(0, 0, 0, 0.9)"></path></svg></button></div></form></li></ul></div><div class="ui-search-filter-dl"><div aria-level="3" class="ui-search-filter-dt-title" role="heading">Condição</div><ul><li class="ui-search-filter-container"><a aria-label="Novo" class="ui-search-link" href="https://informatica.mercadolivre.com.br/novo/computador_NoIndex_True#applied_filter_id%3DITEM_CONDITION%26applied_filter_name%3DCondi%C3%A7%C3%A3o%26applied_filter_order%3D8%26applied_value_id%3D2230284%26applied_value_name%3DNovo%26applied_value_order%3D1%26applied_value_results%3D463327%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Novo</span><span class="ui-search-filter-results-qty">(463.327)</span></a></li><li class="ui-search-filter-container"><a aria-label="Usado" class="ui-search-link" href="https://informatica.mercadolivre.com.br/usado/computador_NoIndex_True#applied_filter_id%3DITEM_CONDITION%26applied_filter_name%3DCondi%C3%A7%C3%A3o%26applied_filter_order%3D8%26applied_value_id%3D2230581%26applied_value_name%3DUsado%26applied_value_order%3D3%26applied_value_results%3D57168%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Usado</span><span class="ui-search-filter-results-qty">(57.168)</span></a></li><li class="ui-search-filter-container"><a aria-label="Recondicionado" class="ui-search-link" href="https://informatica.mercadolivre.com.br/recondicionado/computador_NoIndex_True#applied_filter_id%3DITEM_CONDITION%26applied_filter_name%3DCondi%C3%A7%C3%A3o%26applied_filter_order%3D8%26applied_value_id%3D2230582%26applied_value_name%3DRecondicionado%26applied_value_order%3D2%26applied_value_results%3D27089%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Recondicionado</span><span class="ui-search-filter-results-qty">(27.089)</span></a></li></ul></div><div class="ui-search-filter-dl"><div aria-level="3" class="ui-search-filter-dt-title" role="heading">Monitor</div><ul><li class="ui-search-filter-container"><a aria-label="Com monitor" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_WITH*MONITOR_242085#applied_filter_id%3DWITH_MONITOR%26applied_filter_name%3DMonitor%26applied_filter_order%3D9%26applied_value_id%3D242085%26applied_value_name%3DCom+monitor%26applied_value_order%3D1%26applied_value_results%3D66227%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Com monitor</span><span class="ui-search-filter-results-qty">(66.227)</span></a></li><li class="ui-search-filter-container"><a aria-label="Sem monitor" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_WITH*MONITOR_242084#applied_filter_id%3DWITH_MONITOR%26applied_filter_name%3DMonitor%26applied_filter_order%3D9%26applied_value_id%3D242084%26applied_value_name%3DSem+monitor%26applied_value_order%3D2%26applied_value_results%3D25242%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Sem monitor</span><span class="ui-search-filter-results-qty">(25.242)</span></a></li></ul></div><div class="ui-search-filter-dl"><div aria-level="3" class="ui-search-filter-dt-title" role="heading">Custo do frete</div><ul><li class="ui-search-filter-container"><a aria-label="Gratis" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_CustoFrete_Gratis_NoIndex_True#applied_filter_id%3Dshipping_cost%26applied_filter_name%3DCusto+do+frete%26applied_filter_order%3D10%26applied_value_id%3Dfree%26applied_value_name%3DGratis%26applied_value_order%3D1%26applied_value_results%3D482501%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Gratis</span><span class="ui-search-filter-results-qty">(482.501)</span></a></li></ul></div><div class="ui-search-filter-dl"><div aria-level="3" class="ui-search-filter-dt-title" role="heading">Preço</div><ul><li class="ui-search-filter-container"><a aria-label="Até R$1.000" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_PriceRange_0-1000_NoIndex_True#applied_filter_id%3Dprice%26applied_filter_name%3DPre%C3%A7o%26applied_filter_order%3D11%26applied_value_id%3D*-1000.0%26applied_value_name%3DAt%C3%A9+R%241.000%26applied_value_order%3D1%26applied_value_results%3D111610%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Até R$1.000</span><span class="ui-search-filter-results-qty">(111.610)</span></a></li><li class="ui-search-filter-container"><a aria-label="R$1.000 a R$2.000" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_PriceRange_1000-2000_NoIndex_True#applied_filter_id%3Dprice%26applied_filter_name%3DPre%C3%A7o%26applied_filter_order%3D11%26applied_value_id%3D1000.0-2000.0%26applied_value_name%3DR%241.000+a+R%242.000%26applied_value_order%3D2%26applied_value_results%3D194636%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">R$1.000 a R$2.000</span><span class="ui-search-filter-results-qty">(194.636)</span></a></li><li class="ui-search-filter-container"><a aria-label="Mais de R$2.000" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_PriceRange_2000-0_NoIndex_True#applied_filter_id%3Dprice%26applied_filter_name%3DPre%C3%A7o%26applied_filter_order%3D11%26applied_value_id%3D2000.0-*%26applied_value_name%3DMais+de+R%242.000%26applied_value_order%3D3%26applied_value_results%3D241690%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Mais de R$2.000</span><span class="ui-search-filter-results-qty">(241.690)</span></a></li><li><form class="ui-search-price-filter ui-search-filter-range--price" method="post"><div class="ui-search-price-filter-container"><div class="andes-form-control andes-form-control--textfield andes-form-control--default"><label><div class="andes-visually-hidden"><span class="andes-form-control__label"></span></div><div class="andes-form-control__control"><input class="andes-form-control__field" data-testid="Minimum-price" enterkeyhint="go" maxlength="120" name="Minimum" pattern="[0-9]*" placeholder="Mínimo" rows="1"/></div></label><div class="andes-form-control__bottom"><span class="andes-form-control__message"></span></div></div></div><div class="ui-search-price-filter-container"><div class="andes-form-control andes-form-control--textfield andes-form-control--default"><label><div class="andes-visually-hidden"><span class="andes-form-control__label"></span></div><div class="andes-form-control__control"><input class="andes-form-control__field" data-testid="Maximum-price" enterkeyhint="go" maxlength="120" name="Maximum" pattern="[0-9]*" placeholder="Máximo" rows="1"/></div></label><div class="andes-form-control__bottom"><span class="andes-form-control__message"></span></div></div></div><div class="ui-search-price-filter-container"><button aria-label="Aplicar" class="ui-search-price-filter-action-btn" data-testid="submit-price" disabled="" type="submit"><svg fill="rgba(0, 0, 0, 0.9)" height="20" viewbox="0 0 20 20" width="20"><path d="M8.27686 4.34644L7.42834 5.19496L12.224 9.99059L7.42334 14.7912L8.27187 15.6397L13.921 9.99059L8.27686 4.34644Z" fill="rgba(0, 0, 0, 0.9)"></path></svg></button></div></form></li></ul></div><div class="ui-search-filter-dl"><div aria-level="3" class="ui-search-filter-dt-title" role="heading">Sistema operativo</div><ul><li class="ui-search-filter-container"><a aria-label="Windows 10" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_OPERATIVE*SYSTEM_345583#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345583%26applied_value_name%3DWindows+10%26applied_value_order%3D4%26applied_value_results%3D289975%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Windows 10</span><span class="ui-search-filter-results-qty">(289.975)</span></a></li><li class="ui-search-filter-container"><a aria-label="Windows 7" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_OPERATIVE*SYSTEM_345585#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345585%26applied_value_name%3DWindows+7%26applied_value_order%3D5%26applied_value_results%3D14160%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Windows 7</span><span class="ui-search-filter-results-qty">(14.160)</span></a></li><li class="ui-search-filter-container"><a aria-label="Linux" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_OPERATIVE*SYSTEM_345588#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345588%26applied_value_name%3DLinux%26applied_value_order%3D2%26applied_value_results%3D4749%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Linux</span><span class="ui-search-filter-results-qty">(4.749)</span></a></li><li class="ui-search-filter-container"><a aria-label="Mac OS" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_OPERATIVE*SYSTEM_345589#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345589%26applied_value_name%3DMac+OS%26applied_value_order%3D3%26applied_value_results%3D263%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Mac OS</span><span class="ui-search-filter-results-qty">(263)</span></a></li><li class="ui-search-filter-container"><a aria-label="Windows XP" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_OPERATIVE*SYSTEM_345587#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345587%26applied_value_name%3DWindows+XP%26applied_value_order%3D7%26applied_value_results%3D175%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Windows XP</span><span class="ui-search-filter-results-qty">(175)</span></a></li><li class="ui-search-filter-container"><a aria-label="Windows 8" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_OPERATIVE*SYSTEM_345584#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345584%26applied_value_name%3DWindows+8%26applied_value_order%3D6%26applied_value_results%3D175%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Windows 8</span><span class="ui-search-filter-results-qty">(175)</span></a></li><li class="ui-search-filter-container"><a aria-label="Chrome OS" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_OPERATIVE*SYSTEM_345582#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345582%26applied_value_name%3DChrome+OS%26applied_value_order%3D1%26applied_value_results%3D87%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Chrome OS</span><span class="ui-search-filter-results-qty">(87)</span></a></li></ul></div><div class="ui-search-filter-dl"><div aria-level="3" class="ui-search-filter-dt-title" role="heading">Localização</div><ul><li class="ui-search-filter-container"><a aria-label="São Paulo" class="ui-search-link" href="https://informatica.mercadolivre.com.br/sao-paulo/computador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFNBT085N2E4%26applied_value_name%3DS%C3%A3o+Paulo%26applied_value_order%3D17%26applied_value_results%3D341163%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">São Paulo</span><span class="ui-search-filter-results-qty">(341.163)</span></a></li><li class="ui-search-filter-container"><a aria-label="Minas Gerais" class="ui-search-link" href="https://informatica.mercadolivre.com.br/minas-gerais/computador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUE1JTlMxNTAyZA%26applied_value_name%3DMinas+Gerais%26applied_value_order%3D7%26applied_value_results%3D101232%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Minas Gerais</span><span class="ui-search-filter-results-qty">(101.232)</span></a></li><li class="ui-search-filter-container"><a aria-label="Santa Catarina" class="ui-search-link" href="https://informatica.mercadolivre.com.br/santa-catarina/computador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFNBTkE5Nzc4%26applied_value_name%3DSanta+Catarina%26applied_value_order%3D16%26applied_value_results%3D48813%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Santa Catarina</span><span class="ui-search-filter-results-qty">(48.813)</span></a></li><li class="ui-search-filter-container"><a aria-label="Paraná" class="ui-search-link" href="https://informatica.mercadolivre.com.br/parana/computador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFBBUkExODBlZA%26applied_value_name%3DParan%C3%A1%26applied_value_order%3D8%26applied_value_results%3D24010%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Paraná</span><span class="ui-search-filter-results-qty">(24.010)</span></a></li><li class="ui-search-filter-container"><a aria-label="Rio de Janeiro" class="ui-search-link" href="https://informatica.mercadolivre.com.br/rio-de-janeiro/computador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFJJT08xODM5Zg%26applied_value_name%3DRio+de+Janeiro%26applied_value_order%3D12%26applied_value_results%3D15303%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Rio de Janeiro</span><span class="ui-search-filter-results-qty">(15.303)</span></a></li><li class="ui-search-filter-container"><a aria-label="Rio Grande do Sul" class="ui-search-link" href="https://informatica.mercadolivre.com.br/rio-grande-do-sul/computador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFJJT0xkYzM0%26applied_value_name%3DRio+Grande+do+Sul%26applied_value_order%3D14%26applied_value_results%3D6332%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Rio Grande do Sul</span><span class="ui-search-filter-results-qty">(6.332)</span></a></li><li class="ui-search-filter-container"><a aria-label="Espírito Santo" class="ui-search-link" href="https://informatica.mercadolivre.com.br/espirito-santo/computador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUEVTUE8xN2Y3NA%26applied_value_name%3DEsp%C3%ADrito+Santo%26applied_value_order%3D4%26applied_value_results%3D4925%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Espírito Santo</span><span class="ui-search-filter-results-qty">(4.925)</span></a></li><li class="ui-search-filter-container"><a aria-label="Bahia" class="ui-search-link" href="https://informatica.mercadolivre.com.br/bahia/computador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUEJBSEFlYmEx%26applied_value_name%3DBahia%26applied_value_order%3D1%26applied_value_results%3D1671%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Bahia</span><span class="ui-search-filter-results-qty">(1.671)</span></a></li><li class="ui-search-filter-container"><a aria-label="Distrito Federal" class="ui-search-link" href="https://informatica.mercadolivre.com.br/distrito-federal/computador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUERJU0wxMWJhYg%26applied_value_name%3DDistrito+Federal%26applied_value_order%3D3%26applied_value_results%3D1231%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Distrito Federal</span><span class="ui-search-filter-results-qty">(1.231)</span></a></li><li><a class="ui-search-modal__link ui-search-modal--default ui-search-link" href="https://lista.mercadolivre.com.br/computador_FiltersAvailableSidebar?filter=state">Mostrar mais</a></li></ul></div><div class="ui-search-filter-dl"><div aria-level="3" class="ui-search-filter-dt-title" role="heading">Disco rígido</div><ul><li class="ui-search-filter-container"><a aria-label="Menos de 250 GB" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_HDD*SIZE_*-250GB_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%28*-250GB%29%26applied_value_name%3DMenos+de+250+GB%26applied_value_order%3D4%26applied_value_results%3D238084%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Menos de 250 GB</span><span class="ui-search-filter-results-qty">(238.084)</span></a></li><li class="ui-search-filter-container"><a aria-label="250 a 999 GB" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_HDD*SIZE_250GB-1000GB_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%5B250GB-1000GB%29%26applied_value_name%3D250+a+999+GB%26applied_value_order%3D3%26applied_value_results%3D142481%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">250 a 999 GB</span><span class="ui-search-filter-results-qty">(142.481)</span></a></li><li class="ui-search-filter-container"><a aria-label="1.000 a 1.239 GB" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_HDD*SIZE_1000GB-1240GB_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%5B1000GB-1240GB%29%26applied_value_name%3D1.000+a+1.239+GB%26applied_value_order%3D1%26applied_value_results%3D61302%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">1.000 a 1.239 GB</span><span class="ui-search-filter-results-qty">(61.302)</span></a></li><li class="ui-search-filter-container"><a aria-label="1.240 GB ou mais" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_HDD*SIZE_1240GB-*_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%5B1240GB-*%29%26applied_value_name%3D1.240+GB+ou+mais%26applied_value_order%3D2%26applied_value_results%3D11345%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">1.240 GB ou mais</span><span class="ui-search-filter-results-qty">(11.345)</span></a></li><li><form class="ui-search-price-filter ui-search-filter-range--HDD_SIZE" method="post"><div class="ui-search-price-filter-container"><div class="andes-form-control andes-form-control--textfield andes-form-control--default"><label><div class="andes-visually-hidden"><span class="andes-form-control__label"></span></div><div class="andes-form-control__control"><input class="andes-form-control__field" data-testid="Minimum-HDD_SIZE" enterkeyhint="go" maxlength="120" name="Minimum" pattern="[0-9]*" placeholder="Mínimo" rows="1"/></div></label><div class="andes-form-control__bottom"><span class="andes-form-control__message"></span></div></div></div><div class="ui-search-price-filter-container"><div class="andes-form-control andes-form-control--textfield andes-form-control--default"><label><div class="andes-visually-hidden"><span class="andes-form-control__label"></span></div><div class="andes-form-control__control"><input class="andes-form-control__field" data-testid="Maximum-HDD_SIZE" enterkeyhint="go" maxlength="120" name="Maximum" pattern="[0-9]*" placeholder="Máximo" rows="1"/></div></label><div class="andes-form-control__bottom"><span class="andes-form-control__message"></span></div></div></div><div class="ui-search-price-filter-container"><button aria-label="Aplicar" class="ui-search-price-filter-action-btn" data-testid="submit-HDD_SIZE" disabled="" type="submit"><svg fill="rgba(0, 0, 0, 0.9)" height="20" viewbox="0 0 20 20" width="20"><path d="M8.27686 4.34644L7.42834 5.19496L12.224 9.99059L7.42334 14.7912L8.27187 15.6397L13.921 9.99059L8.27686 4.34644Z" fill="rgba(0, 0, 0, 0.9)"></path></svg></button></div></form></li></ul></div><div class="ui-search-filter-dl"><div aria-level="3" class="ui-search-filter-dt-title" role="heading">Tamanho da tela</div><ul><li class="ui-search-filter-container"><a aria-label='Menos de 11,6 "' class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_DISPLAY*SIZE_*-11.6%22#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%28*-11.6%22%29%26applied_value_name%3DMenos+de+11%2C6+%22%26applied_value_order%3D4%26applied_value_results%3D61741%26is_custom%3Dfalse"><span class="ui-search-filter-name">Menos de 11,6 "</span><span class="ui-search-filter-results-qty">(61.741)</span></a></li><li class="ui-search-filter-container"><a aria-label='11,6 a 18,4 "' class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_DISPLAY*SIZE_11.6%22-18.5%22#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%5B11.6%22-18.5%22%29%26applied_value_name%3D11%2C6+a+18%2C4+%22%26applied_value_order%3D1%26applied_value_results%3D36060%26is_custom%3Dfalse"><span class="ui-search-filter-name">11,6 a 18,4 "</span><span class="ui-search-filter-results-qty">(36.060)</span></a></li><li class="ui-search-filter-container"><a aria-label='18,5 a 19,9 "' class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_DISPLAY*SIZE_18.5%22-20%22#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%5B18.5%22-20%22%29%26applied_value_name%3D18%2C5+a+19%2C9+%22%26applied_value_order%3D2%26applied_value_results%3D55497%26is_custom%3Dfalse"><span class="ui-search-filter-name">18,5 a 19,9 "</span><span class="ui-search-filter-results-qty">(55.497)</span></a></li><li class="ui-search-filter-container"><a aria-label='20 " ou mais' class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_DISPLAY*SIZE_20%22-*#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%5B20%22-*%29%26applied_value_name%3D20+%22+ou+mais%26applied_value_order%3D3%26applied_value_results%3D16358%26is_custom%3Dfalse"><span class="ui-search-filter-name">20 " ou mais</span><span class="ui-search-filter-results-qty">(16.358)</span></a></li><li><form class="ui-search-price-filter ui-search-filter-range--DISPLAY_SIZE" method="post"><div class="ui-search-price-filter-container"><div class="andes-form-control andes-form-control--textfield andes-form-control--default"><label><div class="andes-visually-hidden"><span class="andes-form-control__label"></span></div><div class="andes-form-control__control"><input class="andes-form-control__field" data-testid="Minimum-DISPLAY_SIZE" enterkeyhint="go" maxlength="120" name="Minimum" pattern="[0-9]*" placeholder="Mínimo" rows="1"/></div></label><div class="andes-form-control__bottom"><span class="andes-form-control__message"></span></div></div></div><div class="ui-search-price-filter-container"><div class="andes-form-control andes-form-control--textfield andes-form-control--default"><label><div class="andes-visually-hidden"><span class="andes-form-control__label"></span></div><div class="andes-form-control__control"><input class="andes-form-control__field" data-testid="Maximum-DISPLAY_SIZE" enterkeyhint="go" maxlength="120" name="Maximum" pattern="[0-9]*" placeholder="Máximo" rows="1"/></div></label><div class="andes-form-control__bottom"><span class="andes-form-control__message"></span></div></div></div><div class="ui-search-price-filter-container"><button aria-label="Aplicar" class="ui-search-price-filter-action-btn" data-testid="submit-DISPLAY_SIZE" disabled="" type="submit"><svg fill="rgba(0, 0, 0, 0.9)" height="20" viewbox="0 0 20 20" width="20"><path d="M8.27686 4.34644L7.42834 5.19496L12.224 9.99059L7.42334 14.7912L8.27187 15.6397L13.921 9.99059L8.27686 4.34644Z" fill="rgba(0, 0, 0, 0.9)"></path></svg></button></div></form></li></ul></div><div class="ui-search-filter-dl"><div aria-level="3" class="ui-search-filter-dt-title" role="heading">Marca</div><ul><li class="ui-search-filter-container"><a aria-label="Dell" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_BRAND_8216_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8216%26applied_value_name%3DDell%26applied_value_order%3D42%26applied_value_results%3D802%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Dell</span><span class="ui-search-filter-results-qty">(802)</span></a></li><li class="ui-search-filter-container"><a aria-label="HP" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_BRAND_49944_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D49944%26applied_value_name%3DHP%26applied_value_order%3D79%26applied_value_results%3D383%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">HP</span><span class="ui-search-filter-results-qty">(383)</span></a></li><li class="ui-search-filter-container"><a aria-label="Intel" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_BRAND_7855833_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7855833%26applied_value_name%3DIntel%26applied_value_order%3D86%26applied_value_results%3D356%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Intel</span><span class="ui-search-filter-results-qty">(356)</span></a></li><li class="ui-search-filter-container"><a aria-label="Lenovo" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_BRAND_7494_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7494%26applied_value_name%3DLenovo%26applied_value_order%3D102%26applied_value_results%3D255%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Lenovo</span><span class="ui-search-filter-results-qty">(255)</span></a></li><li class="ui-search-filter-container"><a aria-label="Multilaser" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_BRAND_31163_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D31163%26applied_value_name%3DMultilaser%26applied_value_order%3D123%26applied_value_results%3D113%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Multilaser</span><span class="ui-search-filter-results-qty">(113)</span></a></li><li class="ui-search-filter-container"><a aria-label="Mancer" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_BRAND_9705867_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D9705867%26applied_value_name%3DMancer%26applied_value_order%3D112%26applied_value_results%3D112%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Mancer</span><span class="ui-search-filter-results-qty">(112)</span></a></li><li class="ui-search-filter-container"><a aria-label="Shock" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_BRAND_12792850_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D12792850%26applied_value_name%3DShock%26applied_value_order%3D157%26applied_value_results%3D83%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Shock</span><span class="ui-search-filter-results-qty">(83)</span></a></li><li class="ui-search-filter-container"><a aria-label="Logitech" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_BRAND_15788_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D15788%26applied_value_name%3DLogitech%26applied_value_order%3D108%26applied_value_results%3D70%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Logitech</span><span class="ui-search-filter-results-qty">(70)</span></a></li><li class="ui-search-filter-container"><a aria-label="Bematech" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_BRAND_11834_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D11834%26applied_value_name%3DBematech%26applied_value_order%3D23%26applied_value_results%3D54%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Bematech</span><span class="ui-search-filter-results-qty">(54)</span></a></li><li><a class="ui-search-modal__link ui-search-modal--default ui-search-link" href="https://lista.mercadolivre.com.br/computador_FiltersAvailableSidebar?filter=BRAND">Mostrar mais</a></li></ul></div><div class="ui-search-filter-dl"><div aria-level="3" class="ui-search-filter-dt-title" role="heading">Origem do frete</div><ul><li class="ui-search-filter-container"><a aria-label="Local" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_SHIPPING*ORIGIN_10215068#applied_filter_id%3DSHIPPING_ORIGIN%26applied_filter_name%3DOrigem+do+frete%26applied_filter_order%3D17%26applied_value_id%3D10215068%26applied_value_name%3DLocal%26applied_value_order%3D2%26applied_value_results%3D546617%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Local</span><span class="ui-search-filter-results-qty">(546.617)</span></a></li><li class="ui-search-filter-container"><a aria-label="Internacional" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_SHIPPING*ORIGIN_10215069#applied_filter_id%3DSHIPPING_ORIGIN%26applied_filter_name%3DOrigem+do+frete%26applied_filter_order%3D17%26applied_value_id%3D10215069%26applied_value_name%3DInternacional%26applied_value_order%3D1%26applied_value_results%3D1319%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Internacional</span><span class="ui-search-filter-results-qty">(1.319)</span></a></li></ul></div><div class="ui-search-filter-dl"><div aria-level="3" class="ui-search-filter-dt-title" role="heading">Lojas oficiais</div><ul><li class="ui-search-filter-container"><a aria-label="Somente lojas oficiais" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_Loja_all_NoIndex_True#applied_filter_id%3Dofficial_store%26applied_filter_name%3DLojas+oficiais%26applied_filter_order%3D18%26applied_value_id%3Dall%26applied_value_name%3DSomente+lojas+oficiais%26applied_value_order%3D1%26applied_value_results%3D105189%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Somente lojas oficiais</span><span class="ui-search-filter-results-qty">(105.189)</span></a></li></ul></div><div class="ui-search-filter-dl"><div aria-level="3" class="ui-search-filter-dt-title" role="heading">Pagamento</div><ul><li class="ui-search-filter-container"><a aria-label="Parcelamento sem juros" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_Installments_NoInterest_NoIndex_True#applied_filter_id%3Dinstallments%26applied_filter_name%3DPagamento%26applied_filter_order%3D19%26applied_value_id%3Dno_interest%26applied_value_name%3DParcelamento+sem+juros%26applied_value_order%3D1%26applied_value_results%3D416449%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Parcelamento sem juros</span><span class="ui-search-filter-results-qty">(416.449)</span></a></li></ul></div><div class="ui-search-filter-dl"><div aria-level="3" class="ui-search-filter-dt-title" role="heading">Descontos</div><ul><li class="ui-search-filter-container"><a aria-label="Mais de 5% OFF" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_Discount_5-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D5-100%26applied_value_name%3DMais+de+5%25+OFF%26applied_value_order%3D1%26applied_value_results%3D116183%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Mais de 5% OFF</span><span class="ui-search-filter-results-qty">(116.183)</span></a></li><li class="ui-search-filter-container"><a aria-label="Mais de 10% OFF" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_Discount_10-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D10-100%26applied_value_name%3DMais+de+10%25+OFF%26applied_value_order%3D2%26applied_value_results%3D109675%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Mais de 10% OFF</span><span class="ui-search-filter-results-qty">(109.675)</span></a></li><li class="ui-search-filter-container"><a aria-label="Mais de 15% OFF" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_Discount_15-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D15-100%26applied_value_name%3DMais+de+15%25+OFF%26applied_value_order%3D3%26applied_value_results%3D20404%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Mais de 15% OFF</span><span class="ui-search-filter-results-qty">(20.404)</span></a></li><li class="ui-search-filter-container"><a aria-label="Mais de 20% OFF" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_Discount_20-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D20-100%26applied_value_name%3DMais+de+20%25+OFF%26applied_value_order%3D4%26applied_value_results%3D13016%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Mais de 20% OFF</span><span class="ui-search-filter-results-qty">(13.016)</span></a></li><li class="ui-search-filter-container"><a aria-label="Mais de 25% OFF" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_Discount_25-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D25-100%26applied_value_name%3DMais+de+25%25+OFF%26applied_value_order%3D5%26applied_value_results%3D6420%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Mais de 25% OFF</span><span class="ui-search-filter-results-qty">(6.420)</span></a></li><li class="ui-search-filter-container"><a aria-label="Mais de 30% OFF" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_Discount_30-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D30-100%26applied_value_name%3DMais+de+30%25+OFF%26applied_value_order%3D6%26applied_value_results%3D2902%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Mais de 30% OFF</span><span class="ui-search-filter-results-qty">(2.902)</span></a></li><li class="ui-search-filter-container"><a aria-label="Mais de 40% OFF" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_Discount_40-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D40-100%26applied_value_name%3DMais+de+40%25+OFF%26applied_value_order%3D7%26applied_value_results%3D1055%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Mais de 40% OFF</span><span class="ui-search-filter-results-qty">(1.055)</span></a></li></ul></div><div class="ui-search-filter-dl"><div aria-level="3" class="ui-search-filter-dt-title" role="heading">Tipo de promoção</div><ul><li class="ui-search-filter-container"><a aria-label="Oferta do dia" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_NoIndex_True_promotion*type_deal*of*the*day#applied_filter_id%3Dpromotion_type%26applied_filter_name%3DTipo+de+promo%C3%A7%C3%A3o%26applied_filter_order%3D21%26applied_value_id%3Ddeal_of_the_day%26applied_value_name%3DOferta+do+dia%26applied_value_order%3D1%26applied_value_results%3D1055%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Oferta do dia</span><span class="ui-search-filter-results-qty">(1.055)</span></a></li></ul></div><div class="ui-search-filter-dl"><div aria-level="3" class="ui-search-filter-dt-title" role="heading">Outras características</div><ul><li class="ui-search-filter-container"><a aria-label="É gamer" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_IS*GAMER_242085_NoIndex_True#applied_filter_id%3DIS_GAMER%26applied_filter_name%3DOutras+caracter%C3%ADsticas%26applied_filter_order%3D21%26applied_value_id%3D242085%26applied_value_name%3D%C3%89+gamer%26applied_value_order%3D0%26applied_value_results%3D160687%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">É gamer</span><span class="ui-search-filter-results-qty">(160.687)</span></a></li></ul></div><div class="ui-search-filter-dl"><div aria-level="3" class="ui-search-filter-dt-title" role="heading">Detalhes do anúncio</div><ul><li class="ui-search-filter-container"><a aria-label="Melhores vendedores" class="ui-search-link" href="https://informatica.mercadolivre.com.br/computador_BestSellers_YES_NoIndex_True#applied_filter_id%3Dpower_seller%26applied_filter_name%3DFiltro+MercadoL%C3%ADderes%26applied_filter_order%3D23%26applied_value_id%3Dyes%26applied_value_name%3DMelhores+vendedores%26applied_value_order%3D1%26applied_value_results%3D458578%26is_custom%3Dfalse" rel="nofollow"><span class="ui-search-filter-name">Melhores vendedores</span><span class="ui-search-filter-results-qty">(458.578)</span></a></li></ul></div><div class="ui-search-filter-dl"><div aria-level="3" class="ui-search-filter-dt-title" role="heading">Outras pessoas pesquisaram</div><ul><li class="ui-search-filter-container"><a aria-label="i3 9100f" class="ui-search-link" href="https://lista.mercadolivre.com.br/i3-9100f#D[R:computador,P:1,Q:5]"><span class="ui-search-filter-name">i3 9100f</span></a></li><li class="ui-search-filter-container"><a aria-label="king koil triathlon queen" class="ui-search-link" href="https://lista.mercadolivre.com.br/king-koil-triathlon-queen#D[R:computador,P:2,Q:5]"><span class="ui-search-filter-name">king koil triathlon queen</span></a></li><li class="ui-search-filter-container"><a aria-label="celular samsung a11" class="ui-search-link" href="https://lista.mercadolivre.com.br/celular-samsung-a11#D[R:computador,P:3,Q:5]"><span class="ui-search-filter-name">celular samsung a11</span></a></li><li class="ui-search-filter-container"><a aria-label="computador wi fi" class="ui-search-link" href="https://lista.mercadolivre.com.br/computador-wi-fi#D[R:computador,P:4,Q:5]"><span class="ui-search-filter-name">computador wi fi</span></a></li><li class="ui-search-filter-container"><a aria-label="computadores novos" class="ui-search-link" href="https://lista.mercadolivre.com.br/computadores-novos#D[R:computador,P:5,Q:5]"><span class="ui-search-filter-name">computadores novos</span></a></li></ul></div></section><div class="ui-search-sidebar-advertising__display"><div class=""><div></div><div class="banner banner--hidden"><div class="banner__frame-container" id="Sky"></div></div></div></div><div class="ui-search-sidebar-advertising__wrapper" id="ui-search-sidebar-advertising__wrapper"><div class="ui-search-sidebar-advertising__container"></div></div></aside><section class="ui-search-results ui-search-results--without-disclaimer"><div class="ui-search-view-options__container"><div class="ui-search-view-options"><div class="ui-search-view-options__content"><div class="ui-search-view-options__group"><div class="ui-search-view-options__title">Ordenar por<!-- --> </div><div class="ui-search-sort-filter"><div class="andes-dropdown andes-dropdown--standalone andes-dropdown--compact"><button aria-expanded="false" aria-haspopup="listbox" aria-invalid="false" aria-label="Mais relevantes" class="andes-dropdown__trigger" type="button"><span class="andes-dropdown__display-values">Mais relevantes</span><svg aria-hidden="true" class="andes-dropdown__standalone-arrow" height="12" viewbox="0 0 12 12" width="12"><path d="M6 7.057L9.352 3.705 10.148 4.5 6 8.648 1.852 4.5 2.648 3.705z" fill-opacity=".45"></path></svg></button></div></div></div></div></div></div><div style="display:contents"></div><div style="display:contents"></div><div style="display:contents"></div><div style="display:contents"></div><div style="display:contents"></div><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1983288877-computador-completo-facil-intel-core-i5-08gb-ddr3-ssd-240-gb-_JM#position=17&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Completo Fácil Intel Core I5 08gb Ddr3 Ssd 240 Gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Computador Completo Fácil Intel Core I5 08gb Ddr3 Ssd 240 Gb" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_726435-MLB47230369709_082021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1983288877-computador-completo-facil-intel-core-i5-08gb-ddr3-ssd-240-gb-_JM#position=17&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Completo Fácil Intel Core I5 08gb Ddr3 Ssd 240 Gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--deal_of_the_day" style="background:#3483FA"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#FFFFFF">OFERTA DO DIA</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2079 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.079</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1830 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.830</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">182 reais con 95 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">182</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">95</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Crédito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Completo Fácil Intel Core I5 08gb Ddr3 Ssd 240 Gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983288877" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1983288877"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-book-pc310-preta-141-intel-celeron-n3000-4gb-de-ram-64gb-ssd-intel-hd-graphics-1366x768px-windows-10-home/p/MLB16263913?pdp_filters=category:MLB1648#searchVariation=MLB16263913&position=1&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title='Notebook Multilaser Legacy Book PC310 preta 14.1", Intel Celeron N3000 4GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home'><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt='Notebook Multilaser Legacy Book PC310 preta 14.1", Intel Celeron N3000 4GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home' class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_892016-MLA44927459054_022021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-book-pc310-preta-141-intel-celeron-n3000-4gb-de-ram-64gb-ssd-intel-hd-graphics-1366x768px-windows-10-home/p/MLB16263913?pdp_filters=category:MLB1648#searchVariation=MLB16263913&position=1&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title='Notebook Multilaser Legacy Book PC310 preta 14.1", Intel Celeron N3000 4GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home'><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--meli_choice" style="background:#333333"><div class="ui-search-item__highlight-label__container"><svg class="ui-search-icon ui-search-icon--meli" viewbox="0 0 45 32" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g stroke-width="1.5"><path d="M43.782 15.1c0-7.142-9.323-12.966-20.823-12.966-11.499 0-20.821 5.824-20.821 12.966l-0.004 0.759c0 7.58 8.149 13.717 20.821 13.717 12.753 0 20.828-6.135 20.828-13.715v-0.762z" fill="#fff"></path><path d="M22.963 27.29c-11.059 0-20.023-5.461-20.023-12.196s8.964-12.192 20.023-12.192c11.057 0 20.021 5.461 20.021 12.194 0 6.735-8.964 12.196-20.021 12.196z" fill="#333"></path><path d="M16.314 11.247c-0.011 0.019-0.209 0.215-0.081 0.373 0.318 0.384 1.293 0.606 2.281 0.395 0.587-0.126 1.34-0.695 2.069-1.248 0.789-0.597 1.574-1.195 2.364-1.434 0.836-0.254 1.37-0.145 1.724-0.043 0.388 0.109 0.845 0.352 1.572 0.873 1.37 0.981 6.878 5.557 7.829 6.349 0.768-0.329 4.175-1.726 8.804-2.697-0.403-2.351-1.903-4.501-4.181-6.261-3.172 1.269-7.053 1.933-10.844 0.169-0.021-0.009-2.074-0.932-4.096-0.887-3.010 0.066-4.314 1.308-5.694 2.62l-1.747 1.792z" fill="#fff"></path><path d="M33.847 17.011c-0.064-0.055-6.477-5.397-7.93-6.438-0.841-0.599-1.308-0.753-1.798-0.811-0.256-0.032-0.61 0.013-0.858 0.077-0.674 0.175-1.557 0.738-2.342 1.329-0.813 0.617-1.579 1.195-2.289 1.348-0.909 0.192-2.018-0.034-2.524-0.363-0.205-0.128-0.35-0.282-0.418-0.435-0.188-0.412 0.158-0.742 0.213-0.798l1.771-1.822c0.205-0.196 0.414-0.39 0.625-0.585-0.572 0.073-1.099 0.211-1.613 0.346-0.64 0.171-1.259 0.335-1.882 0.335-0.26 0-1.655-0.218-1.92-0.286-1.602-0.418-3.008-0.823-5.107-1.758-2.517 1.783-4.198 4.013-4.685 6.47 0.363 0.090 0.943 0.256 1.188 0.307 5.694 1.205 7.467 2.447 7.787 2.705 0.35-0.369 0.853-0.602 1.412-0.602 0.631 0 1.199 0.301 1.545 0.768 0.324-0.245 0.774-0.454 1.357-0.454 0.262 0 0.538 0.047 0.813 0.134 0.642 0.211 0.975 0.619 1.146 0.986 0.215-0.092 0.482-0.16 0.794-0.16 0.305 0 0.625 0.068 0.947 0.198 1.050 0.431 1.212 1.412 1.118 2.153 0.075-0.009 0.149-0.013 0.226-0.013 1.244 0 2.257 0.964 2.257 2.15 0 0.367-0.1 0.71-0.271 1.013 0.339 0.181 1.201 0.591 1.961 0.501 0.606-0.073 0.834-0.271 0.917-0.382 0.055-0.077 0.115-0.164 0.060-0.228l-1.606-1.7s-0.265-0.237-0.177-0.329c0.092-0.096 0.256 0.041 0.369 0.132 0.819 0.651 1.818 1.632 1.818 1.632 0.017 0.011 0.083 0.134 0.452 0.198 0.318 0.053 0.879 0.021 1.269-0.284 0.098-0.077 0.196-0.171 0.277-0.271-0.006 0.004-0.011 0.011-0.017 0.013 0.41-0.499-0.045-1.007-0.045-1.007l-1.877-2.005s-0.267-0.235-0.177-0.331c0.083-0.081 0.256 0.043 0.373 0.137 0.593 0.471 1.431 1.274 2.236 2.022 0.158 0.111 0.864 0.527 1.801-0.060 0.567-0.354 0.683-0.789 0.666-1.118-0.041-0.435-0.397-0.747-0.397-0.747l-2.56-2.451s-0.271-0.22-0.177-0.331c0.079-0.094 0.256 0.043 0.369 0.132 0.817 0.651 3.027 2.579 3.027 2.579 0.030 0.021 0.794 0.538 1.737-0.034 0.337-0.205 0.555-0.512 0.572-0.875 0.032-0.623-0.431-0.992-0.431-0.992z" fill="#fff"></path><path d="M21.423 20.117c-0.399-0.002-0.832 0.222-0.89 0.19-0.030-0.021 0.026-0.171 0.062-0.26 0.038-0.085 0.561-1.585-0.715-2.106-0.975-0.399-1.572 0.049-1.777 0.252-0.053 0.053-0.077 0.049-0.085-0.019-0.017-0.269-0.145-0.998-0.988-1.244-1.203-0.35-1.978 0.448-2.174 0.738-0.085-0.653-0.668-1.161-1.378-1.161-0.772 0-1.397 0.595-1.399 1.329 0 0.734 0.627 1.329 1.397 1.329 0.375 0 0.717-0.141 0.966-0.371 0.009 0.009 0.011 0.021 0.009 0.045-0.060 0.331-0.169 1.525 1.148 2.012 0.527 0.196 0.975 0.051 1.348-0.198 0.109-0.075 0.128-0.043 0.111 0.058-0.047 0.307 0.013 0.964 0.981 1.34 0.74 0.286 1.175-0.006 1.461-0.258 0.124-0.109 0.158-0.092 0.164 0.075 0.036 0.892 0.811 1.598 1.756 1.6 0.971 0 1.758-0.749 1.758-1.673 0-0.926-0.785-1.664-1.756-1.675z" fill="#fff"></path><path d="M21.423 23.345c-0.881 0-1.596-0.651-1.63-1.481 0-0.073-0.009-0.26-0.177-0.26-0.068 0-0.128 0.038-0.198 0.098-0.192 0.171-0.439 0.343-0.8 0.343-0.164 0-0.341-0.036-0.527-0.107-0.93-0.361-0.943-0.969-0.905-1.212 0.011-0.064 0.013-0.134-0.034-0.186l-0.058-0.049h-0.058c-0.047 0-0.096 0.017-0.162 0.064-0.269 0.177-0.527 0.265-0.789 0.265-0.143 0-0.292-0.028-0.439-0.081-1.225-0.454-1.126-1.553-1.067-1.884 0.009-0.068-0.009-0.119-0.053-0.154l-0.085-0.068-0.083 0.073c-0.239 0.22-0.55 0.341-0.879 0.341-0.7-0.002-1.271-0.544-1.269-1.212 0-0.668 0.572-1.21 1.271-1.21 0.634 0 1.173 0.454 1.254 1.056l0.043 0.326 0.188-0.277c0.021-0.030 0.533-0.77 1.478-0.768 0.179 0 0.367 0.026 0.553 0.081 0.753 0.22 0.881 0.868 0.9 1.139 0.013 0.158 0.13 0.166 0.154 0.166 0.064 0 0.113-0.041 0.147-0.075 0.143-0.141 0.45-0.375 0.934-0.375 0.222 0 0.459 0.051 0.702 0.149 1.195 0.491 0.653 1.937 0.646 1.952-0.102 0.239-0.107 0.346-0.011 0.405l0.049 0.021h0.034c0.053 0 0.122-0.021 0.233-0.055 0.162-0.055 0.407-0.134 0.638-0.134 0.9 0.009 1.634 0.706 1.632 1.555 0 0.855-0.734 1.551-1.632 1.551zM34.095 16.369c-1.973-1.641-6.539-5.419-7.776-6.302-0.706-0.506-1.188-0.772-1.611-0.894-0.192-0.053-0.454-0.115-0.791-0.117-0.316 0-0.653 0.055-1.005 0.162-0.8 0.241-1.596 0.843-2.368 1.425l-0.038 0.030c-0.717 0.544-1.457 1.105-2.018 1.225-0.245 0.051-0.497 0.079-0.747 0.079-0.629 0-1.195-0.173-1.408-0.431-0.034-0.043-0.011-0.111 0.070-0.209l0.011-0.013 1.739-1.783c1.361-1.297 2.645-2.519 5.606-2.583l0.149-0.002c1.839 0 3.682 0.785 3.889 0.875 1.728 0.804 3.509 1.212 5.301 1.212 1.867 0 3.795-0.439 5.82-1.327-0.226-0.181-0.461-0.358-0.704-0.531-1.779 0.736-3.475 1.107-5.111 1.105-1.67 0-3.341-0.384-4.962-1.135-0.085-0.041-2.118-0.951-4.235-0.954l-0.166 0.002c-2.485 0.055-3.885 0.896-4.828 1.632-0.917 0.021-1.707 0.233-2.409 0.418-0.627 0.166-1.169 0.309-1.698 0.309-0.218 0-0.608-0.019-0.644-0.021-0.606-0.015-3.669-0.73-6.101-1.609-0.25 0.169-0.491 0.341-0.723 0.516 2.545 0.994 5.641 1.762 6.618 1.822 0.271 0.017 0.561 0.047 0.851 0.047 0.646 0 1.291-0.173 1.916-0.339 0.369-0.098 0.774-0.205 1.203-0.284-0.115 0.107-0.228 0.213-0.341 0.324l-1.766 1.818c-0.139 0.134-0.442 0.491-0.243 0.93 0.079 0.177 0.241 0.346 0.465 0.491 0.42 0.269 1.173 0.452 1.873 0.452 0.267 0 0.518-0.026 0.747-0.075 0.742-0.158 1.519-0.747 2.34-1.37 0.655-0.495 1.587-1.124 2.3-1.31 0.198-0.051 0.444-0.085 0.64-0.085 0.060 0.002 0.115 0.004 0.166 0.011 0.469 0.058 0.926 0.209 1.739 0.789 1.451 1.037 7.863 6.379 7.925 6.432 0.004 0.004 0.414 0.341 0.384 0.896-0.013 0.314-0.194 0.589-0.512 0.781-0.273 0.166-0.555 0.25-0.841 0.25-0.427 0-0.725-0.192-0.742-0.205-0.023-0.017-2.223-1.937-3.029-2.581-0.128-0.1-0.256-0.192-0.382-0.192-0.066 0-0.128 0.028-0.166 0.075-0.128 0.149 0.015 0.356 0.181 0.491l2.571 2.458c0.002 0.002 0.32 0.286 0.354 0.661 0.021 0.407-0.186 0.747-0.61 1.013-0.303 0.192-0.61 0.286-0.909 0.286-0.395 0-0.672-0.171-0.732-0.211l-0.369-0.346c-0.674-0.629-1.367-1.28-1.877-1.685-0.124-0.098-0.256-0.188-0.382-0.188-0.064 0-0.119 0.021-0.162 0.064-0.058 0.062-0.098 0.171 0.047 0.354 0.060 0.077 0.128 0.139 0.128 0.139l1.875 2.003c0.015 0.017 0.384 0.437 0.043 0.853l-0.068 0.081c-0.055 0.058-0.115 0.113-0.173 0.16-0.32 0.25-0.747 0.277-0.917 0.277-0.090 0-0.177-0.009-0.252-0.021-0.186-0.032-0.309-0.081-0.369-0.149l-0.021-0.021c-0.105-0.102-1.047-1.020-1.828-1.641-0.105-0.081-0.233-0.186-0.365-0.186-0.064 0-0.124 0.026-0.171 0.073-0.154 0.162 0.079 0.401 0.177 0.491l1.598 1.677c0 0.015-0.021 0.049-0.062 0.102-0.055 0.077-0.25 0.26-0.83 0.329-0.068 0.011-0.141 0.013-0.213 0.013-0.597 0-1.233-0.277-1.562-0.442 0.149-0.299 0.226-0.631 0.226-0.964 0-1.252-1.067-2.27-2.381-2.27h-0.085c0.043-0.572-0.043-1.653-1.21-2.129-0.337-0.139-0.672-0.209-0.996-0.209-0.256 0-0.501 0.043-0.732 0.126-0.241-0.448-0.642-0.774-1.167-0.943-0.288-0.096-0.576-0.145-0.853-0.145-0.486 0-0.934 0.137-1.333 0.405-0.382-0.45-0.96-0.719-1.568-0.719-0.531 0-1.043 0.203-1.423 0.561-0.497-0.363-2.47-1.555-7.748-2.697-0.256-0.055-0.843-0.213-1.203-0.316-0.060 0.273-0.105 0.548-0.134 0.826 0 0 0.975 0.222 1.165 0.262 5.393 1.141 7.177 2.325 7.477 2.551-0.102 0.233-0.156 0.484-0.156 0.738 0 1.060 0.905 1.924 2.020 1.924 0.126 0 0.25-0.009 0.371-0.030 0.169 0.779 0.704 1.372 1.525 1.675 0.239 0.087 0.482 0.134 0.719 0.134 0.154 0 0.309-0.019 0.461-0.055 0.149 0.365 0.491 0.821 1.254 1.118 0.267 0.1 0.533 0.156 0.794 0.156 0.213 0 0.418-0.036 0.617-0.107 0.365 0.847 1.233 1.408 2.202 1.408 0.642 0 1.259-0.247 1.707-0.689 0.386 0.205 1.199 0.574 2.020 0.576 0.107 0 0.205-0.009 0.305-0.021 0.815-0.098 1.195-0.401 1.367-0.636 0.032-0.043 0.060-0.085 0.085-0.13 0.192 0.051 0.405 0.094 0.646 0.096 0.444 0 0.87-0.145 1.301-0.444 0.427-0.292 0.727-0.71 0.77-1.067l0.002-0.015c0.145 0.028 0.29 0.043 0.437 0.043 0.459 0 0.909-0.137 1.34-0.405 0.832-0.518 0.975-1.195 0.96-1.638 0.147 0.028 0.294 0.043 0.444 0.043 0.429 0 0.853-0.122 1.254-0.367 0.514-0.314 0.826-0.794 0.873-1.35 0.032-0.38-0.068-0.764-0.277-1.092 1.391-0.572 4.574-1.677 8.32-2.479-0.021-0.277-0.064-0.55-0.117-0.823-4.533 0.96-7.915 2.353-8.762 2.709z" fill="#333"></path></g></g></svg><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#FFFFFF">RECOMENDADO</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1999 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.999</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1199 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.199</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">40% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">119 reais con 90 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">119</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">90</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p><span class="ui-search-item__fulfillment"><svg aria-label="full" class="ui-search-icon ui-search-icon--full" viewbox="0 0 100 32" xmlns="http://www.w3.org/2000/svg"><use href="#full"></use></svg></span></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Notebook Multilaser Legacy Book PC310 preta 14.1", Intel Celeron N3000 4GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por VIKING</p></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-half" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-half"></use></svg></span><span class="ui-search-reviews__amount">351</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1930876153" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1930876153"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1937079157-pc-computador-cpu-core-i5-650-ssd-240gb-8gb-memoria-ram-_JM#position=18&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Memória Ram"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Memória Ram" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_618178-MLB46611223438_072021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1937079157-pc-computador-cpu-core-i5-650-ssd-240gb-8gb-memoria-ram-_JM#position=18&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Memória Ram"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1399 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.399</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1231 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.231</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">123 reais con 11 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">123</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">11</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Crédito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Memória Ram</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1937079157" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1937079157"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1607748387-pc-computador-cpu-intel-core-i5-ssd-240gb-8gb-memoria-ram-_JM#position=19&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Memória Ram"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Memória Ram" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_674762-MLB50613865527_072022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1607748387-pc-computador-cpu-intel-core-i5-ssd-240gb-8gb-memoria-ram-_JM#position=19&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Memória Ram"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1829 reais con 99 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.829</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">99</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1446 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.446</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">21% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">144 reais con 57 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">144</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">57</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Crédito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Memória Ram</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1607748387" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1607748387"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1983278713-computador-facil-intel-core-i3-4gb-ssd-120gb-_JM#position=20&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Fácil Intel Core I3 4gb Ssd 120gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Computador Fácil Intel Core I3 4gb Ssd 120gb" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_766782-MLB47145738530_082021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1983278713-computador-facil-intel-core-i3-4gb-ssd-120gb-_JM#position=20&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Fácil Intel Core I3 4gb Ssd 120gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--deal_of_the_day" style="background:#3483FA"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#FFFFFF">OFERTA DO DIA</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 969 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">969</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">852 reais con 72 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">852</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">72</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">85 reais con 27 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">85</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">27</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Fácil Intel Core I3 4gb Ssd 120gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983278713" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1983278713"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-cloud-pc134-cinza-141-intel-atom-z8350-2gb-de-ram-64gb-ssd-intel-hd-graphics-1366x768px-windows-10-home/p/MLB18624590?pdp_filters=category:MLB1648#searchVariation=MLB18624590&position=2&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title='Notebook Multilaser Legacy Cloud PC134 cinza 14.1", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home'><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt='Notebook Multilaser Legacy Cloud PC134 cinza 14.1", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home' class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_690494-MLA48633785018_122021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-cloud-pc134-cinza-141-intel-atom-z8350-2gb-de-ram-64gb-ssd-intel-hd-graphics-1366x768px-windows-10-home/p/MLB18624590?pdp_filters=category:MLB1648#searchVariation=MLB18624590&position=2&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title='Notebook Multilaser Legacy Cloud PC134 cinza 14.1", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home'><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--meli_choice" style="background:#333333"><div class="ui-search-item__highlight-label__container"><svg class="ui-search-icon ui-search-icon--meli" viewbox="0 0 45 32" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g stroke-width="1.5"><path d="M43.782 15.1c0-7.142-9.323-12.966-20.823-12.966-11.499 0-20.821 5.824-20.821 12.966l-0.004 0.759c0 7.58 8.149 13.717 20.821 13.717 12.753 0 20.828-6.135 20.828-13.715v-0.762z" fill="#fff"></path><path d="M22.963 27.29c-11.059 0-20.023-5.461-20.023-12.196s8.964-12.192 20.023-12.192c11.057 0 20.021 5.461 20.021 12.194 0 6.735-8.964 12.196-20.021 12.196z" fill="#333"></path><path d="M16.314 11.247c-0.011 0.019-0.209 0.215-0.081 0.373 0.318 0.384 1.293 0.606 2.281 0.395 0.587-0.126 1.34-0.695 2.069-1.248 0.789-0.597 1.574-1.195 2.364-1.434 0.836-0.254 1.37-0.145 1.724-0.043 0.388 0.109 0.845 0.352 1.572 0.873 1.37 0.981 6.878 5.557 7.829 6.349 0.768-0.329 4.175-1.726 8.804-2.697-0.403-2.351-1.903-4.501-4.181-6.261-3.172 1.269-7.053 1.933-10.844 0.169-0.021-0.009-2.074-0.932-4.096-0.887-3.010 0.066-4.314 1.308-5.694 2.62l-1.747 1.792z" fill="#fff"></path><path d="M33.847 17.011c-0.064-0.055-6.477-5.397-7.93-6.438-0.841-0.599-1.308-0.753-1.798-0.811-0.256-0.032-0.61 0.013-0.858 0.077-0.674 0.175-1.557 0.738-2.342 1.329-0.813 0.617-1.579 1.195-2.289 1.348-0.909 0.192-2.018-0.034-2.524-0.363-0.205-0.128-0.35-0.282-0.418-0.435-0.188-0.412 0.158-0.742 0.213-0.798l1.771-1.822c0.205-0.196 0.414-0.39 0.625-0.585-0.572 0.073-1.099 0.211-1.613 0.346-0.64 0.171-1.259 0.335-1.882 0.335-0.26 0-1.655-0.218-1.92-0.286-1.602-0.418-3.008-0.823-5.107-1.758-2.517 1.783-4.198 4.013-4.685 6.47 0.363 0.090 0.943 0.256 1.188 0.307 5.694 1.205 7.467 2.447 7.787 2.705 0.35-0.369 0.853-0.602 1.412-0.602 0.631 0 1.199 0.301 1.545 0.768 0.324-0.245 0.774-0.454 1.357-0.454 0.262 0 0.538 0.047 0.813 0.134 0.642 0.211 0.975 0.619 1.146 0.986 0.215-0.092 0.482-0.16 0.794-0.16 0.305 0 0.625 0.068 0.947 0.198 1.050 0.431 1.212 1.412 1.118 2.153 0.075-0.009 0.149-0.013 0.226-0.013 1.244 0 2.257 0.964 2.257 2.15 0 0.367-0.1 0.71-0.271 1.013 0.339 0.181 1.201 0.591 1.961 0.501 0.606-0.073 0.834-0.271 0.917-0.382 0.055-0.077 0.115-0.164 0.060-0.228l-1.606-1.7s-0.265-0.237-0.177-0.329c0.092-0.096 0.256 0.041 0.369 0.132 0.819 0.651 1.818 1.632 1.818 1.632 0.017 0.011 0.083 0.134 0.452 0.198 0.318 0.053 0.879 0.021 1.269-0.284 0.098-0.077 0.196-0.171 0.277-0.271-0.006 0.004-0.011 0.011-0.017 0.013 0.41-0.499-0.045-1.007-0.045-1.007l-1.877-2.005s-0.267-0.235-0.177-0.331c0.083-0.081 0.256 0.043 0.373 0.137 0.593 0.471 1.431 1.274 2.236 2.022 0.158 0.111 0.864 0.527 1.801-0.060 0.567-0.354 0.683-0.789 0.666-1.118-0.041-0.435-0.397-0.747-0.397-0.747l-2.56-2.451s-0.271-0.22-0.177-0.331c0.079-0.094 0.256 0.043 0.369 0.132 0.817 0.651 3.027 2.579 3.027 2.579 0.030 0.021 0.794 0.538 1.737-0.034 0.337-0.205 0.555-0.512 0.572-0.875 0.032-0.623-0.431-0.992-0.431-0.992z" fill="#fff"></path><path d="M21.423 20.117c-0.399-0.002-0.832 0.222-0.89 0.19-0.030-0.021 0.026-0.171 0.062-0.26 0.038-0.085 0.561-1.585-0.715-2.106-0.975-0.399-1.572 0.049-1.777 0.252-0.053 0.053-0.077 0.049-0.085-0.019-0.017-0.269-0.145-0.998-0.988-1.244-1.203-0.35-1.978 0.448-2.174 0.738-0.085-0.653-0.668-1.161-1.378-1.161-0.772 0-1.397 0.595-1.399 1.329 0 0.734 0.627 1.329 1.397 1.329 0.375 0 0.717-0.141 0.966-0.371 0.009 0.009 0.011 0.021 0.009 0.045-0.060 0.331-0.169 1.525 1.148 2.012 0.527 0.196 0.975 0.051 1.348-0.198 0.109-0.075 0.128-0.043 0.111 0.058-0.047 0.307 0.013 0.964 0.981 1.34 0.74 0.286 1.175-0.006 1.461-0.258 0.124-0.109 0.158-0.092 0.164 0.075 0.036 0.892 0.811 1.598 1.756 1.6 0.971 0 1.758-0.749 1.758-1.673 0-0.926-0.785-1.664-1.756-1.675z" fill="#fff"></path><path d="M21.423 23.345c-0.881 0-1.596-0.651-1.63-1.481 0-0.073-0.009-0.26-0.177-0.26-0.068 0-0.128 0.038-0.198 0.098-0.192 0.171-0.439 0.343-0.8 0.343-0.164 0-0.341-0.036-0.527-0.107-0.93-0.361-0.943-0.969-0.905-1.212 0.011-0.064 0.013-0.134-0.034-0.186l-0.058-0.049h-0.058c-0.047 0-0.096 0.017-0.162 0.064-0.269 0.177-0.527 0.265-0.789 0.265-0.143 0-0.292-0.028-0.439-0.081-1.225-0.454-1.126-1.553-1.067-1.884 0.009-0.068-0.009-0.119-0.053-0.154l-0.085-0.068-0.083 0.073c-0.239 0.22-0.55 0.341-0.879 0.341-0.7-0.002-1.271-0.544-1.269-1.212 0-0.668 0.572-1.21 1.271-1.21 0.634 0 1.173 0.454 1.254 1.056l0.043 0.326 0.188-0.277c0.021-0.030 0.533-0.77 1.478-0.768 0.179 0 0.367 0.026 0.553 0.081 0.753 0.22 0.881 0.868 0.9 1.139 0.013 0.158 0.13 0.166 0.154 0.166 0.064 0 0.113-0.041 0.147-0.075 0.143-0.141 0.45-0.375 0.934-0.375 0.222 0 0.459 0.051 0.702 0.149 1.195 0.491 0.653 1.937 0.646 1.952-0.102 0.239-0.107 0.346-0.011 0.405l0.049 0.021h0.034c0.053 0 0.122-0.021 0.233-0.055 0.162-0.055 0.407-0.134 0.638-0.134 0.9 0.009 1.634 0.706 1.632 1.555 0 0.855-0.734 1.551-1.632 1.551zM34.095 16.369c-1.973-1.641-6.539-5.419-7.776-6.302-0.706-0.506-1.188-0.772-1.611-0.894-0.192-0.053-0.454-0.115-0.791-0.117-0.316 0-0.653 0.055-1.005 0.162-0.8 0.241-1.596 0.843-2.368 1.425l-0.038 0.030c-0.717 0.544-1.457 1.105-2.018 1.225-0.245 0.051-0.497 0.079-0.747 0.079-0.629 0-1.195-0.173-1.408-0.431-0.034-0.043-0.011-0.111 0.070-0.209l0.011-0.013 1.739-1.783c1.361-1.297 2.645-2.519 5.606-2.583l0.149-0.002c1.839 0 3.682 0.785 3.889 0.875 1.728 0.804 3.509 1.212 5.301 1.212 1.867 0 3.795-0.439 5.82-1.327-0.226-0.181-0.461-0.358-0.704-0.531-1.779 0.736-3.475 1.107-5.111 1.105-1.67 0-3.341-0.384-4.962-1.135-0.085-0.041-2.118-0.951-4.235-0.954l-0.166 0.002c-2.485 0.055-3.885 0.896-4.828 1.632-0.917 0.021-1.707 0.233-2.409 0.418-0.627 0.166-1.169 0.309-1.698 0.309-0.218 0-0.608-0.019-0.644-0.021-0.606-0.015-3.669-0.73-6.101-1.609-0.25 0.169-0.491 0.341-0.723 0.516 2.545 0.994 5.641 1.762 6.618 1.822 0.271 0.017 0.561 0.047 0.851 0.047 0.646 0 1.291-0.173 1.916-0.339 0.369-0.098 0.774-0.205 1.203-0.284-0.115 0.107-0.228 0.213-0.341 0.324l-1.766 1.818c-0.139 0.134-0.442 0.491-0.243 0.93 0.079 0.177 0.241 0.346 0.465 0.491 0.42 0.269 1.173 0.452 1.873 0.452 0.267 0 0.518-0.026 0.747-0.075 0.742-0.158 1.519-0.747 2.34-1.37 0.655-0.495 1.587-1.124 2.3-1.31 0.198-0.051 0.444-0.085 0.64-0.085 0.060 0.002 0.115 0.004 0.166 0.011 0.469 0.058 0.926 0.209 1.739 0.789 1.451 1.037 7.863 6.379 7.925 6.432 0.004 0.004 0.414 0.341 0.384 0.896-0.013 0.314-0.194 0.589-0.512 0.781-0.273 0.166-0.555 0.25-0.841 0.25-0.427 0-0.725-0.192-0.742-0.205-0.023-0.017-2.223-1.937-3.029-2.581-0.128-0.1-0.256-0.192-0.382-0.192-0.066 0-0.128 0.028-0.166 0.075-0.128 0.149 0.015 0.356 0.181 0.491l2.571 2.458c0.002 0.002 0.32 0.286 0.354 0.661 0.021 0.407-0.186 0.747-0.61 1.013-0.303 0.192-0.61 0.286-0.909 0.286-0.395 0-0.672-0.171-0.732-0.211l-0.369-0.346c-0.674-0.629-1.367-1.28-1.877-1.685-0.124-0.098-0.256-0.188-0.382-0.188-0.064 0-0.119 0.021-0.162 0.064-0.058 0.062-0.098 0.171 0.047 0.354 0.060 0.077 0.128 0.139 0.128 0.139l1.875 2.003c0.015 0.017 0.384 0.437 0.043 0.853l-0.068 0.081c-0.055 0.058-0.115 0.113-0.173 0.16-0.32 0.25-0.747 0.277-0.917 0.277-0.090 0-0.177-0.009-0.252-0.021-0.186-0.032-0.309-0.081-0.369-0.149l-0.021-0.021c-0.105-0.102-1.047-1.020-1.828-1.641-0.105-0.081-0.233-0.186-0.365-0.186-0.064 0-0.124 0.026-0.171 0.073-0.154 0.162 0.079 0.401 0.177 0.491l1.598 1.677c0 0.015-0.021 0.049-0.062 0.102-0.055 0.077-0.25 0.26-0.83 0.329-0.068 0.011-0.141 0.013-0.213 0.013-0.597 0-1.233-0.277-1.562-0.442 0.149-0.299 0.226-0.631 0.226-0.964 0-1.252-1.067-2.27-2.381-2.27h-0.085c0.043-0.572-0.043-1.653-1.21-2.129-0.337-0.139-0.672-0.209-0.996-0.209-0.256 0-0.501 0.043-0.732 0.126-0.241-0.448-0.642-0.774-1.167-0.943-0.288-0.096-0.576-0.145-0.853-0.145-0.486 0-0.934 0.137-1.333 0.405-0.382-0.45-0.96-0.719-1.568-0.719-0.531 0-1.043 0.203-1.423 0.561-0.497-0.363-2.47-1.555-7.748-2.697-0.256-0.055-0.843-0.213-1.203-0.316-0.060 0.273-0.105 0.548-0.134 0.826 0 0 0.975 0.222 1.165 0.262 5.393 1.141 7.177 2.325 7.477 2.551-0.102 0.233-0.156 0.484-0.156 0.738 0 1.060 0.905 1.924 2.020 1.924 0.126 0 0.25-0.009 0.371-0.030 0.169 0.779 0.704 1.372 1.525 1.675 0.239 0.087 0.482 0.134 0.719 0.134 0.154 0 0.309-0.019 0.461-0.055 0.149 0.365 0.491 0.821 1.254 1.118 0.267 0.1 0.533 0.156 0.794 0.156 0.213 0 0.418-0.036 0.617-0.107 0.365 0.847 1.233 1.408 2.202 1.408 0.642 0 1.259-0.247 1.707-0.689 0.386 0.205 1.199 0.574 2.020 0.576 0.107 0 0.205-0.009 0.305-0.021 0.815-0.098 1.195-0.401 1.367-0.636 0.032-0.043 0.060-0.085 0.085-0.13 0.192 0.051 0.405 0.094 0.646 0.096 0.444 0 0.87-0.145 1.301-0.444 0.427-0.292 0.727-0.71 0.77-1.067l0.002-0.015c0.145 0.028 0.29 0.043 0.437 0.043 0.459 0 0.909-0.137 1.34-0.405 0.832-0.518 0.975-1.195 0.96-1.638 0.147 0.028 0.294 0.043 0.444 0.043 0.429 0 0.853-0.122 1.254-0.367 0.514-0.314 0.826-0.794 0.873-1.35 0.032-0.38-0.068-0.764-0.277-1.092 1.391-0.572 4.574-1.677 8.32-2.479-0.021-0.277-0.064-0.55-0.117-0.823-4.533 0.96-7.915 2.353-8.762 2.709z" fill="#333"></path></g></g></svg><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#FFFFFF">RECOMENDADO</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1529 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.529</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1199 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.199</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">21% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">119 reais con 90 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">119</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">90</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p><span class="ui-search-item__fulfillment"><svg aria-label="full" class="ui-search-icon ui-search-icon--full" viewbox="0 0 100 32" xmlns="http://www.w3.org/2000/svg"><use href="#full"></use></svg></span></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Notebook Multilaser Legacy Cloud PC134 cinza 14.1", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 123 Comprou</p></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-half" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-half"></use></svg></span><span class="ui-search-reviews__amount">94</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2131342947" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2131342947"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-2025368730-computador-completo-facil-intel-core-i3-8gb-ssd-240gb-_JM#position=21&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Completo Fácil Intel Core I3 8gb Ssd 240gb "><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Computador Completo Fácil Intel Core I3 8gb Ssd 240gb " class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_704139-MLB47542929423_092021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-2025368730-computador-completo-facil-intel-core-i3-8gb-ssd-240gb-_JM#position=21&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Completo Fácil Intel Core I3 8gb Ssd 240gb "><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--deal_of_the_day" style="background:#3483FA"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#FFFFFF">OFERTA DO DIA</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1939 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.939</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1706 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.706</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">170 reais con 63 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">170</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">63</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Crédito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Completo Fácil Intel Core I3 8gb Ssd 240gb </h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2025368730" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2025368730"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1937076326-pc-computador-cpu-core-i5-650-ssd-240gb-8gb-memoria-ram-_JM#position=24&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Memória Ram"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Memória Ram" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_618178-MLB46611223438_072021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1937076326-pc-computador-cpu-core-i5-650-ssd-240gb-8gb-memoria-ram-_JM#position=24&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Memória Ram"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1250 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.250</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1100 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.100</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">106 reais con 65 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">106</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">65</span></span></span></div></div></span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Crédito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Memória Ram</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1937076326" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1937076326"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-book-pc250-preta-141-intel-celeron-n3350-4gb-de-ram-64gb-ssd-intel-hd-graphics-500-1366x768px-windows-10-home/p/MLB18366754?pdp_filters=category:MLB1648#searchVariation=MLB18366754&position=3&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title='Notebook Multilaser Legacy Book PC250 preta 14.1", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1366x768px Windows 10 Home'><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt='Notebook Multilaser Legacy Book PC250 preta 14.1", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1366x768px Windows 10 Home' class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_739810-MLA47202566066_082021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-book-pc250-preta-141-intel-celeron-n3350-4gb-de-ram-64gb-ssd-intel-hd-graphics-500-1366x768px-windows-10-home/p/MLB18366754?pdp_filters=category:MLB1648#searchVariation=MLB18366754&position=3&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title='Notebook Multilaser Legacy Book PC250 preta 14.1", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1366x768px Windows 10 Home'><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1281 reais con 23 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.281</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">23</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1281 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.281</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">128 reais con 12 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">128</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">12</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Notebook Multilaser Legacy Book PC250 preta 14.1", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1366x768px Windows 10 Home</h2></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-half" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-half"></use></svg></span><span class="ui-search-reviews__amount">101</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2081933352" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2081933352"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://www.mercadolivre.com.br/mouse-para-jogo-tedge-ml-gmh48-preto/p/MLB18621000?pdp_filters=category:MLB1648#searchVariation=MLB18621000&position=4&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Mouse para jogo Tedge ML-GMH48 preto"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Mouse para jogo Tedge ML-GMH48 preto" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_952471-MLA48392889529_112021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://www.mercadolivre.com.br/mouse-para-jogo-tedge-ml-gmh48-preto/p/MLB18621000?pdp_filters=category:MLB1648#searchVariation=MLB18621000&position=4&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Mouse para jogo Tedge ML-GMH48 preto"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--deal_of_the_day" style="background:#3483FA"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#FFFFFF">OFERTA DO DIA</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 69 reais con 55 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">69</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">55</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">39 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">39</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">43% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>7x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">6 reais con 33 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">6</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">33</span></span></span></div></div></span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p><span class="ui-search-item__fulfillment"><svg aria-label="full" class="ui-search-icon ui-search-icon--full" viewbox="0 0 100 32" xmlns="http://www.w3.org/2000/svg"><use href="#full"></use></svg></span></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Mouse para jogo Tedge ML-GMH48 preto</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por Tedge por Mercado Livre</p></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-half" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-half"></use></svg></span><span class="ui-search-reviews__amount">82</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2114151338" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2114151338"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core ui-search-result--advertisement andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=94stkOnzXBuyRVec0xp5j%2Bhw9ejO3y3p1X4gbH2W%2F2B3Ws0oGx1t0c51IOrE3ElqJjHfsLhzB1vWo2WmDdcie9X0hA%2BhIzl3lG%2FDPl7nZBYLO8Q7IiDtfmMQ359XN3JJRnVMddXfJcmy6st5Ca8%2Fn8M6NNVimWm5tcR5gmwCpiH9qSKAXlfHIzdUHp6MpvtcvsVnVGIsis9zaY6V%2Bgd6dkihONd9BLhTNjx7XAjrj7VV%2FcG4wWRJSe6gE8hmAbXOSqbx%2BEYb5Tsj225FM92iJa1ASqSgfvfZ97Noe5INkqDamD4iEkjlYyYvkXMyKBIbbFsPWVtgt6AWPh1NTLg%2FPDSK08CzsymhXRk4SCTxIBlb1BeNuV1yjnsiec9%2F3%2F6jjT4nLt6l5xre83x%2F2V7cNIe%2FLv8StVe9KfgctIBdZhiovh7by4H5o6J6cJ4MLs3i2J%2B%2Bo8vkm15XfKbEnp8cy9699Lei2cOlARzWSzlvpljEBMMcF%2Bj0lo5hsdv4ZdIEzuXOoh9pE%2Byz1IjjszR%2FGge074oIvOnCf6b7m0VcvEeJeAsaSsFS7CdSNHOnO00tI3WBc0aK7rKMEGpzWK6ejudbyZmGdNQ%2BWxCJfIjZUEUtMHDODenalwjxKf6cNk0FmCwyiQvVuBFBjlN1czESudu3ABB%2FOvRg8CSord2HAqTZaw8i6sldx2%2BINR5eowD2bPKLa8XPmu5qZyEAtM9aFOzoVNSJ485UD7CSG%2B2Uo7mJkxQjFtd%2Bc%2FvTMV5rn7eHfjR2j2doGqFmJdwN&rb=x" rel="nofollow,sponsored" title="Pc Gamer Fácil Intel Core I7 16gb Ssd 240gb Radeon 4gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Pc Gamer Fácil Intel Core I7 16gb Ssd 240gb Radeon 4gb" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_965508-MLB50709325431_072022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=94stkOnzXBuyRVec0xp5j%2Bhw9ejO3y3p1X4gbH2W%2F2B3Ws0oGx1t0c51IOrE3ElqJjHfsLhzB1vWo2WmDdcie9X0hA%2BhIzl3lG%2FDPl7nZBYLO8Q7IiDtfmMQ359XN3JJRnVMddXfJcmy6st5Ca8%2Fn8M6NNVimWm5tcR5gmwCpiH9qSKAXlfHIzdUHp6MpvtcvsVnVGIsis9zaY6V%2Bgd6dkihONd9BLhTNjx7XAjrj7VV%2FcG4wWRJSe6gE8hmAbXOSqbx%2BEYb5Tsj225FM92iJa1ASqSgfvfZ97Noe5INkqDamD4iEkjlYyYvkXMyKBIbbFsPWVtgt6AWPh1NTLg%2FPDSK08CzsymhXRk4SCTxIBlb1BeNuV1yjnsiec9%2F3%2F6jjT4nLt6l5xre83x%2F2V7cNIe%2FLv8StVe9KfgctIBdZhiovh7by4H5o6J6cJ4MLs3i2J%2B%2Bo8vkm15XfKbEnp8cy9699Lei2cOlARzWSzlvpljEBMMcF%2Bj0lo5hsdv4ZdIEzuXOoh9pE%2Byz1IjjszR%2FGge074oIvOnCf6b7m0VcvEeJeAsaSsFS7CdSNHOnO00tI3WBc0aK7rKMEGpzWK6ejudbyZmGdNQ%2BWxCJfIjZUEUtMHDODenalwjxKf6cNk0FmCwyiQvVuBFBjlN1czESudu3ABB%2FOvRg8CSord2HAqTZaw8i6sldx2%2BINR5eowD2bPKLa8XPmu5qZyEAtM9aFOzoVNSJ485UD7CSG%2B2Uo7mJkxQjFtd%2Bc%2FvTMV5rn7eHfjR2j2doGqFmJdwN&rb=x" rel="nofollow,sponsored" title="Pc Gamer Fácil Intel Core I7 16gb Ssd 240gb Radeon 4gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 3319 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">3.319</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">2987 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.987</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">10% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">298 reais con 71 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">298</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">71</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Gamer Fácil Intel Core I7 16gb Ssd 240gb Radeon 4gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div><div class="ui-search-item__ad-container"><span class="ui-search-item__ad-label ui-search-item__ad-label--blue">Patrocinado</span></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2153875378" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2153875378"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core ui-search-result--advertisement andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=F1%2BH3uml52TEeQUYeMd6gv8Lw7KLDRU81YyCSmeBXv9SUx%2BaO%2BzjpnbJGaK%2BtOHyVg31OsT7GKxN4tpLAks0dzD7nFwb8nAinxBuc%2BRX6mqqBzxrLzt0%2Fsj5fHhZ5XQmAG2BY5SJ48zQE3BIKvnEeby0TrchXVx4YYKBv3NxTCStdUTN0loXg7E6sDN%2Fu8H4XlW6x35mr1o6%2FjgVfsSaa%2FPOzFijT89nw0gZNYHXUPQjSR7z6zQQqLwFH%2FLuYDLheCIku3lApnKD0719pgAZLmyiqz1pwpmAWdi%2FaxUh8YJ5d3dXHId5H8oTTJ6Nxhyrow9B%2BvH8EW0TpYbSWIKrK0k5PSour9jDJyCxviHO0YCyN%2BftnJEPE5bTRJZxSqYSUOn4yTVMjHl4WbvDGs9E8MI0Khiz9IfMh3DRnVUR6GjxnzytgnlD8QPkUDHE2vA%2BDqmbrLUR7XjkixKAbAIVCVQe2awHitEQI8RFjVxUVkwQzE3Qkei53dZLKYBzShwQ3ih9mH0Hm1r69fCAOnZ%2BwPgMnL6TbK7tJLgWtdEy78Hw%2BjSjcXouB8%2Fll1qaWbqJ0kcBwD8gltT%2FOI8a6EpBNYTy2rCh7%2FakFyywvnDSVqGmeTFX2nvDmqPJ0QIdT1FfHRjKv3o8WtzBUJgrXRL4mYa5FuApqwqn58moxSnnDCb6%2FjqJNLBkB7LDyLteNDv6KW8qALbXmFba7tvuUjMgEsmEas7VGQmULjCf69B4npmur%2FvU9DBtubYvI%2FbGHjYngXpxo7SaTH4lciCPWN3zoEE%3D&rb=x" rel="nofollow,sponsored" title="Pc Gamer Computador Completo Ryzen 5 16gb Ssd 480gb Nfe Wifi"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Pc Gamer Computador Completo Ryzen 5 16gb Ssd 480gb Nfe Wifi" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_636240-MLB49254216707_032022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=F1%2BH3uml52TEeQUYeMd6gv8Lw7KLDRU81YyCSmeBXv9SUx%2BaO%2BzjpnbJGaK%2BtOHyVg31OsT7GKxN4tpLAks0dzD7nFwb8nAinxBuc%2BRX6mqqBzxrLzt0%2Fsj5fHhZ5XQmAG2BY5SJ48zQE3BIKvnEeby0TrchXVx4YYKBv3NxTCStdUTN0loXg7E6sDN%2Fu8H4XlW6x35mr1o6%2FjgVfsSaa%2FPOzFijT89nw0gZNYHXUPQjSR7z6zQQqLwFH%2FLuYDLheCIku3lApnKD0719pgAZLmyiqz1pwpmAWdi%2FaxUh8YJ5d3dXHId5H8oTTJ6Nxhyrow9B%2BvH8EW0TpYbSWIKrK0k5PSour9jDJyCxviHO0YCyN%2BftnJEPE5bTRJZxSqYSUOn4yTVMjHl4WbvDGs9E8MI0Khiz9IfMh3DRnVUR6GjxnzytgnlD8QPkUDHE2vA%2BDqmbrLUR7XjkixKAbAIVCVQe2awHitEQI8RFjVxUVkwQzE3Qkei53dZLKYBzShwQ3ih9mH0Hm1r69fCAOnZ%2BwPgMnL6TbK7tJLgWtdEy78Hw%2BjSjcXouB8%2Fll1qaWbqJ0kcBwD8gltT%2FOI8a6EpBNYTy2rCh7%2FakFyywvnDSVqGmeTFX2nvDmqPJ0QIdT1FfHRjKv3o8WtzBUJgrXRL4mYa5FuApqwqn58moxSnnDCb6%2FjqJNLBkB7LDyLteNDv6KW8qALbXmFba7tvuUjMgEsmEas7VGQmULjCf69B4npmur%2FvU9DBtubYvI%2FbGHjYngXpxo7SaTH4lciCPWN3zoEE%3D&rb=x" rel="nofollow,sponsored" title="Pc Gamer Computador Completo Ryzen 5 16gb Ssd 480gb Nfe Wifi"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 4295 reais con 46 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">4.295</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">46</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">3866 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">3.866</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">10% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">386 reais con 59 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">386</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">59</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Gamer Computador Completo Ryzen 5 16gb Ssd 480gb Nfe Wifi</h2></div></div><div class="ui-search-item__ad-container"><span class="ui-search-item__ad-label ui-search-item__ad-label--blue">Patrocinado</span></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1669162236" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1669162236"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1983288732-computador-facil-intel-core-i5-8gb-ssd-120gb-_JM#position=25&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Fácil Intel Core I5 8gb Ssd 120gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Computador Fácil Intel Core I5 8gb Ssd 120gb" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_955480-MLB47145766982_082021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1983288732-computador-facil-intel-core-i5-8gb-ssd-120gb-_JM#position=25&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Fácil Intel Core I5 8gb Ssd 120gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--deal_of_the_day" style="background:#3483FA"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#FFFFFF">OFERTA DO DIA</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1179 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.179</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1038 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.038</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">100 reais con 59 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">100</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">59</span></span></span></div></div></span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Crédito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Fácil Intel Core I5 8gb Ssd 120gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983288732" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1983288732"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-cloud-pc-135-vinho-141-intel-atom-z8350-2gb-de-ram-64gb-ssd-intel-hd-graphics-1366x768px-windows-10-home/p/MLB18632909?pdp_filters=category:MLB1648#searchVariation=MLB18632909&position=5&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title='Notebook Multilaser Legacy Cloud PC 135 vinho 14.1", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home'><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt='Notebook Multilaser Legacy Cloud PC 135 vinho 14.1", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home' class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_913969-MLA48644020818_122021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-cloud-pc-135-vinho-141-intel-atom-z8350-2gb-de-ram-64gb-ssd-intel-hd-graphics-1366x768px-windows-10-home/p/MLB18632909?pdp_filters=category:MLB1648#searchVariation=MLB18632909&position=5&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title='Notebook Multilaser Legacy Cloud PC 135 vinho 14.1", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home'><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1269 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.269</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">123 reais con 03 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">123</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">03</span></span></span></div></div></span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Notebook Multilaser Legacy Cloud PC 135 vinho 14.1", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home</h2></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-half" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-half"></use></svg></span><span class="ui-search-reviews__amount">134</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2603247328" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2603247328"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1983288643-computador-completo-facil-intel-i3-04-gb-ssd-120-gb-_JM#position=26&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Completo Fácil Intel I3 04 Gb Ssd 120 Gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Computador Completo Fácil Intel I3 04 Gb Ssd 120 Gb" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_875008-MLB47230148073_082021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1983288643-computador-completo-facil-intel-i3-04-gb-ssd-120-gb-_JM#position=26&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Completo Fácil Intel I3 04 Gb Ssd 120 Gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--deal_of_the_day" style="background:#3483FA"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#FFFFFF">OFERTA DO DIA</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1729 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.729</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1522 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.522</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">152 reais con 15 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">152</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">15</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Crédito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Completo Fácil Intel I3 04 Gb Ssd 120 Gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983288643" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1983288643"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://www.mercadolivre.com.br/disco-solido-interno-kingston-sa400s37240g-240gb-preto/p/MLB19035706?pdp_filters=category:MLB1648#searchVariation=MLB19035706&position=6&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Disco sólido interno Kingston SA400S37/240G 240GB preto"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Disco sólido interno Kingston SA400S37/240G 240GB preto" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_804287-MLA49587128302_042022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://www.mercadolivre.com.br/disco-solido-interno-kingston-sa400s37240g-240gb-preto/p/MLB19035706?pdp_filters=category:MLB1648#searchVariation=MLB19035706&position=6&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Disco sólido interno Kingston SA400S37/240G 240GB preto"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--best_seller" style="background:#FF7733"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#FFFFFF">MAIS VENDIDO</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">179 reais con 90 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">179</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">90</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">17 reais con 44 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">17</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">44</span></span></span></div></div></span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p><span class="ui-search-item__fulfillment"><svg aria-label="full" class="ui-search-icon ui-search-icon--full" viewbox="0 0 100 32" xmlns="http://www.w3.org/2000/svg"><use href="#full"></use></svg></span></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Disco sólido interno Kingston SA400S37/240G 240GB preto</h2></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-half" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-half"></use></svg></span><span class="ui-search-reviews__amount">11121</span></div></div><div class="ui-search-item__group ui-search-item__group--variations-text"><span class="ui-search-item__group__element ui-search-item__variations-text">Disponível em 2 cores</span></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2614218974" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2614218974"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1983278831-computador-facil-intel-core-i5-8gb-ssd-240gb-_JM#position=27&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Fácil Intel Core I5 8gb Ssd 240gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Computador Fácil Intel Core I5 8gb Ssd 240gb" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_617813-MLB47145821935_082021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1983278831-computador-facil-intel-core-i5-8gb-ssd-240gb-_JM#position=27&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Fácil Intel Core I5 8gb Ssd 240gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1319 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.319</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1161 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.161</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">116 reais con 07 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">116</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">07</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Crédito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Fácil Intel Core I5 8gb Ssd 240gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983278831" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1983278831"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://www.mercadolivre.com.br/notebook-multilaser-m11w-prime-pc280-prateada-tactil-116-intel-celeron-n4020-4gb-de-ram-64gb-ssd-intel-uhd-graphics-600-1366x768px-windows-11-home/p/MLB19158523?pdp_filters=category:MLB1648#searchVariation=MLB19158523&position=7&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title='Notebook Multilaser M11W Prime PC280 prateada táctil 11.6", Intel Celeron N4020 4GB de RAM 64GB SSD, Intel UHD Graphics 600 1366x768px Windows 11 Home'><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt='Notebook Multilaser M11W Prime PC280 prateada táctil 11.6", Intel Celeron N4020 4GB de RAM 64GB SSD, Intel UHD Graphics 600 1366x768px Windows 11 Home' class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_626936-MLA50293629492_062022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://www.mercadolivre.com.br/notebook-multilaser-m11w-prime-pc280-prateada-tactil-116-intel-celeron-n4020-4gb-de-ram-64gb-ssd-intel-uhd-graphics-600-1366x768px-windows-11-home/p/MLB19158523?pdp_filters=category:MLB1648#searchVariation=MLB19158523&position=7&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title='Notebook Multilaser M11W Prime PC280 prateada táctil 11.6", Intel Celeron N4020 4GB de RAM 64GB SSD, Intel UHD Graphics 600 1366x768px Windows 11 Home'><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2217 reais con 99 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.217</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">99</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1332 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.332</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">39% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">133 reais con 25 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">133</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">25</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Notebook Multilaser M11W Prime PC280 prateada táctil 11.6", Intel Celeron N4020 4GB de RAM 64GB SSD, Intel UHD Graphics 600 1366x768px Windows 11 Home</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por Ponto Certo Eletro</p></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-half" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-half"></use></svg></span><span class="ui-search-reviews__amount">26</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2696339147" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2696339147"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1663773541-pc-gamer-intel-core-i5-34ghz-8gb-ssd240gb-lol-freefire-_JM#position=28&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Gamer Intel Core I5 3.4ghz 8gb Ssd240gb Lol Freefire"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Pc Gamer Intel Core I5 3.4ghz 8gb Ssd240gb Lol Freefire" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_629183-MLB50464838976_062022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1663773541-pc-gamer-intel-core-i5-34ghz-8gb-ssd240gb-lol-freefire-_JM#position=28&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Gamer Intel Core I5 3.4ghz 8gb Ssd240gb Lol Freefire"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1890 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.890</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">189 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">189</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Crédito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Gamer Intel Core I5 3.4ghz 8gb Ssd240gb Lol Freefire</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1663773541" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1663773541"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1837442511-pc-computador-cpu-i5-ssd-480gb-16gb-ram-fonte-500w-_JM#position=29&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Computador Cpu I5 / Ssd 480gb / 16gb Ram / Fonte 500w"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Pc Computador Cpu I5 / Ssd 480gb / 16gb Ram / Fonte 500w" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_772003-MLB50614267207_072022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1837442511-pc-computador-cpu-i5-ssd-480gb-16gb-ram-fonte-500w-_JM#position=29&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Computador Cpu I5 / Ssd 480gb / 16gb Ram / Fonte 500w"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2221 reais con 90 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.221</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">90</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1889 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.889</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">15% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">188 reais con 86 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">188</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">86</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Crédito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Computador Cpu I5 / Ssd 480gb / 16gb Ram / Fonte 500w</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1837442511" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1837442511"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1983279452-computador-facil-intel-core-i3-10100f-8gb-ddr4-ssd-240gb-_JM#position=30&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Fácil Intel Core I3 10100f 8gb Ddr4 Ssd 240gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Computador Fácil Intel Core I3 10100f 8gb Ddr4 Ssd 240gb" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_865725-MLB47234340005_082021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1983279452-computador-facil-intel-core-i3-10100f-8gb-ddr4-ssd-240gb-_JM#position=30&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Fácil Intel Core I3 10100f 8gb Ddr4 Ssd 240gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2109 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.109</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1856 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.856</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">185 reais con 59 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">185</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">59</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Fácil Intel Core I3 10100f 8gb Ddr4 Ssd 240gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983279452" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1983279452"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core ui-search-result--advertisement andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=GeV8zlag4h1%2FXCJd28LNrAS7KocOG0PQaNkymMXw3YZyKMix2Ei8ep6AFc%2B4HtPqHVJ1Se3UkRi1Rb4a4ySEMJvVUjLkVhSotB3rB%2F3AF5f9kYbST4vLiGlpw7lmDKY9Jgq2smW4wMb0LTCg5Wc2xEfdgk6WJeVLT0F95hv3pNOvlvcodukhabFHg2pEfoKKv9C%2FznRmRBxubXFkBCHUvuO5i3MafrcyxzNNeKbhvHBA26gGQPz2aQp5VQ%2FaovnOPH9TfU%2F2msgMLnmrlk3RYOwOyVONx6SrCR5pF3TC%2FmVb%2BYXzodwMEZryZjrsz%2FGXWBcEYgcUGUkwAhivy49Z32yYFlQFf4vVJBDjqZ7HZ%2BpJqYp4rptv4A7cCijl3lqqUXGfZVlPFvgiq7rRCSdDNtb9vjM7cw4PsueyX3u%2BONUVZkktJoEoFKJbe46AyQgJrkSceGNcq%2BRBlU7keoPxOKh2j19rZzx8xMFKjN%2FDNaekz%2FQVdMC3ZLJDZpgGZeCVbaxYTDccRctgJWXoOo%2B9dxfHD1G0S7TyS57iy4qBC8H02dj8NdG5LiJdjVP3RRIeeLhGE8WdoxZKaEZMkVntpEaJBrqJsoaH%2BahcsKvnXJQx4AkJwSrvrKa8BYMHt6xVPWyPQBXG9KEOT7udVG%2FRLYGc8v3XHmmdcf%2BO0rfxATWWlaf3nBdcQR%2FV0N9iSRavAp1aYws%2BOkPcpIGWL9qJtYbMdCEcuQ2wRCosVD8A14ABxSQk4D%2F947%2BaaVRxPsxKScSoe1n4%2Bsboj3d3SQ%3D%3D&rb=x" rel="nofollow,sponsored" title="Pc Computador Cpu Intel Core I3 Hd 1 Tb / 8gb Memória Ram"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Pc Computador Cpu Intel Core I3 Hd 1 Tb / 8gb Memória Ram" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_905103-MLB49635935018_042022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=GeV8zlag4h1%2FXCJd28LNrAS7KocOG0PQaNkymMXw3YZyKMix2Ei8ep6AFc%2B4HtPqHVJ1Se3UkRi1Rb4a4ySEMJvVUjLkVhSotB3rB%2F3AF5f9kYbST4vLiGlpw7lmDKY9Jgq2smW4wMb0LTCg5Wc2xEfdgk6WJeVLT0F95hv3pNOvlvcodukhabFHg2pEfoKKv9C%2FznRmRBxubXFkBCHUvuO5i3MafrcyxzNNeKbhvHBA26gGQPz2aQp5VQ%2FaovnOPH9TfU%2F2msgMLnmrlk3RYOwOyVONx6SrCR5pF3TC%2FmVb%2BYXzodwMEZryZjrsz%2FGXWBcEYgcUGUkwAhivy49Z32yYFlQFf4vVJBDjqZ7HZ%2BpJqYp4rptv4A7cCijl3lqqUXGfZVlPFvgiq7rRCSdDNtb9vjM7cw4PsueyX3u%2BONUVZkktJoEoFKJbe46AyQgJrkSceGNcq%2BRBlU7keoPxOKh2j19rZzx8xMFKjN%2FDNaekz%2FQVdMC3ZLJDZpgGZeCVbaxYTDccRctgJWXoOo%2B9dxfHD1G0S7TyS57iy4qBC8H02dj8NdG5LiJdjVP3RRIeeLhGE8WdoxZKaEZMkVntpEaJBrqJsoaH%2BahcsKvnXJQx4AkJwSrvrKa8BYMHt6xVPWyPQBXG9KEOT7udVG%2FRLYGc8v3XHmmdcf%2BO0rfxATWWlaf3nBdcQR%2FV0N9iSRavAp1aYws%2BOkPcpIGWL9qJtYbMdCEcuQ2wRCosVD8A14ABxSQk4D%2F947%2BaaVRxPsxKScSoe1n4%2Bsboj3d3SQ%3D%3D&rb=x" rel="nofollow,sponsored" title="Pc Computador Cpu Intel Core I3 Hd 1 Tb / 8gb Memória Ram"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1377 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.377</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">137 reais con 68 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">137</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">68</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Computador Cpu Intel Core I3 Hd 1 Tb / 8gb Memória Ram</h2></div></div><div class="ui-search-item__ad-container"><span class="ui-search-item__ad-label ui-search-item__ad-label--blue">Patrocinado</span></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2610297318" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2610297318"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core ui-search-result--advertisement andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=YAqpLVM8Plx3fVYfKbG97aoVl4UTPeSnTJkhCB7TOWSC8UZzcEWC%2BNwEdn9bMGURPCTWN0poBzbBvAKSqyR9ZZpZDumDXP9CYxtOw%2FH8AuIQ4Ci2In%2BJa82%2BjA6%2Bguaj2AahVvTxahhXp52kNj9zoD%2BXythp8dvZgjV0u4m7Dkzl0DVJrwJYSLqx3b%2BlNjrieVd2tt1KgDoGWQM3hbyfbrir0%2FBkNuAkjhelpSNswcLCPtQgiT4znCUmIz9WPIa%2FibMAdLei0%2BSph5MrlVwrElljHL7S9ocnvawqOPnSXPktcPEa%2BhJBkk9zfjv7Mg7NWB8k5mDhWJ32fvZQD4N7An9sswGM1eCmV5R6iZekq9G2PgzgLPMLOaTTF8f3E0tGPmwAFqB%2BDDe2LBi5tKLota6FONRrq%2B5234L8UbI4jIsXbBuDYIgphUXjB2pjmkhKuxMBCmCR6dDsU2rwuLG2L1Qb%2FmSmlD635nAc36ItmfSIr8QlZjB570ROkjOFO8zzPQJzWsb7TIAVE0u%2FPxQlB9neWB0u2vcjd87XiPvWOcWSy7ZFVUZENRzCQ245EQAJThl1NsCuJOqlxV76A7e96ssT7WB81pKtPh7tq2pPuXFjjHLhVcfK5XgqH5WmDDun9tbFG2lQw7IsL6PQrBV4mapmVjefByrL3pL3pYNR4Wv00qAsMow%2Fu4XmyIyDRO8wdMjAB0RoWJWQ64or%2FWxLyAaWyHbmrxn8KK8FzZrle34zGQ0Y24bHcWgjNOSpMcDFI0VaoWiTxDU2T%2FdNcgh2&rb=x" rel="nofollow,sponsored" title="Pc Gamer Barato Completo Intel I5 16gb Hd 1tb Geforce 2gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Pc Gamer Barato Completo Intel I5 16gb Hd 1tb Geforce 2gb" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_824487-MLB49401202035_032022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=YAqpLVM8Plx3fVYfKbG97aoVl4UTPeSnTJkhCB7TOWSC8UZzcEWC%2BNwEdn9bMGURPCTWN0poBzbBvAKSqyR9ZZpZDumDXP9CYxtOw%2FH8AuIQ4Ci2In%2BJa82%2BjA6%2Bguaj2AahVvTxahhXp52kNj9zoD%2BXythp8dvZgjV0u4m7Dkzl0DVJrwJYSLqx3b%2BlNjrieVd2tt1KgDoGWQM3hbyfbrir0%2FBkNuAkjhelpSNswcLCPtQgiT4znCUmIz9WPIa%2FibMAdLei0%2BSph5MrlVwrElljHL7S9ocnvawqOPnSXPktcPEa%2BhJBkk9zfjv7Mg7NWB8k5mDhWJ32fvZQD4N7An9sswGM1eCmV5R6iZekq9G2PgzgLPMLOaTTF8f3E0tGPmwAFqB%2BDDe2LBi5tKLota6FONRrq%2B5234L8UbI4jIsXbBuDYIgphUXjB2pjmkhKuxMBCmCR6dDsU2rwuLG2L1Qb%2FmSmlD635nAc36ItmfSIr8QlZjB570ROkjOFO8zzPQJzWsb7TIAVE0u%2FPxQlB9neWB0u2vcjd87XiPvWOcWSy7ZFVUZENRzCQ245EQAJThl1NsCuJOqlxV76A7e96ssT7WB81pKtPh7tq2pPuXFjjHLhVcfK5XgqH5WmDDun9tbFG2lQw7IsL6PQrBV4mapmVjefByrL3pL3pYNR4Wv00qAsMow%2Fu4XmyIyDRO8wdMjAB0RoWJWQ64or%2FWxLyAaWyHbmrxn8KK8FzZrle34zGQ0Y24bHcWgjNOSpMcDFI0VaoWiTxDU2T%2FdNcgh2&rb=x" rel="nofollow,sponsored" title="Pc Gamer Barato Completo Intel I5 16gb Hd 1tb Geforce 2gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 3122 reais con 10 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">3.122</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">10</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">3122 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">3.122</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">312 reais con 21 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">312</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">21</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Gamer Barato Completo Intel I5 16gb Hd 1tb Geforce 2gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div><div class="ui-search-item__ad-container"><span class="ui-search-item__ad-label ui-search-item__ad-label--blue">Patrocinado</span></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2210259535" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2210259535"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-2669020387-cpu-desktop-core-2-duo-4gb-ssd-120gb-wi-fi-windows-10-_JM#position=31&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Cpu Desktop Core 2 Duo / 4gb / Ssd 120gb / Wi-fi/ Windows 10"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Cpu Desktop Core 2 Duo / 4gb / Ssd 120gb / Wi-fi/ Windows 10" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_794520-MLB50118705093_052022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-2669020387-cpu-desktop-core-2-duo-4gb-ssd-120gb-wi-fi-windows-10-_JM#position=31&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Cpu Desktop Core 2 Duo / 4gb / Ssd 120gb / Wi-fi/ Windows 10"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">779 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">779</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">75 reais con 52 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">75</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">52</span></span></span></div></div></span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Crédito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Cpu Desktop Core 2 Duo / 4gb / Ssd 120gb / Wi-fi/ Windows 10</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2669020387" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2669020387"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://www.mercadolivre.com.br/disco-solido-interno-kingston-suv400s37240g-240gb/p/MLB6189662?pdp_filters=category:MLB1648#searchVariation=MLB6189662&position=8&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Disco sólido interno Kingston SUV400S37/240G 240GB"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Disco sólido interno Kingston SUV400S37/240G 240GB" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_760570-MLA40662362283_022020-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://www.mercadolivre.com.br/disco-solido-interno-kingston-suv400s37240g-240gb/p/MLB6189662?pdp_filters=category:MLB1648#searchVariation=MLB6189662&position=8&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Disco sólido interno Kingston SUV400S37/240G 240GB"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">195 reais con 89 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">195</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">89</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">18 reais con 99 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">18</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">99</span></span></span></div></div></span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Disco sólido interno Kingston SUV400S37/240G 240GB</h2></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-half" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-half"></use></svg></span><span class="ui-search-reviews__amount">1102</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2610554493" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2610554493"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-book-pc319-preta-14-intel-pentium-n3700-4gb-de-ram-64gb-hdd-intel-hd-graphics-braswell-1366x768px-windows-10-home/p/MLB18941410?pdp_filters=category:MLB1648#searchVariation=MLB18941410&position=9&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title='Notebook Multilaser Legacy Book PC319 preta 14", Intel Pentium N3700 4GB de RAM 64GB HDD, Intel HD Graphics (Braswell) 1366x768px Windows 10 Home'><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt='Notebook Multilaser Legacy Book PC319 preta 14", Intel Pentium N3700 4GB de RAM 64GB HDD, Intel HD Graphics (Braswell) 1366x768px Windows 10 Home' class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_683939-MLA49170389796_022022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-book-pc319-preta-14-intel-pentium-n3700-4gb-de-ram-64gb-hdd-intel-hd-graphics-braswell-1366x768px-windows-10-home/p/MLB18941410?pdp_filters=category:MLB1648#searchVariation=MLB18941410&position=9&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title='Notebook Multilaser Legacy Book PC319 preta 14", Intel Pentium N3700 4GB de RAM 64GB HDD, Intel HD Graphics (Braswell) 1366x768px Windows 10 Home'><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">2250 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.250</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">218 reais con 13 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">218</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">13</span></span></span></div></div></span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Notebook Multilaser Legacy Book PC319 preta 14", Intel Pentium N3700 4GB de RAM 64GB HDD, Intel HD Graphics (Braswell) 1366x768px Windows 10 Home</h2></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-half" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-half"></use></svg></span><span class="ui-search-reviews__amount">36</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2199976353" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2199976353"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1986322829-pc-computador-cpu-intel-core-i5-ssd-240gb-8gb-memoria-ram-_JM#position=32&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Memória Ram"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Memória Ram" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_804398-MLB47170053830_082021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1986322829-pc-computador-cpu-intel-core-i5-ssd-240gb-8gb-memoria-ram-_JM#position=32&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Memória Ram"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1298 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.298</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">129 reais con 80 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">129</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">80</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Crédito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Memória Ram</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1986322829" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1986322829"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1680063928-pc-computador-cpu-core-i5-3470-ssd-240gb-16gb-memoria-ram-_JM#position=33&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Computador Cpu Core I5 3470 Ssd 240gb + 16gb Memória Ram"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Pc Computador Cpu Core I5 3470 Ssd 240gb + 16gb Memória Ram" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_670003-MLB50614039338_072022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1680063928-pc-computador-cpu-core-i5-3470-ssd-240gb-16gb-memoria-ram-_JM#position=33&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Computador Cpu Core I5 3470 Ssd 240gb + 16gb Memória Ram"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2219 reais con 90 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.219</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">90</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1598 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.598</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">28% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">159 reais con 83 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">159</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">83</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Crédito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Computador Cpu Core I5 3470 Ssd 240gb + 16gb Memória Ram</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1680063928" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1680063928"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1899027328-cpu-pc-torre-core-i5-3470-320ghz-8gb-ssd-240gb-com-nf-_JM#position=34&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title=" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt=" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_869749-MLB47473329590_092021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1899027328-cpu-pc-torre-core-i5-3470-320ghz-8gb-ssd-240gb-com-nf-_JM#position=34&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title=" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1370 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.370</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">132 reais con 82 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">132</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">82</span></span></span></div></div></span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Crédito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p><span class="ui-search-item__fulfillment"><svg aria-label="full" class="ui-search-icon ui-search-icon--full" viewbox="0 0 100 32" xmlns="http://www.w3.org/2000/svg"><use href="#full"></use></svg></span></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element"> Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1899027328" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1899027328"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1506134141-cpu-desktop-dell-core-i5-32ghz-8gb-ssd-240gb-win10-_JM#position=37&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Cpu Desktop Dell Core-i5 3.2ghz 8gb Ssd 240gb Win10"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Cpu Desktop Dell Core-i5 3.2ghz 8gb Ssd 240gb Win10" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_912432-MLB49974695962_052022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1506134141-cpu-desktop-dell-core-i5-32ghz-8gb-ssd-240gb-win10-_JM#position=37&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Cpu Desktop Dell Core-i5 3.2ghz 8gb Ssd 240gb Win10"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2059 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.059</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1812 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.812</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">175 reais con 67 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">175</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">67</span></span></span></div></div></span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Crédito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Cpu Desktop Dell Core-i5 3.2ghz 8gb Ssd 240gb Win10</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1506134141" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1506134141"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1983288676-computador-facil-intel-core-i3-8gb-ssd-240gb-_JM#position=38&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Fácil Intel Core I3 8gb Ssd 240gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Computador Fácil Intel Core I3 8gb Ssd 240gb" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_699910-MLB47145668957_082021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1983288676-computador-facil-intel-core-i3-8gb-ssd-240gb-_JM#position=38&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Fácil Intel Core I3 8gb Ssd 240gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--deal_of_the_day" style="background:#3483FA"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#FFFFFF">OFERTA DO DIA</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1180 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.180</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1038 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.038</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">103 reais con 84 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">103</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">84</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Crédito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Fácil Intel Core I3 8gb Ssd 240gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983288676" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1983288676"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1983279518-computador-completo-facil-intel-i5-08-gb-ddr3-ssd-120-gb-_JM#position=39&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Completo Fácil Intel I5 08 Gb Ddr3 Ssd 120 Gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Computador Completo Fácil Intel I5 08 Gb Ddr3 Ssd 120 Gb" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_932170-MLB47230342741_082021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1983279518-computador-completo-facil-intel-i5-08-gb-ddr3-ssd-120-gb-_JM#position=39&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Completo Fácil Intel I5 08 Gb Ddr3 Ssd 120 Gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2009 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.009</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1768 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.768</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">176 reais con 79 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">176</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">79</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Completo Fácil Intel I5 08 Gb Ddr3 Ssd 120 Gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983279518" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1983279518"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-2022879801-pc-gamer-completo-facil-intel-i5-3-16gb-ssd-240gb-gt420-4gb-_JM#position=40&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Gamer Completo Fácil Intel I5 3ª 16gb Ssd 240gb Gt420 4gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Pc Gamer Completo Fácil Intel I5 3ª 16gb Ssd 240gb Gt420 4gb" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_749265-MLB50697629795_072022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-2022879801-pc-gamer-completo-facil-intel-i5-3-16gb-ssd-240gb-gt420-4gb-_JM#position=40&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Gamer Completo Fácil Intel I5 3ª 16gb Ssd 240gb Gt420 4gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 3529 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">3.529</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">3106 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">3.106</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">310 reais con 55 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">310</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">55</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Crédito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Gamer Completo Fácil Intel I5 3ª 16gb Ssd 240gb Gt420 4gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2022879801" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2022879801"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-2096063553-computador-facil-intel-core-i3-4gb-ssd-120gb-_JM#position=41&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Fácil Intel Core I3 4gb Ssd 120gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Computador Fácil Intel Core I3 4gb Ssd 120gb" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_766782-MLB47145738530_082021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-2096063553-computador-facil-intel-core-i3-4gb-ssd-120gb-_JM#position=41&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Fácil Intel Core I3 4gb Ssd 120gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 939 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">939</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">826 reais con 32 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">826</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">32</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">80 reais con 11 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">80</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">11</span></span></span></div></div></span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Crédito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Fácil Intel Core I3 4gb Ssd 120gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2096063553" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2096063553"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core ui-search-result--advertisement andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=kjBFWOIfeQlMHdWANCwPV%2BR1xYh%2BOBx2sEwU%2FPiwfjPaySRx%2Bd97nHHukWqK6ZZVlZAt76SvwdgLdSKS37kCcD9Rif%2BJ8p6lYxtJkZ3kfwvX%2BtX0zRcRVkH2zJlBAjI%2Bgic9u%2Fff%2B04P1V1EFkmpujOPy5RyaicJnabe0%2B765wSt7hr6K8tnY1wcfX6RpRZjQpvo94VVFeoQNK3zoQHc6y38TPD3AiVUcpCvDYDf2AJcZxRjHBuH7Y%2B7QhmjTDisSZVtT%2F15wrLIps19o3t8qwf%2BbGWSO7pWrXtgoFMmAGFepHzuNEpRtQRAjuOvEktz6ut%2FzQnvYmaMsOcZsdicjDvdwzuLxW28hanyb%2FPz8WpAreKkbiPb0s1bIt3a9wub%2BqZ2DpqbQfA3mH2Ifgv6lXuJrm%2BSj8L97nCItYy2t62rfHke3N0j9ThXFghPcDAgAvAQDlSfHcRLJJawRR6kG69Lt3meA%2B5macZX4aHEueSTCCi46PlBAft4FCDTaj3uQAFd6k130pVwk%2FbHO7l4x1Ymmnra2ijgVx%2BgsSSb2y2M7mQaaQJ18%2B6P63JXo6IiL8k508Oi8qwstIXdPUEX5XpQ9Bi8BitNnEHp7%2FuVtjTrWPPOCjB2ZgKOvgdPLAtsB8mNvWZXT94q0Wdqe1FXjsq%2FHG99hGJOXP9XipPaEYFe0Ic01OUfgETIat8J%2Be4YE1PO5Fqc3gSzOUuNTUZh8LfR2NZvcthmosjrleeHH%2BYhNPCMjUgOkADduLf2Op4V5e1%2F7LDx%2BbjTAVH3Pw%3D%3D&rb=x" rel="nofollow,sponsored" title="Ssd Kingston Q500 Disco Sólido Interno 240gb Versão 2023"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Ssd Kingston Q500 Disco Sólido Interno 240gb Versão 2023" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_882634-MLB48986961738_012022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=kjBFWOIfeQlMHdWANCwPV%2BR1xYh%2BOBx2sEwU%2FPiwfjPaySRx%2Bd97nHHukWqK6ZZVlZAt76SvwdgLdSKS37kCcD9Rif%2BJ8p6lYxtJkZ3kfwvX%2BtX0zRcRVkH2zJlBAjI%2Bgic9u%2Fff%2B04P1V1EFkmpujOPy5RyaicJnabe0%2B765wSt7hr6K8tnY1wcfX6RpRZjQpvo94VVFeoQNK3zoQHc6y38TPD3AiVUcpCvDYDf2AJcZxRjHBuH7Y%2B7QhmjTDisSZVtT%2F15wrLIps19o3t8qwf%2BbGWSO7pWrXtgoFMmAGFepHzuNEpRtQRAjuOvEktz6ut%2FzQnvYmaMsOcZsdicjDvdwzuLxW28hanyb%2FPz8WpAreKkbiPb0s1bIt3a9wub%2BqZ2DpqbQfA3mH2Ifgv6lXuJrm%2BSj8L97nCItYy2t62rfHke3N0j9ThXFghPcDAgAvAQDlSfHcRLJJawRR6kG69Lt3meA%2B5macZX4aHEueSTCCi46PlBAft4FCDTaj3uQAFd6k130pVwk%2FbHO7l4x1Ymmnra2ijgVx%2BgsSSb2y2M7mQaaQJ18%2B6P63JXo6IiL8k508Oi8qwstIXdPUEX5XpQ9Bi8BitNnEHp7%2FuVtjTrWPPOCjB2ZgKOvgdPLAtsB8mNvWZXT94q0Wdqe1FXjsq%2FHG99hGJOXP9XipPaEYFe0Ic01OUfgETIat8J%2Be4YE1PO5Fqc3gSzOUuNTUZh8LfR2NZvcthmosjrleeHH%2BYhNPCMjUgOkADduLf2Op4V5e1%2F7LDx%2BbjTAVH3Pw%3D%3D&rb=x" rel="nofollow,sponsored" title="Ssd Kingston Q500 Disco Sólido Interno 240gb Versão 2023"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">229 reais con 90 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">229</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">90</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">22 reais con 29 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">22</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">29</span></span></span></div></div></span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Ssd Kingston Q500 Disco Sólido Interno 240gb Versão 2023</h2></div></div><div class="ui-search-item__ad-container"><span class="ui-search-item__ad-label ui-search-item__ad-label--blue">Patrocinado</span></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2161556728" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2161556728"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core ui-search-result--advertisement andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=582f%2FoYl1X%2BFutuD2yRC5H4qq1VPXHnAzz8eV4XElq4C8oxbgVOHEV9wmRut9klpXaYwRDFfj0x0cPCWDs%2Fu8xHVXqq4XkVmQHCehlHZTGARsw1lVwPBFAw1O9PB5W0p873uSjnfD5xm%2Ft9yWd%2BWEpPFZ1jkkqLYiLr3y6g%2Fv6CyhpsuMvWIoDjELNcnU81HlAGPyuoyj95yDHbc1eqCBaJ%2FHo5Wd%2F6RcELjkKI85H0M%2FJvokxa5gLoW%2BRPTW4SJ7SeZAWhV54oE51q2tr7UvIyzM%2FTxwCmmSGXbxNaenZESmxXjvRXd2Uwczlg4FjwdafTwCqF0ihSPPu%2Fscx61RL0BUCiFUvcf03gHkR8MKZfCt5dHg%2FalxH4eA9DJFB5c0q55QvCbBqyGbNjFyA3l6MaKiUtgu73swtd%2F1uNbN%2BU5IZPjR6hw2G5OQOBDzItdZgnNOhJJXwdzWZwO2fS%2Bbd2PufyOn%2Bay6Nw53NfTXN%2FHvgINyaIr%2BeqwHqOk3lx2MnanZDs%2Blx%2FKoQQSflDy4xCo%2BCOTsmS2xwHm4USuFa3iYGyVXnAXsWG7BKQCxI3GTh%2BxCuwXyH%2BPjUDclCq%2B2bwn4y7wXg6fxJtcJCoQOL7a5ZTPAKSj45k6eVpji6ItiWNxAMbCd%2Bb%2BIPw1CoTyWSVWOzGBRh%2FdN7Y4ZEmJKlKM%2FO9rmuRxBdS%2Belq6oyQqGWQV7WwKDc6NLxAle3WzlfWDrBHV1Wua8Y7NbTTAgcEE5ly%2FVJCUypbuZJB%2BirAonJD8tGImHJiIuoEaYi99&rb=x" rel="nofollow,sponsored" title="Pc Gamer Intel Core I5 3ª Geração 16gb Gt 420 4gb Ssd 240gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Pc Gamer Intel Core I5 3ª Geração 16gb Gt 420 4gb Ssd 240gb" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_786420-MLB50697456897_072022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count?a=582f%2FoYl1X%2BFutuD2yRC5H4qq1VPXHnAzz8eV4XElq4C8oxbgVOHEV9wmRut9klpXaYwRDFfj0x0cPCWDs%2Fu8xHVXqq4XkVmQHCehlHZTGARsw1lVwPBFAw1O9PB5W0p873uSjnfD5xm%2Ft9yWd%2BWEpPFZ1jkkqLYiLr3y6g%2Fv6CyhpsuMvWIoDjELNcnU81HlAGPyuoyj95yDHbc1eqCBaJ%2FHo5Wd%2F6RcELjkKI85H0M%2FJvokxa5gLoW%2BRPTW4SJ7SeZAWhV54oE51q2tr7UvIyzM%2FTxwCmmSGXbxNaenZESmxXjvRXd2Uwczlg4FjwdafTwCqF0ihSPPu%2Fscx61RL0BUCiFUvcf03gHkR8MKZfCt5dHg%2FalxH4eA9DJFB5c0q55QvCbBqyGbNjFyA3l6MaKiUtgu73swtd%2F1uNbN%2BU5IZPjR6hw2G5OQOBDzItdZgnNOhJJXwdzWZwO2fS%2Bbd2PufyOn%2Bay6Nw53NfTXN%2FHvgINyaIr%2BeqwHqOk3lx2MnanZDs%2Blx%2FKoQQSflDy4xCo%2BCOTsmS2xwHm4USuFa3iYGyVXnAXsWG7BKQCxI3GTh%2BxCuwXyH%2BPjUDclCq%2B2bwn4y7wXg6fxJtcJCoQOL7a5ZTPAKSj45k6eVpji6ItiWNxAMbCd%2Bb%2BIPw1CoTyWSVWOzGBRh%2FdN7Y4ZEmJKlKM%2FO9rmuRxBdS%2Belq6oyQqGWQV7WwKDc6NLxAle3WzlfWDrBHV1Wua8Y7NbTTAgcEE5ly%2FVJCUypbuZJB%2BirAonJD8tGImHJiIuoEaYi99&rb=x" rel="nofollow,sponsored" title="Pc Gamer Intel Core I5 3ª Geração 16gb Gt 420 4gb Ssd 240gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2629 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.629</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">2366 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.366</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">10% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">236 reais con 61 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">236</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">61</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Gamer Intel Core I5 3ª Geração 16gb Gt 420 4gb Ssd 240gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div><div class="ui-search-item__ad-container"><span class="ui-search-item__ad-label ui-search-item__ad-label--blue">Patrocinado</span></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983287147" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1983287147"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-cloud-pc131-gray-14-intel-atom-x5-z8350-2gb-de-ram-32gb-ssd-1366x768px-windows-10-home/p/MLB17739841?pdp_filters=category:MLB1648#searchVariation=MLB17739841&position=10&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title='Notebook Multilaser Legacy Cloud PC131 gray 14", Intel Atom X5-Z8350 2GB de RAM 32GB SSD 1366x768px Windows 10 Home'><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt='Notebook Multilaser Legacy Cloud PC131 gray 14", Intel Atom X5-Z8350 2GB de RAM 32GB SSD 1366x768px Windows 10 Home' class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_663420-MLA45638372671_042021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-cloud-pc131-gray-14-intel-atom-x5-z8350-2gb-de-ram-32gb-ssd-1366x768px-windows-10-home/p/MLB17739841?pdp_filters=category:MLB1648#searchVariation=MLB17739841&position=10&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title='Notebook Multilaser Legacy Cloud PC131 gray 14", Intel Atom X5-Z8350 2GB de RAM 32GB SSD 1366x768px Windows 10 Home'><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1650 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.650</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1324 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.324</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">19% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">132 reais con 40 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">132</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">40</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Notebook Multilaser Legacy Cloud PC131 gray 14", Intel Atom X5-Z8350 2GB de RAM 32GB SSD 1366x768px Windows 10 Home</h2></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-half" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-half"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" height="100%" viewbox="0 0 11 10" width="100%"><use href="#start-empty"></use></svg></span><span class="ui-search-reviews__amount">158</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2103940157" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2103940157"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://www.mercadolivre.com.br/notebook-compaq-presario-cq-25-gray-141-intel-pentium-n3700-4gb-de-ram-120gb-ssd-intel-hd-graphics-1366x768px-windows-10-home/p/MLB17966310?pdp_filters=category:MLB1648#searchVariation=MLB17966310&position=13&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title='Notebook Compaq Presario CQ-25 gray 14.1", Intel Pentium N3700 4GB de RAM 120GB SSD, Intel HD Graphics 1366x768px Windows 10 Home'><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt='Notebook Compaq Presario CQ-25 gray 14.1", Intel Pentium N3700 4GB de RAM 120GB SSD, Intel HD Graphics 1366x768px Windows 10 Home' class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_686771-MLA48742378207_012022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://www.mercadolivre.com.br/notebook-compaq-presario-cq-25-gray-141-intel-pentium-n3700-4gb-de-ram-120gb-ssd-intel-hd-graphics-1366x768px-windows-10-home/p/MLB17966310?pdp_filters=category:MLB1648#searchVariation=MLB17966310&position=13&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title='Notebook Compaq Presario CQ-25 gray 14.1", Intel Pentium N3700 4GB de RAM 120GB SSD, Intel HD Graphics 1366x768px Windows 10 Home'><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1979 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.979</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">197 reais con 90 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">197</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">90</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Notebook Compaq Presario CQ-25 gray 14.1", Intel Pentium N3700 4GB de RAM 120GB SSD, Intel HD Graphics 1366x768px Windows 10 Home</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por SincPlace</p></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" height="100%" viewbox="0 0 11 10" width="100%"><use href="#start-empty"></use></svg></span><span class="ui-search-reviews__amount">61</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2724080796" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2724080796"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1983296789-computador-facil-completo-intel-core-i5-8gb-hd-1-tb-_JM#position=42&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Fácil Completo Intel Core I5 8gb Hd 1 Tb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Computador Fácil Completo Intel Core I5 8gb Hd 1 Tb" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_940955-MLB47230441512_082021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1983296789-computador-facil-completo-intel-core-i5-8gb-hd-1-tb-_JM#position=42&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Fácil Completo Intel Core I5 8gb Hd 1 Tb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--deal_of_the_day" style="background:#3483FA"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#FFFFFF">OFERTA DO DIA</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2219 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.219</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1953 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.953</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">195 reais con 27 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">195</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">27</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Crédito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Fácil Completo Intel Core I5 8gb Hd 1 Tb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983296789" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1983296789"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-2618767197-cpu-desktop-core-i3-ssd-240gb-4gb-memoria-wi-fi-win10-_JM#position=43&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Cpu Desktop Core I3 / Ssd 240gb / 4gb Memória / Wi-fi /win10"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Cpu Desktop Core I3 / Ssd 240gb / 4gb Memória / Wi-fi /win10" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_638057-MLB49747629097_042022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-2618767197-cpu-desktop-core-i3-ssd-240gb-4gb-memoria-wi-fi-win10-_JM#position=43&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Cpu Desktop Core I3 / Ssd 240gb / 4gb Memória / Wi-fi /win10"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1149 reais con 99 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.149</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">99</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1012 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.012</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">101 reais con 20 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">101</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">20</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Cpu Desktop Core I3 / Ssd 240gb / 4gb Memória / Wi-fi /win10</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2618767197" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2618767197"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://www.mercadolivre.com.br/monitor-pctop-mlp170hdmi-led-17-preto-100v240v/p/MLB18459542?pdp_filters=category:MLB1648#searchVariation=MLB18459542&position=14&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title='Monitor Pctop MLP170HDMI led 17 " preto 100V/240V'><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt='Monitor Pctop MLP170HDMI led 17 " preto 100V/240V' class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_734440-MLA47873401457_102021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://www.mercadolivre.com.br/monitor-pctop-mlp170hdmi-led-17-preto-100v240v/p/MLB18459542?pdp_filters=category:MLB1648#searchVariation=MLB18459542&position=14&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title='Monitor Pctop MLP170HDMI led 17 " preto 100V/240V'><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 579 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">579</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">394 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">394</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">31% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">38 reais con 20 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">38</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">20</span></span></span></div></div></span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p><span class="ui-search-item__fulfillment"><svg aria-label="full" class="ui-search-icon ui-search-icon--full" viewbox="0 0 100 32" xmlns="http://www.w3.org/2000/svg"><use href="#full"></use></svg></span></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Monitor Pctop MLP170HDMI led 17 " preto 100V/240V</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por VIKING</p></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" height="100%" viewbox="0 0 11 10" width="100%"><use href="#start-empty"></use></svg></span><span class="ui-search-reviews__amount">649</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2145104504" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2145104504"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-2626699161-pc-gamer-completo-i5-16gb-1tb-monitor-kit-gamer-full-hd-_JM#position=44&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Gamer Completo I5 16gb 1tb Monitor + Kit Gamer Full Hd"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Pc Gamer Completo I5 16gb 1tb Monitor + Kit Gamer Full Hd" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_637939-MLB49359922906_032022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-2626699161-pc-gamer-completo-i5-16gb-1tb-monitor-kit-gamer-full-hd-_JM#position=44&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Gamer Completo I5 16gb 1tb Monitor + Kit Gamer Full Hd"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2849 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.849</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">2507 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.507</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">243 reais con 07 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">243</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">07</span></span></span></div></div></span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Gamer Completo I5 16gb 1tb Monitor + Kit Gamer Full Hd</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por Imperiums</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2626699161" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2626699161"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1983286920-computador-completo-facil-intel-core-i5-08gb-ddr3-ssd-480-gb-_JM#position=45&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Completo Fácil Intel Core I5 08gb Ddr3 Ssd 480 Gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Computador Completo Fácil Intel Core I5 08gb Ddr3 Ssd 480 Gb" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_633631-MLB47230376736_082021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1983286920-computador-completo-facil-intel-core-i5-08gb-ddr3-ssd-480-gb-_JM#position=45&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Completo Fácil Intel Core I5 08gb Ddr3 Ssd 480 Gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--deal_of_the_day" style="background:#3483FA"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#FFFFFF">OFERTA DO DIA</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2249 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.249</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1979 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.979</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">197 reais con 91 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">197</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">91</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Crédito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Completo Fácil Intel Core I5 08gb Ddr3 Ssd 480 Gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983286920" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1983286920"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1983288815-pc-completo-facil-intel-i5-08gb-ssd-240gb-monitor-led-15-_JM#position=46&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Completo Fácil Intel I5 08gb Ssd 240gb + Monitor Led 15''"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Pc Completo Fácil Intel I5 08gb Ssd 240gb + Monitor Led 15''" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_661140-MLB47230543122_082021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1983288815-pc-completo-facil-intel-i5-08gb-ssd-240gb-monitor-led-15-_JM#position=46&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Completo Fácil Intel I5 08gb Ssd 240gb + Monitor Led 15''"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--deal_of_the_day" style="background:#3483FA"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#FFFFFF">OFERTA DO DIA</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2049 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.049</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1803 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.803</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">180 reais con 31 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">180</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">31</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Completo Fácil Intel I5 08gb Ssd 240gb + Monitor Led 15''</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1983288815" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1983288815"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1786478708-computador-cpu-intel-i3-4gb-ssd-120gb-hdmi-pronta-entrega-_JM#position=47&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Cpu Intel I3 4gb Ssd 120gb Hdmi Pronta Entrega"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Computador Cpu Intel I3 4gb Ssd 120gb Hdmi Pronta Entrega" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_783932-MLB43487722056_092020-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1786478708-computador-cpu-intel-i3-4gb-ssd-120gb-hdmi-pronta-entrega-_JM#position=47&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Cpu Intel I3 4gb Ssd 120gb Hdmi Pronta Entrega"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1180 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.180</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1038 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.038</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">103 reais con 84 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">103</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">84</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Cpu Intel I3 4gb Ssd 120gb Hdmi Pronta Entrega</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1786478708" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1786478708"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-2618802287-cpu-desktop-core-i5-ssd-120gb-4gb-memoria-wi-fi-win10-_JM#position=48&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Cpu Desktop Core I5 / Ssd 120gb / 4gb Memória / Wi-fi /win10"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Cpu Desktop Core I5 / Ssd 120gb / 4gb Memória / Wi-fi /win10" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_836376-MLB49747627011_042022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-2618802287-cpu-desktop-core-i5-ssd-120gb-4gb-memoria-wi-fi-win10-_JM#position=48&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Cpu Desktop Core I5 / Ssd 120gb / 4gb Memória / Wi-fi /win10"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1149 reais con 99 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.149</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">99</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1012 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.012</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">101 reais con 20 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">101</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">20</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Cpu Desktop Core I5 / Ssd 120gb / 4gb Memória / Wi-fi /win10</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2618802287" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2618802287"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://www.mercadolivre.com.br/disco-solido-interno-kingston-sa400s37480g-480gb-preto/p/MLB17978326?pdp_filters=category:MLB1648#searchVariation=MLB17978326&position=15&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Disco sólido interno Kingston SA400S37/480G 480GB preto"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Disco sólido interno Kingston SA400S37/480G 480GB preto" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_751939-MLA46221843872_052021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://www.mercadolivre.com.br/disco-solido-interno-kingston-sa400s37480g-480gb-preto/p/MLB17978326?pdp_filters=category:MLB1648#searchVariation=MLB17978326&position=15&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Disco sólido interno Kingston SA400S37/480G 480GB preto"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">273 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">273</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">26 reais con 47 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">26</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">47</span></span></span></div></div></span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Disco sólido interno Kingston SA400S37/480G 480GB preto</h2></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-half" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-half"></use></svg></span><span class="ui-search-reviews__amount">5776</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2044748327" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2044748327"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1885917902-pc-computador-cpu-intel-core-i3-ssd-240gb-8gb-memoria-ram-_JM#position=49&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Computador Cpu Intel Core I3 Ssd 240gb / 8gb Memória Ram"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Pc Computador Cpu Intel Core I3 Ssd 240gb / 8gb Memória Ram" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_993555-MLB50683816791_072022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1885917902-pc-computador-cpu-intel-core-i3-ssd-240gb-8gb-memoria-ram-_JM#position=49&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Computador Cpu Intel Core I3 Ssd 240gb / 8gb Memória Ram"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1666 reais con 90 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.666</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">90</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1183 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.183</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">29% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">118 reais con 35 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">118</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">35</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Computador Cpu Intel Core I3 Ssd 240gb / 8gb Memória Ram</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1885917902" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1885917902"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-2222645583-computador-desktop-intel-core-i3-293-ghz-4gb-ssd-120gb-hdmi-_JM#position=50&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Desktop Intel Core I3 2.93 Ghz 4gb Ssd 120gb Hdmi"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Computador Desktop Intel Core I3 2.93 Ghz 4gb Ssd 120gb Hdmi" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_998384-MLB49523568301_032022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-2222645583-computador-desktop-intel-core-i3-293-ghz-4gb-ssd-120gb-hdmi-_JM#position=50&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Desktop Intel Core I3 2.93 Ghz 4gb Ssd 120gb Hdmi"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">989 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">989</span></span></span><span class="ui-search-price__second-line__label"></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">95 reais con 88 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">95</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">88</span></span></span></div></div></span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Desktop Intel Core I3 2.93 Ghz 4gb Ssd 120gb Hdmi</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2222645583" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2222645583"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1615760527-cpu-pc-torre-core-i5-3470-320ghz-8gb-ssd-240gb-com-nf-_JM#position=51&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title=" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt=" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_601489-MLB42991126172_082020-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-1615760527-cpu-pc-torre-core-i5-3470-320ghz-8gb-ssd-240gb-com-nf-_JM#position=51&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title=" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1350 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.350</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1188 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.188</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">118 reais con 80 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">118</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">80</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Crédito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element"> Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB1615760527" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB1615760527"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-2025342637-computador-completo-facil-intel-core-i3-8gb-ssd-120gb-_JM#position=52&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Completo Fácil Intel Core I3 8gb Ssd 120gb "><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Computador Completo Fácil Intel Core I3 8gb Ssd 120gb " class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_627010-MLB47542956152_092021-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-2025342637-computador-completo-facil-intel-core-i3-8gb-ssd-120gb-_JM#position=52&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Completo Fácil Intel Core I3 8gb Ssd 120gb "><div class="ui-search-result__content-wrapper"><div class="ui-search-item__highlight-label ui-search-item__highlight-label--deal_of_the_day" style="background:#3483FA"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#FFFFFF">OFERTA DO DIA</label></div></div><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1859 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.859</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1636 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.636</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">163 reais con 59 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">163</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">59</span></span></span></div></div>sem juros</span></div><div class="ui-search-rebates"><div class="ui-search-rebates-rebate"><div class="ui-search-item__highlight-label ui-search-rebates-rebate__pill ui-search-item__highlight-label--pricing_rebates ui-search-item__highlight-label--no-background"><div class="ui-search-item__highlight-label__container"><label class="ui-search-styled-label ui-search-item__highlight-label__text" for="" style="color:#3483FA;background:#D9E7FA;box-shadow:4px 0 0 #D9E7FA ,-4px 0 0 #D9E7FA">5% OFF com Mercado Crédito</label></div></div></div></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Completo Fácil Intel Core I3 8gb Ssd 120gb </h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2025342637" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2025342637"/></form></div></div></div></li></ol><ol class="ui-search-layout ui-search-layout--grid"><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-2032160315-computador-pc-completo-i5-intel-8gb-ssd-240gb-wi-fi-nfe-_JM#position=53&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Pc Completo I5 Intel 8gb Ssd 240gb Wi-fi + Nfe"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Computador Pc Completo I5 Intel 8gb Ssd 240gb Wi-fi + Nfe" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_631357-MLB48790718761_012022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-2032160315-computador-pc-completo-i5-intel-8gb-ssd-240gb-wi-fi-nfe-_JM#position=53&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Computador Pc Completo I5 Intel 8gb Ssd 240gb Wi-fi + Nfe"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 2390 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.390</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">2103 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">2.103</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--BLACK"><div class="ui-search-installments-prefix"><span>em</span></div>12x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--BLACK"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">203 reais con 91 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">203</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">91</span></span></span></div></div></span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Computador Pc Completo I5 Intel 8gb Ssd 240gb Wi-fi + Nfe</h2></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2032160315" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2032160315"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://produto.mercadolivre.com.br/MLB-2625920831-pc-facil-intel-pentium-g6400-10-geraco-8gb-ddr4-ssd-240gb-_JM#position=54&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Fácil Intel Pentium G6400 10ª Geração 8gb Ddr4 Ssd 240gb"><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt="Pc Fácil Intel Pentium G6400 10ª Geração 8gb Ddr4 Ssd 240gb" class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_969909-MLB49794162322_042022-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://produto.mercadolivre.com.br/MLB-2625920831-pc-facil-intel-pentium-g6400-10-geraco-8gb-ddr4-ssd-240gb-_JM#position=54&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title="Pc Fácil Intel Pentium G6400 10ª Geração 8gb Ddr4 Ssd 240gb"><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1749 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.749</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1539 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.539</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">12% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">153 reais con 91 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">153</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">91</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--shipping"><div class="ui-search-item__group__element ui-search-item__group__element--shipping"><p class="ui-search-item__shipping ui-search-item__shipping--free">Frete grátis</p></div></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Pc Fácil Intel Pentium G6400 10ª Geração 8gb Ddr4 Ssd 240gb</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por 2Eletro</p></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2625920831" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2625920831"/></form></div></div></div></li><li class="ui-search-layout__item"><div class="ui-search-result__wrapper"><div class="andes-card andes-card--flat andes-card--default ui-search-result ui-search-result--core andes-card--padding-default andes-card--animated"><div class="ui-search-result__image"><a class="ui-search-link" href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-air-pc222-prata-133-intel-celeron-n3350-4gb-de-ram-64gb-ssd-intel-hd-graphics-500-1920x1080px-windows-10-home/p/MLB15297208?pdp_filters=category:MLB1648#searchVariation=MLB15297208&position=16&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title='Notebook Multilaser Legacy Air PC222 prata 13.3", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1920x1080px Windows 10 Home'><div class="carousel-container arrow-visible"><div class="slick-initialized slick-slider"><div class="slick-list" role="presentation"><div class="slick-track"><div class="slick-slide slick-active" data-index="0" tabindex="-1"><img alt='Notebook Multilaser Legacy Air PC222 prata 13.3", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1920x1080px Windows 10 Home' class="ui-search-result-image__element lazy-loadable" data-src="https://http2.mlstatic.com/D_NQ_NP_985174-MLA40583676380_012020-W.jpg" height="284" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="284"/></div></div></div></div></div></a></div><a class="ui-search-result__content ui-search-link" href="https://www.mercadolivre.com.br/notebook-multilaser-legacy-air-pc222-prata-133-intel-celeron-n3350-4gb-de-ram-64gb-ssd-intel-hd-graphics-500-1920x1080px-windows-10-home/p/MLB15297208?pdp_filters=category:MLB1648#searchVariation=MLB15297208&position=16&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a" title='Notebook Multilaser Legacy Air PC222 prata 13.3", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1920x1080px Windows 10 Home'><div class="ui-search-result__content-wrapper"><div class="ui-search-item__group ui-search-item__group--price"><div class="ui-search-item__group__element ui-search-price__part-without-link"><div class="ui-search-price ui-search-price--size-medium"><s class="price-tag ui-search-price__part ui-search-price__original-value price-tag__disabled"><span class="price-tag-text-sr-only">Antes: 1573 reais con 90 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.573</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">90</span></span></s><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">1495 reais</span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">1.495</span></span></span><span class="ui-search-price__second-line__label"><span class="ui-search-price__discount">5% OFF</span></span></div></div></div><span class="ui-search-item__group__element ui-search-installments ui-search-color--LIGHT_GREEN"><div class="ui-search-installments-prefix"><span>em</span></div>10x <div class="ui-search-price ui-search-price--size-x-tiny ui-search-color--LIGHT_GREEN"><div class="ui-search-price__second-line"><span class="price-tag ui-search-price__part"><span class="price-tag-text-sr-only">149 reais con 49 centavos </span><span aria-hidden="true" class="price-tag-amount"><span class="price-tag-symbol">R$</span><span class="price-tag-fraction">149</span><span class="price-tag-decimal-separator">,</span><span class="price-tag-cents">49</span></span></span></div></div>sem juros</span></div><div class="ui-search-item__group ui-search-item__group--title"><span class="ui-search-item__brand-discoverability ui-search-item__group__element"></span><h2 class="ui-search-item__title ui-search-item__group__element">Notebook Multilaser Legacy Air PC222 prata 13.3", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1920x1080px Windows 10 Home</h2><p class="ui-search-official-store-label ui-search-item__group__element ui-search-color--GRAY">por Loja MMPLACE</p></div><div class="ui-search-item__group ui-search-item__group--reviews"><div class="ui-search-reviews ui-search-item__group__element"><span class="ui-search-reviews__ratings"><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" fill="#3483fa" height="100%" viewbox="0 0 10 10" width="100%"><use href="#start-full"></use></svg><svg class="ui-search-icon ui-search-icon--star ui-search-icon--star-full" height="100%" viewbox="0 0 11 10" width="100%"><use href="#start-empty"></use></svg></span><span class="ui-search-reviews__amount">132</span></div></div></div></a><div class="ui-search-result__bookmark"><form action="/search/bookmarks/MLB2685001475" class="ui-search-bookmark" method="POST"><button aria-checked="false" aria-label="Favorito" class="ui-search-bookmark__btn" role="switch" type="submit"><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg><svg class="ui-search-icon ui-search-icon--bookmark ui-search-bookmark__icon-bookmark-fill" viewbox="0 0 22 20" xmlns="http://www.w3.org/2000/svg"><use href="#bookmark"></use></svg></button><input name="logginUrl" type="hidden" value="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit"/><input name="_csrf" type="hidden" value="wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8"/><input name="method" type="hidden" value="add"/><input name="itemId" type="hidden" value="MLB2685001475"/></form></div></div></div></li></ol><div style="display:contents"><div class="ui-search-listing-disclaimer ui-search-listing-disclaimer--grid"><div class="ui-search-listing-disclaimer__card ui-search-listing-disclaimer__card--grid"><div aria-hidden="true" aria-label="" class="andes-badge andes-badge--notification andes-badge--neutral ui-search-listing-disclaimer__icon andes-badge--small" hierarchy="loud"><svg class="andes-badge__icon" height="16" viewbox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g transform="matrix(1 0 0 -1 0 16)"><path class="andes-badge__icon-inner" d="M7.03 3.879h1.94l-.243 5.333H7.273z"></path><circle class="andes-badge__icon-inner" cx="8" cy="11.152" r="1" transform="matrix(1 0 0 -1 0 22.303)"></circle></g></g></svg></div><p class="ui-search-listing-disclaimer__text">O frete grátis está sujeito ao peso, preço e distância do envio.</p></div></div></div><div class="ui-search-pagination"><ul class="ui-search-pagination andes-pagination" role="navigation"><li class="andes-pagination__button andes-pagination__button--current"><span class="andes-pagination__link">1</span></li><li class="andes-pagination__page-count">de <!-- -->42</li><li class="andes-pagination__button andes-pagination__button--next"><a class="andes-pagination__link ui-search-link" href="https://informatica.mercadolivre.com.br/computador_Desde_49_NoIndex_True" rel="nofollow" role="button" title="Seguinte"><span class="andes-pagination__arrow-title">Seguinte</span><span class="andes-pagination__arrow"></span></a></li></ul></div><div style="display:contents"></div><div style="display:contents"></div><div style="display:contents"></div></section></div><div class="ui-search-bottom-ads__wrapper" id="ui-search-bottom-ads__wrapper"><div class="ui-search-bottom-ads__container"></div></div></div></main><input checked="" id="nav-footer-access-switch" type="checkbox"/><div class="nav-footer-access"><label for="nav-footer-access-switch">Mais informações <i class="nav-icon-chevron-up"></i></label><div class="nav-footer-access-content"><div class="nav-bounds"><div class="nav-footer-access-col"><h5 class="nav-footer-access-title">Sobre o</h5><ul><li><a href="https://www.mercadolivre.com.br/institucional">Mercado Livre</a></li><li><a href="https://investor.mercadolibre.com">Investor relations</a></li><li><a href="https://tendencias.mercadolivre.com.br">Tendências</a></li><li><a href="https://sustentabilidadmercadolibre.com/pt">Sustentabilidade</a></li></ul></div><div class="nav-footer-access-col"><h5 class="nav-footer-access-title">Outros sites</h5><ul><li><a href="https://developers.mercadolibre.com">Desenvolvedores</a></li><li><a href="https://www.mercadopago.com.br">Mercado Pago</a></li><li><a href="https://envios.mercadolivre.com.br">Mercado Envios</a></li><li><a href="https://www.mercadoshops.com.br">Mercado Shops</a></li><li><a href="https://ads.mercadolivre.com.br">Mercado Ads</a></li><li><a href="https://ideias.mercadolivre.com.br/">Mercado Livre Ideias</a></li></ul></div><div class="nav-footer-access-col"><h5 class="nav-footer-access-title">Contato</h5><ul><li><a href="https://www.mercadolivre.com.br/ajuda/Compras_638">Comprar</a></li><li><a href="https://www.mercadolivre.com.br/ajuda/Vender-un-producto_988">Vender</a></li><li><a href="https://www.mercadolivre.com.br/ajuda">Solução de problemas</a></li><li><a href="https://www.mercadolivre.com.br/ajuda/seguranca_663">Segurança</a></li></ul></div><div class="nav-footer-access-col"><h5 class="nav-footer-access-title">Redes sociais</h5><ul><li><a href="https://twitter.com/MercadoLivre">Twitter</a></li><li><a href="https://www.facebook.com/MercadoLivre">Facebook</a></li><li><a href="https://www.instagram.com/mercadolivre">Instagram</a></li><li><a href="https://www.youtube.com/user/mercadolivreoficial">YouTube</a></li></ul></div><div class="nav-footer-access-col"><h5 class="nav-footer-access-title">Minha conta</h5><ul><li><a href="https://www.mercadolivre.com/jms/mlb/lgz/login?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit">Entre</a></li><li><a href="https://www.mercadolivre.com.br/anuncie">Vender</a></li></ul></div><div class="nav-footer-access-col"><h5 class="nav-footer-access-title">Mercado Pontos</h5><ul><li><a href="https://www.mercadolivre.com.br/assinaturas/nivel-6#origin=footer_ml">Nivel 6</a></li><li><a href="https://www.mercadolivre.com.br/assinaturas/nivel-6#origin=footer_ml">Disney+</a></li><li><a href="https://www.mercadolivre.com.br/assinaturas/nivel-6#origin=footer_ml">Star+</a></li><li><a href="https://www.mercadolivre.com.br/assinaturas/hbo#origin=footer_ml">HBO MAX</a></li><li><a href="https://www.mercadolivre.com.br/assinaturas/paramount#origin=footer_ml">Paramount+</a></li><li><a href="https://www.mercadolivre.com.br/assinaturas/deezer#origin=footer_ml">Deezer</a></li></ul></div></div></div></div><footer class="nav-footer" role="contentinfo"><div class="nav-footer-user-info nav-bounds"><div class="nav-footer-info-wrapper"><div class="nav-footer-primaryinfo"><small class="nav-footer-copyright">Copyright © 1999-2022 Ebazar.com.br LTDA.</small><nav class="nav-footer-navigation"><a href="https://careers-meli.mercadolibre.com/pt?utm_campaign=site-mlb&utm_source=mercadolibre&utm_medium=mercadolibre">Trabalhe conosco</a><a href="https://www.mercadolivre.com.br/ajuda/Termos-e-condicoes-gerais-de-uso_1409">Termos e condições</a><a href="https://www.mercadolivre.com.br/privacidade">Como cuidamos da sua privacidade</a><a href="https://www.mercadolivre.com.br/acessibilidade">Acessibilidade</a><a href="https://www.mercadolivre.com.br/ajuda">Contato</a><a href="https://www.mercadolivre.com.br/ajuda/23303">Informações sobre seguros</a></nav></div><p class="nav-footer-secondaryinfo">CNPJ n.º 03.007.331/0001-41 / Av. das Nações Unidas, nº 3.003, Bonfim, Osasco/SP - CEP 06233-903 - empresa do grupo Mercado Livre.</p></div><div class="nav-footer-downloadapp-wrapper"><a class="nav-footer-downloadapp" href="https://www.mercadolivre.com.br/l/app" id="footer-applink" target="_blank"><i class="nav-icon nav-icon-downloadapp"></i><span>Baixe grátis o app do Mercado Livre!</span></a></div></div><a class="nav-footer-hp" href="https://hp.mercadolibre.com/?p=ML&s=MLB&d=desktop">Mercado Livre</a></footer><div><div class="cookie-consent-banner-opt-out" role="region"><div class="cookie-consent-banner-opt-out__message-container"><h2 class="cookie-consent-banner-opt-out__header" data-testid="text:header-text">Este site usa cookies</h2><p class="cookie-consent-banner-opt-out__message" data-testid="text:main-text">Ao navegar no nosso site você aceita o uso de cookies para <a class="cookie-consent-banner-opt-out__more-info" data-testid="link:more-info" href="https://www.mercadolivre.com.br/privacidade#tech-and-cookies" rel="noopener noreferrer nofollow" target="_blank">personalizar sua experiência</a> de acordo com a Declaração de Privacidade.</p></div><div class="cookie-consent-banner-opt-out__actions"><button class="cookie-consent-banner-opt-out__action cookie-consent-banner-opt-out__action--primary cookie-consent-banner-opt-out__action--key-accept" data-testid="action:understood-button" type="button">Entendi</button><button class="cookie-consent-banner-opt-out__action cookie-consent-banner-opt-out__action--key-customize" data-testid="action:customize-button" type="button">Configurar cookies</button></div></div><div aria-hidden="true" aria-label="Preferências de cookies" class="cookie-consent-banner-opt-out__modal" id="js-modal-cookie-consent-banner-opt-out"><div class="cookie-consent-banner-opt-out__modal-overlay" data-a11y-dialog-hide="js-modal-cookie-consent-banner-opt-out"></div><div class="cookie-consent-banner-opt-out__modal-wrapper"></div></div><div class="cookie-consent-snackbar cookie-consent-snackbar--hidden cookie-consent-snackbar--collapsed cookie-consent-snackbar--success" role="region"><div class="cookie-consent-snackbar__content"><div class="cookie-consent-snackbar__message">Pronto! Suas preferências foram salvas.</div><button class="cookie-consent-snackbar__close">Fechar</button></div></div><div class="cookie-consent-snackbar cookie-consent-snackbar--hidden cookie-consent-snackbar--collapsed cookie-consent-snackbar--error" role="region"><div class="cookie-consent-snackbar__content"><div class="cookie-consent-snackbar__message">Ocorreu um erro. Por favor, tente novamente.</div><button class="cookie-consent-snackbar__close">Fechar</button></div></div></div><script>
(function(w, r) {
w[r] = w[r] || function() {
(w[r].q = w[r].q || []).push(arguments)
}
})(window,'melidata');
(function(d,u) {
if (!document.getElementById("MelidataIframe")) {
var i = d.createElement('iframe');
(i.frameElement || i).style.cssText = "width: 0; height: 0; border: 0; position: absolute";
i.src = "about:srcdoc";
i.srcdoc="\<script\ src='" + u + "'>\</script\>";
i.id = "MelidataIframe";
var t = d.getElementsByTagName('script')[0];
t.parentNode.insertBefore(i, t);
var doc = i.contentWindow.document;
var script = doc.createElement('script');
script.type = 'text/javascript';
script.text ='window.inDapIF = true;';
doc.documentElement.appendChild(script);
} else {
// This page is charged async via AJAX and inserted into another one who has
// already download melidata js lib => Just clean the track
melidata("clean");
}
})(document,'https://http2.mlstatic.com/storage/melidata-js-sdk/js/3/0.3.27/melidata.min.js');
melidata("add", "id", "048d3d1b-7d76-43c9-bd22-ff3035a6235f");
melidata("add", "server_id", "048d3d1b-7d76-43c9-bd22-ff3035a6235f" );
melidata("add", "application", {"version":"1.130.1-hotfix-1","server_hostname":"","server_poolname":"","app_name":"","sdk_version":{"node_version":"4.1.2"},"business":"mercadolibre","site_id":"MLB","secured":{"encrypted":"eb91edb59193fe28e5410d592fe02c4e:014c2d5b9e164816e8076c1d102a4bfe2d2bb3469575ae6c3b5f2533f90d50ebf5ee6bc201014b074e495e5c80e477399216f839af83b457cbebd2c7063d78ffd2110e5541ea01b1b2a30d389ac723a28322c037168792fb0825b23f611e641296b1310d97b0dfd14cfc014410a6e19d9c70ff557a1d8fb98c8b9b57a43699c588b9db5b97498270b3","signature":"eyJhbGciOiJIUzI1NiJ9.eyJ1aWQiOiI1M2ZkMWIxNC03ODdjLTQ4Y2MtYjcxNi1hYjVlOWExYWE3YjUiLCJzaXRlX2lkIjoiTUxCIiwicGxhdGZvcm0iOiIvd2ViL2Rlc2t0b3AifQ.276NMg495qi_QInduW1MMwmkolanrS67tx7DCmfXhs8"}});
melidata("add", "user", {"uid":"53fd1b14-787c-48cc-b716-ab5e9a1aa7b5","user_tags":[]});
melidata("add", "device", {"platform":"/web/desktop","user_agent":"python-requests/2.22.0"});
melidata("add", "platform", {"http":{"cookies":{},"headers":{"host":"lista.mercadolivre.com.br","x-d2id":"53fd1b14-787c-48cc-b716-ab5e9a1aa7b5","x-device-js":"true","x-platform":"ml"},"http_url":"http://lista.mercadolivre.com.br/computador"}});
melidata("add", "experiments", {"mclics/grid-layout":"12899","search/new-search-api":"8650","mclics/show-pads-search-list":"5146","mclics/pseudo-search-buybox-query":"9461","mclics/show-pads-global":"5176","mclics/pseudo-search-pads-buybox":"7708","frontend/assetsCdnDomainMLB":"DEFAULT","frontend/assetsCdnDomainMLU":"DEFAULT"});
melidata("add", "experiments_timestamp", "null");
melidata("add", "event_data", {"query":"computador","limit":50,"offset":0,"total":547937,"category_id":"MLB1648","domain":"MLB-COMPUTER_EQUIPMENT_AND_SPARE_PARTS","category_path":["MLB1648"],"sort_id":"relevance","filters":{"category":"MLB1648"},"available_filters":{},"displayed_filters":[{"id":"shipping_highlighted_fulfillment","name":"Tipo de envio","type":"highlighted","position":1,"values_quantity":1},{"id":"shipping_cost_highlighted","name":"Custo do frete","type":"highlighted","position":2,"values_quantity":1},{"id":"SHIPPING_ORIGIN_HIGHLIGHTED","name":"Origem do frete","type":"highlighted","position":3,"values_quantity":1},{"id":"category","name":"Categorias","type":"text","position":4,"values_quantity":14},{"id":"PROCESSOR_TYPE","name":"Processador","type":"STRING","position":5,"values_quantity":25},{"id":"shipping","name":"Tipo de envio","type":"text","position":6,"values_quantity":1},{"id":"RAM_SIZE","name":"RAM","type":"range","position":7,"values_quantity":5},{"id":"ITEM_CONDITION","name":"Condição","type":"STRING","position":8,"values_quantity":3},{"id":"WITH_MONITOR","name":"Monitor","type":"boolean","position":9,"values_quantity":2},{"id":"shipping_cost","name":"Custo do frete","type":"text","position":10,"values_quantity":1},{"id":"price","name":"Preço","type":"range","position":11,"values_quantity":3},{"id":"OPERATIVE_SYSTEM","name":"Sistema operativo","type":"STRING","position":12,"values_quantity":7},{"id":"state","name":"Localização","type":"text","position":13,"values_quantity":17},{"id":"HDD_SIZE","name":"Disco rígido","type":"range","position":14,"values_quantity":4},{"id":"DISPLAY_SIZE","name":"Tamanho da tela","type":"range","position":15,"values_quantity":4},{"id":"BRAND","name":"Marca","type":"STRING","position":16,"values_quantity":192},{"id":"SHIPPING_ORIGIN","name":"Origem do frete","type":"STRING","position":17,"values_quantity":2},{"id":"official_store","name":"Lojas oficiais","type":"text","position":18,"values_quantity":1},{"id":"installments","name":"Pagamento","type":"text","position":19,"values_quantity":1},{"id":"discount","name":"Descontos","type":"numeric","position":20,"values_quantity":7},{"id":"promotion_type","name":"Tipo de promoção","type":"text","position":21,"values_quantity":1},{"id":"IS_GAMER","name":"Outras características","type":"boolean","position":22,"values_quantity":0},{"id":"power_seller","name":"Filtro MercadoLíderes","type":"refine_by","position":23,"values_quantity":1}],"autoselected_filters":["category"],"view_mode":"GRID","results":["MLB1983288877","MLB1930876153","MLB1937079157","MLB1607748387","MLB1983278713","MLB2131342947","MLB2025368730","MLB1937076326","MLB2081933352","MLB2114151338","MLB1983288732","MLB2603247328","MLB1983288643","MLB2614218974","MLB1983278831","MLB2696339147","MLB1663773541","MLB1837442511","MLB1983279452","MLB2669020387","MLB2610554493","MLB2199976353","MLB1986322829","MLB1680063928","MLB1899027328","MLB1506134141","MLB1983288676","MLB1983279518","MLB2022879801","MLB2096063553","MLB2103940157","MLB2724080796","MLB1983296789","MLB2618767197","MLB2145104504","MLB2626699161","MLB1983286920","MLB1983288815","MLB1786478708","MLB2618802287","MLB2044748327","MLB1885917902","MLB2222645583","MLB1615760527","MLB2025342637","MLB2032160315","MLB2625920831","MLB2685001475"],"billboards":[],"pads_info":{"vertical":"CORE","blocks_strategy":"P11P12","ids":["MLB2153875378","MLB1669162236","MLB2610297318","MLB2210259535","MLB2161556728","MLB1983287147"],"item_ids":["MLB2153875378","MLB1669162236","MLB2610297318","MLB2210259535","MLB2161556728","MLB1983287147"],"discarded_ids":["MLB2648112718","MLB1539097035","MLB2610318517","MLB1666513223","MLB2610291368","MLB1736173494","MLB1983492060","MLB1911268639","MLB2130219063","MLB2104599245","MLB1960923234","MLB2657810063","MLB2611561822","MLB1946622365","MLB2641021752","MLB2220510769","MLB1559647663","MLB1734778447","MLB1882031499","MLB2094487168","MLB1763722828","MLB2700169586","MLB2022879801","MLB2087413462","MLB1867159797","MLB2181336339","MLB2649428704","MLB2649506643"],"printed_ads_prices":[2987.1,3865.91,1376.83,3122.1,229.9,2366.1],"discarded_ads_prices":[1709.1,1376.99,1274.34,64.9,1446.8,19.99,1890.99,1529.1,3644.1,2799.99,168.9,2872,29.9,1466.99,1459,1591.58,1394.99,27.94,57.9,54.89,22.69,2589,3105.52,24.49,29.79,2969.1,100.83,128.54],"results_avg_ads_asp":1405.83,"results_avg_printed_ads_asp":2324.65,"results_avg_discarded_ads_asp":1208.94,"results_avg_items_asp":1363.93,"printed_positions":[10,11,21,22,34,35],"original_positions":[10,11,21,22,34,35],"empty_positions":[],"suggested_positions":[712,451,915,379,529,543,536,439,442,505,368,714,757,557,115,136,626,463,834,251,868,292,243,801,477,767,933,222,28,237,847,98,100,71],"original_suggested_positions":[712,451,915,379,529,543,536,439,442,505,368,714,757,557,115,136,626,463,834,251,868,292,243,801,477,767,933,222,28,237,847,98,100,71],"discarded_original_suggested_positions":[536,439,442,505,368,714,757,557,115,136,626,463,834,251,868,292,243,801,477,767,933,222,28,237,847,98,100,71],"printed_original_suggested_positions":[712,451,915,379,529,543],"blocks_sizes":[],"printed_positions_size":6,"domain":"VQCATCORE_LST","strategy":"DPCTRAVG_P11P12_BB_ITEM_BIDBSMULT","is_api_migrated":false},"catalog_product_id":"","backend_data":{"request_flow":{"origin":"backend"}},"promise_items":{"nextday":[],"sameday":[]},"official_stores_carousel_shown":[],"user_zone":"","pdp_rows":[{"item_id":"MLB1930876153","product_id":"MLB16263913"},{"item_id":"MLB2131342947","product_id":"MLB18624590"},{"item_id":"MLB2081933352","product_id":"MLB18366754"},{"item_id":"MLB2114151338","product_id":"MLB18621000"},{"item_id":"MLB2603247328","product_id":"MLB18632909"},{"item_id":"MLB2614218974","product_id":"MLB19035706"},{"item_id":"MLB2696339147","product_id":"MLB19158523"},{"item_id":"MLB2610554493","product_id":"MLB6189662"},{"item_id":"MLB2199976353","product_id":"MLB18941410"},{"item_id":"MLB2103940157","product_id":"MLB17739841"},{"item_id":"MLB2724080796","product_id":"MLB17966310"},{"item_id":"MLB2145104504","product_id":"MLB18459542"},{"item_id":"MLB2044748327","product_id":"MLB17978326"},{"item_id":"MLB2685001475","product_id":"MLB15297208"}],"carousel_filters":[],"show_supermarket_carousel":false,"tracking_id":"fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pdp_grouped_search":false,"highlights_info":{"best_seller_info":{"candidates":22,"selected":["MLB2614218974"]},"meli_choice_info":{"candidates":4,"selected":[{"item_id":"MLB1930876153","product_id":"MLB16263913","origin":"killer_matched"},{"item_id":"MLB2131342947","product_id":"MLB18624590","origin":"killer_matched"}],"overrides":[]}},"tag_tracking_info":{"crypto_cashback":[],"best_seller":[{"type":"best_seller","item_id":"MLB2614218974","product_id":"MLB19035706","position":14}],"highlights":[],"lightning_deal":[],"shipping_guaranteed":[],"deal_of_the_day":[{"type":"deal_of_the_day","item_id":"MLB1983288877","position":1},{"type":"deal_of_the_day","item_id":"MLB1983278713","position":5},{"type":"deal_of_the_day","item_id":"MLB2025368730","position":7},{"type":"deal_of_the_day","item_id":"MLB2114151338","product_id":"MLB18621000","position":10},{"type":"deal_of_the_day","item_id":"MLB1983288732","position":11},{"type":"deal_of_the_day","item_id":"MLB1983288643","position":13},{"type":"deal_of_the_day","item_id":"MLB1983288676","position":27},{"type":"deal_of_the_day","item_id":"MLB1983296789","position":33},{"type":"deal_of_the_day","item_id":"MLB1983286920","position":37},{"type":"deal_of_the_day","item_id":"MLB1983288815","position":38},{"type":"deal_of_the_day","item_id":"MLB2025342637","position":45}],"discount_volume":[],"meli_choice":[{"type":"meli_choice","item_id":"MLB1930876153","product_id":"MLB16263913","position":2},{"type":"meli_choice","item_id":"MLB2131342947","product_id":"MLB18624590","position":6}],"next_day":[],"same_day":[],"supermarket_partnership":[]},"pdp_info":[{"id":"MLB16263913","score":1,"status":"shown"},{"id":"MLB18624590","score":1,"status":"shown"},{"id":"MLB18366754","score":1,"status":"shown"},{"id":"MLB18621000","score":1,"status":"shown"},{"id":"MLB18632909","score":1,"status":"shown"},{"id":"MLB19035706","score":1,"status":"shown"},{"id":"MLB19158523","score":1,"status":"shown"},{"id":"MLB6189662","score":1,"status":"shown"},{"id":"MLB18941410","score":1,"status":"shown"},{"id":"MLB17739841","score":1,"status":"shown"},{"id":"MLB17966310","score":1,"status":"shown"},{"id":"MLB18459542","score":1,"status":"shown"},{"id":"MLB17978326","score":1,"status":"shown"},{"id":"MLB15297208","score":1,"status":"shown"}],"location_info":{},"interventions":[],"containers_flow":"N/A","banner":{"exhibitor_id":"TSB_MELHOR_DO_ELETRO","permalink":"https://lista.mercadolivre.com.br/_Deal_entrefechas?utm_source=TSB+ACHADOS+DA+SEMANA&utm_medium=TSB+ACHADOS+DA+SEMANA&utm_id=TSB+ACHADOS+DA+SEMANA#DEAL_ID=MLB10205&S=MKT&V=1&T=TSB&L=MKT_T1_ENTRE_FECHAS_ACHADOS"},"related_searches_info":{"quantity":5,"related_queries":["i3 9100f","king koil triathlon queen","celular samsung a11","computador wi fi","computadores novos"]},"canonical":{"url":"https://lista.mercadolivre.com.br/computador","no_follow_tag":false},"landing":"base","layout_forced":false,"shown_as_product":[],"geo_search":false,"is_googlebot":false,"seo":{"allowlist":{"seo_is_allowlisted":true,"seo_apply_no_index":true,"search_no_index_applied":false,"results_by_strategy":{"query_and_category_strategy":true,"sanitized_query_and_category_strategy":true,"exact_query_strategy":true}},"seo_experiments":{"status":"success","experiment_list":[{"id":"ironman","is_enabled":false,"is_active":false,"should_apply":false,"group":"Control","executed_successfully":true},{"id":"black widow","is_enabled":false,"is_active":false,"should_apply":false,"group":"Control","executed_successfully":true},{"id":"spiderman","is_enabled":false,"is_active":false,"should_apply":false,"group":"Control","executed_successfully":true},{"id":"green arrow","is_enabled":false,"is_active":false,"should_apply":false,"group":"Control","executed_successfully":true}]}},"pdp_highlight_enabled":false,"user_profile_type":"BUYER","top_keywords":[{"key":"intel core i5 8 geracao","type":"SEARCH"},{"key":"montar pc pichau","type":"SEARCH"},{"key":"hackintosh","type":"SEARCH"},{"key":"impressora portatil a4","type":"SEARCH"},{"key":"notebook com impressora","type":"SEARCH"},{"key":"tablet windows","type":"SEARCH"},{"key":"computador barato","type":"SEARCH"}]});
melidata("send", "view", {
path: "/search",
data: {}
}, "melidata");</script>
<script>
(function(win, doc){
function loadScripts (s) {
if (!s || !s.length) return;
s = s.slice(0);
var h = doc.head || doc.getElementsByTagName('head')[0];
var cbStack = {}; var cbChild = {};
for (var i = 0; i < s.length; i++) {
var c = s[i];
var t = doc.createElement('script');
if (typeof c.s === 'function') {
t.textContent = '(' + c.s + ').apply(window);';
} else {
t.async = false;
t.defer = true;
t.crossOrigin = 'anonymous';
if (c.id) t.id = c.id;
if (c.s) t.src = c.s;
var x = t.src;
cbStack[x] = [];
while(s[i+1] && typeof s[i+1].s === 'function') {
cbStack[x].push(s[i+1].s);
i++;
}
if (typeof c.c === 'function') {
cbChild[x] = c.c
} else if (c.c) {
t.textContent = c.c;
}
t.onerror = function(err) {
cbStack[err.target.src] && cbStack[err.target.src].forEach(function(cb){ (cb).apply(window) });
var perfillNamespace = '_pfl';
(window[perfillNamespace] = window[perfillNamespace] || []).push(['script', err.target.src])
if (typeof meli_ga !== 'undefined') {
meli_ga('send', {
hitType: 'event',
eventCategory: 'FRONTEND-ERROR',
eventAction: 'SCRIPT-LOAD-ERROR',
eventLabel: err.target.src,
nonInteraction: true,
});
}
}
t.onload = function(e) {
cbChild[e.target.src] && (cbChild[e.target.src]).apply(window);
cbStack[e.target.src] && cbStack[e.target.src].forEach(function(cb){ (cb).apply(window) });
}
}
h.appendChild(t);
}
}
loadScripts([{s:function(){window.__NAVIGATION_PRELOADED_STATE__ = {"application":"search-nordic","siteId":"MLB","domain":"mercadolivre.com.br"};}},{s:function(){"use strict";function track(a){if(a.analytics&&"undefined"!=typeof meli_ga&&meli_ga("send",{hitType:a.analytics.hitType,eventCategory:a.analytics.category,eventAction:a.analytics.action,eventLabel:a.analytics.label}),a.melidata&&"undefined"!=typeof melidata){var b=a.melidata.data;melidata("cleanAndSend",a.melidata.type,{path:a.melidata.path,data:b})}}function navigationEventTracking(a,b,c){var d=document.querySelector(a);d&&d.addEventListener(b,function(){track(c)})}window.__navigation_tracking__=navigationEventTracking,window.__navigation_track__=track;}},{s:function(){"use strict";(function(){window.__navigation_tracking__("#nav-skip-to-main-content","click",{analytics:{category:"SKIP_TO_MAIN_CONTENT",action:"NAVIGATION",label:window.__NAVIGATION_PRELOADED_STATE__.application,hitType:"event"},melidata:{path:"/navigation/skip-to-main-content",type:"event",data:{app:window.__NAVIGATION_PRELOADED_STATE__.application}}})})();}},{s:function(){"use strict";(function(){window.__navigation_tracking__("#nav-header-menu-download-mobile","click",{analytics:{category:"MOBILE-APP-".concat(window.__NAVIGATION_PRELOADED_STATE__.os),action:"DOWNLOAD-MENU",label:window.__NAVIGATION_PRELOADED_STATE__.application,hitType:"event"}})})();}},{s:function(){"use strict";(function(){window.__navigation_tracking__("[data-js=cp]","click",{analytics:{category:"CURRENT_LOCATION",action:"NAVIGATION",label:window.__NAVIGATION_PRELOADED_STATE__.application,hitType:"event"},melidata:{path:"/current_location/navigation/pick",data:{app:window.__NAVIGATION_PRELOADED_STATE__.application},type:"event"}})})();}},{s:function(){(function() {
var defaults = {
imageLoadClassName: 'lazy-loadable', // 'lazy-loadable' || 'onload-loadable'
options: {
rootMargin: '360px',
loadMode: 'lazy' // 'lazy' || 'onload'
}
};
var dataSrcKey = 'data-src';
var dataSrcFallbackKey = 'data-src-fallback';
var dataSrcSetKey = 'data-srcset';
// IntersectionObserver has partial support in chrome <= 57 (https://caniuse.com/#feat=intersectionobserver)
var supportIntersectionObserver = 'IntersectionObserver' in window && 'IntersectionObserverEntry' in window && 'isIntersecting' in window.IntersectionObserverEntry.prototype;
function mergeOptions(target, source) {
var list = [target, source];
var cloned = {};
for (var i = 0; i <= list.length; i++) {
if (typeof list[i] === 'object' && list[i]) {
for (var prop in list[i]) {
cloned[prop] = list[i][prop];
}
}
}
return cloned;
}
function imageLazyLoading(imageLoadClassName, options) {
if (!imageLoadClassName && options && options.loadMode === 'onload') {
imageLoadClassName = 'onload-loadable';
}
imageLoadClassName = imageLoadClassName || defaults.imageLoadClassName;
options = mergeOptions(defaults.options, options);
var lazyImages = [].slice.call(document.querySelectorAll('.' + imageLoadClassName));
function loadImages(img) {
function setSource(attr, srcKey, srcFallbackKey) {
if (img.hasAttribute(srcKey)) {
var dataSrc = img.getAttribute(srcKey);
if (srcFallbackKey && img.hasAttribute(srcFallbackKey)) {
var dataSrcFallback = img.getAttribute(srcFallbackKey);
img.onload = function() {
img.removeAttribute(srcFallbackKey);
}
img.onerror = function() {
this.src = dataSrcFallback;
this.srcset = dataSrcFallback;
img.removeAttribute(srcFallbackKey);
img.onerror = null;
};
}
img.setAttribute(attr, dataSrc);
img.removeAttribute(srcKey);
}
}
setSource('src', dataSrcKey, dataSrcFallbackKey);
setSource('srcset', dataSrcSetKey);
img.classList.remove(imageLoadClassName);
if (img.classList.length < 1) {
img.removeAttribute('class');
}
}
function loadAllImages() {
lazyImages.forEach(function(image) {
loadImages(image);
});
}
if (supportIntersectionObserver && options.loadMode === 'lazy') {
var lazyImageObserver = new IntersectionObserver(function(entries, observer) {
entries.forEach(function(entry) {
if (entry.isIntersecting) {
var lazyImage = entry.target;
loadImages(lazyImage);
lazyImageObserver.unobserve(lazyImage);
}
});
}, options);
lazyImages.forEach(function(lazyImage) {
lazyImageObserver.observe(lazyImage);
});
window.lazyImageObserver = lazyImageObserver;
} else if ((!supportIntersectionObserver && options.loadMode === 'lazy') || options.loadMode === 'onload') {
if (document.readyState === 'complete') {
loadAllImages();
} else {
window.addEventListener('load', function() {
loadAllImages();
});
}
}
}
function initLazyLoading() {
imageLazyLoading();
imageLazyLoading('onload-loadable', { loadMode: 'onload' });
}
window.imageLazyLoading = imageLazyLoading;
initLazyLoading();
}());
}}]);
var scripts = [{s:function(){(function(){/*! For license information please see cookie-consent-banner.js.LICENSE */
var ccb=function(e){var t={};function n(o){if(t[o])return t[o].exports;var i=t[o]={i:o,l:!1,exports:{}};return e[o].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(o,i,function(t){return e[t]}.bind(null,i));return o},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){function o(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,o)}return n}function i(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?o(Object(n),!0).forEach((function(t){r(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):o(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var a=n(2),s=n(3).bannerOptOutModalEvents;e.exports=function(e,t,n,o,r,c){var d=arguments.length>6&&void 0!==arguments[6]?arguments[6]:"cookie-consent-banner-opt-out",l=arguments.length>7?arguments[7]:void 0,u=arguments.length>8?arguments[8]:void 0,f=d,h="cookie-consent-snackbar--success",p="cookie-consent-snackbar--error",v="cookies-banner-top-content",m=function(t,n){var o=(n||e).getElementsByClassName(t);if(0===o.length)throw new Error("No element with class ".concat(t," is present"));if(1!==o.length)throw new Error("More than one element with class ".concat(t," is present"));return o[0]},y=function(e){return e.parentNode.removeChild(e)},b=function(){try{return m(v,m(f))}catch(e){return null}},w=function(){return window.onCookieConsentBannerClosed&&window.onCookieConsentBannerClosed()},g=function(e){e.classList.add("cookie-consent-snackbar--collapsed"),setTimeout((function(){y(e),w()}),400)},_=function(){var e=m(h),t=m(p);y(e),y(t)},E=function(e){var t=e.toShow,n=e.toHide,o=e.topContentContainer,i=e.hideTimeoutInMs,r=m(n);y(r);var a=m(t);o&&a.appendChild(o),a.classList.remove("cookie-consent-snackbar--hidden"),setTimeout((function(){return a.classList.remove("cookie-consent-snackbar--collapsed")}));var s=null;i>0&&(s=setTimeout((function(){g(a)}),i)),m("cookie-consent-snackbar__close",a).addEventListener("click",(function(){clearTimeout(s),g(a)}))},S=function(e){var t=(u||{}).successSnackbar||{},n=t.canShow,o=t.hideTimeoutInMs,i=void 0===o?0:o;if(!1===n)return _(),void w();E({toShow:h,toHide:p,topContentContainer:e,hideTimeoutInMs:i})},k=function(e){var t=(u||{}).errorSnackbar||{},n=t.canShow,o=t.hideTimeoutInMs,i=void 0===o?0:o;if(!1===n)return _(),void w();E({toShow:p,toHide:h,topContentContainer:e,hideTimeoutInMs:i})},C=function(n){var o=n.cookieData,r=n.responsePreferences,a={categories:i(i({},t),r)};o.userId&&(a.userId=o.userId);var s=o.cookieName,c=o.maxAge,d=o.path,l=o.domain,u=o.secure,f=o.sameSite,h=["".concat(s,"=").concat(encodeURIComponent(JSON.stringify(a))),"domain=".concat(l),"path=".concat(d)].concat(c?"max-age=".concat(c):[]).concat(f?"samesite=".concat(f):[]).concat(u?"secure":[]).join("; ");e.cookie=h},O=function(e){var t=e.responsePreferences,n=e.topContainer;try{o&&o.length>0&&o.forEach((function(e){return e&&C({cookieData:e,responsePreferences:t})}))}catch(e){k(n)}S(n)},L=function(e){if(!n)return O({responsePreferences:null,topContainer:e}),void a(t);try{var o=new window.XMLHttpRequest;o.open("PUT",n.url,!0),o.setRequestHeader("Content-type","application/json;charset=UTF-8"),o.withCredentials=!0,o.onreadystatechange=function(){if(4===o.readyState)if(200===o.status){var n;try{n=JSON.parse(o.responseText).cookies_preferences}catch(e){n=null}O({responsePreferences:n,topContainer:e}),a(i(i({},t),n))}else k(e)},o.send(JSON.stringify(i(i({},n.payload),{},{cookies_preferences:t})))}catch(t){k(e)}},x=m("".concat(f,"__action--key-accept")),P=m("".concat(f,"__action--key-customize")),M=function(e,t){"undefined"!=typeof melidata&&melidata("cleanAndSend",e,t)};x.addEventListener("click",(function(){var e=b();try{L(e),M("event",{path:"/navigation/cookies_consent/accept_all",event_data:{consent_type:r}}),y(m(f))}catch(t){k(e)}})),P.addEventListener("click",(function(){M("event",{path:"/navigation/cookies_consent/personalize",event_data:{consent_type:r}})})),c.closeElements.forEach((function(e){m(e.className).addEventListener("click",(function(t){(e.handleChildren||t.currentTarget===t.target)&&(M("event",{path:"/navigation/cookies_consent/close",event_data:{consent_type:r}}),y(m(f)),y(m(h)),y(m(p)))}))})),s({containerClassName:f,modalParams:l,namespace:d,getOne:m,getTopContainer:b,removeElement:y,sendMelidataTrack:M,showErrorMessage:k,showSuccessMessage:S}),M("event",{path:"/navigation/cookies_consent/show",event_data:{consent_type:r}})}},function(e,t){e.exports=function(e){try{var t=new(function(){if("function"==typeof window.CustomEvent)return window.CustomEvent;return function(e,t){var n=document.createEvent("CustomEvent");return n.initCustomEvent(e,!1,!1,t.detail),n}}())("cookiesConsentChange",{detail:e});document.dispatchEvent(t)}catch(e){}}},function(e,t,n){var o=n(4),i=o.embedModeEvents,r=o.embedModeStatus,a=n(5),s=a.disableBodyScroll,c=a.enableBodyScroll,d=n(6);e.exports={bannerOptOutModalEvents:function(e){var t=e.containerClassName,n=e.modalParams,o=e.namespace,a=e.getOne,l=e.getTopContainer,u=e.removeElement,f=e.sendMelidataTrack,h=e.showErrorMessage,p=e.showSuccessMessage;if("cookie-consent-banner-opt-out"===o&&n){var v=!0,m=document.getElementById(n.id),y=new d(m),b=function(){a("".concat(o,"__modal-iframe")).contentWindow.postMessage({eventName:i.SAVE_COOKIES_PREFERENCES},"*")},w=function(e){var t=e.className,n=e.event,o=e.eventCallback,i=e.modalWrapper,r=new MutationObserver((function(){var e=document.querySelector(t);i.contains(e)&&(e.addEventListener(n,o),r.disconnect())}));r.observe(document,{attributes:!1,childList:!0,characterData:!1,subtree:!0})};y.on("show",(function(){s(document.documentElement),window.addEventListener("message",(function(e){var t=e&&e.data||{},n=t.eventName,o=t.status,a=t.payload;if(n===i.SAVE_COOKIES_PREFERENCES){var s=l();o===r.SUCCESS?(a&&f("event",a),p(s)):h(s),v=!1,y.hide()}}))})),y.on("hide",(function(){y.destroy(),v&&f("event",{path:"/privacy_preferences/cookies/close"})})),y.on("destroy",(function(){c(document.documentElement),u(m)})),a(n.openButton).addEventListener("click",(function(){var e=n.i18n||{},i=e.close?'aria-label="'.concat(e.close,'"'):"",r='\n <button\n type="button"\n data-a11y-dialog-hide="'.concat(n.id,'"\n class="').concat(o,'__modal-closeButton"\n ').concat(i,'\n >\n <svg width="20" height="20" viewBox="0 0 20 20" fill="white">\n <path\n fill="white"\n d="M4.35156 5.19496L9.15406 9.99746L4.35156 14.8L5.20009 15.6485L10.0026 10.846L14.7963 15.6397L15.6449 \n 14.7912L10.8511 9.99746L15.6449 5.20371L14.7963 4.35518L10.0026 9.14894L5.20009 4.34644L4.35156 5.19496Z"\n ></path>\n </svg>\n </button>\n <div class="').concat(o,'__modal-content">\n <iframe\n title="Cookies Preferences"\n class="').concat(o,'__modal-iframe"\n src="').concat(n.iframeUrl,'?mode=embed"\n ></iframe>\n </div>\n <div class="').concat(o,'__modal-action">\n <button\n type="button"\n class="').concat(o,"__action\n ").concat(o,"__action--primary\n ").concat(o,'__action--key-save"\n >\n ').concat(n.saveText,"\n </button>\n </div>\n "),s=a(n.wrapperClassName);s.innerHTML=r,w({modalWrapper:s,className:".".concat(o,"__action--key-save"),event:"click",eventCallback:b}),w({modalWrapper:s,className:".".concat(o,"__modal-closeButton"),event:"click",eventCallback:function(){return y.hide()}}),u(a(t)),y.show()}))}}}},function(e,t){e.exports={embedModeEvents:{SAVE_COOKIES_PREFERENCES:"saveCookiesPreference"},embedModeStatus:{SUCCESS:"SUCCESS",FAILURE:"FAILURE"},getModalConfig:function(e){return{id:"js-modal-".concat(e),className:"".concat(e,"__modal"),overlayClassName:"".concat(e,"__modal-overlay"),wrapperClassName:"".concat(e,"__modal-wrapper")}}}},function(e,t,n){var o,i,r;i=[t],void 0===(r="function"==typeof(o=function(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=!1;if("undefined"!=typeof window){var n={get passive(){t=!0}};window.addEventListener("testPassive",null,n),window.removeEventListener("testPassive",null,n)}function o(e){return c.some((function(t){return!(!t.options.allowTouchMove||!t.options.allowTouchMove(e))}))}function i(e){var t=e||window.event;return!!o(t.target)||1<t.touches.length||(t.preventDefault&&t.preventDefault(),!1)}function r(){void 0!==h&&(document.body.style.paddingRight=h,h=void 0),void 0!==u&&(document.body.style.overflow=u,u=void 0)}function a(){if(void 0!==f){var e=-parseInt(document.body.style.top,10),t=-parseInt(document.body.style.left,10);document.body.style.position=f.position,document.body.style.top=f.top,document.body.style.left=f.left,window.scrollTo(t,e),f=void 0}}var s="undefined"!=typeof window&&window.navigator&&window.navigator.platform&&(/iP(ad|hone|od)/.test(window.navigator.platform)||"MacIntel"===window.navigator.platform&&1<window.navigator.maxTouchPoints),c=[],d=!1,l=-1,u=void 0,f=void 0,h=void 0;e.disableBodyScroll=function(e,n){if(e){if(!c.some((function(t){return t.targetElement===e}))){var r={targetElement:e,options:n||{}};c=[].concat(function(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}(c),[r]),s?window.requestAnimationFrame((function(){if(void 0===f){f={position:document.body.style.position,top:document.body.style.top,left:document.body.style.left};var e=window,t=e.scrollY,n=e.scrollX,o=e.innerHeight;document.body.style.position="fixed",document.body.style.top=-t+"px",document.body.style.left=-n+"px",setTimeout((function(){return window.requestAnimationFrame((function(){var e=o-window.innerHeight;e&&o<=t&&(document.body.style.top=-(t+e))}))}),300)}})):function(e){if(void 0===h){var t=!!e&&!0===e.reserveScrollBarGap,n=window.innerWidth-document.documentElement.clientWidth;if(t&&0<n){var o=parseInt(window.getComputedStyle(document.body).getPropertyValue("padding-right"),10);h=document.body.style.paddingRight,document.body.style.paddingRight=o+n+"px"}}void 0===u&&(u=document.body.style.overflow,document.body.style.overflow="hidden")}(n),s&&(e.ontouchstart=function(e){1===e.targetTouches.length&&(l=e.targetTouches[0].clientY)},e.ontouchmove=function(t){var n,r,a,s;1===t.targetTouches.length&&(r=e,s=(n=t).targetTouches[0].clientY-l,o(n.target)||(r&&0===r.scrollTop&&0<s||(a=r)&&a.scrollHeight-a.scrollTop<=a.clientHeight&&s<0?i(n):n.stopPropagation()))},d||(document.addEventListener("touchmove",i,t?{passive:!1}:void 0),d=!0))}}else console.error("disableBodyScroll unsuccessful - targetElement must be provided when calling disableBodyScroll on IOS devices.")},e.clearAllBodyScrollLocks=function(){s&&(c.forEach((function(e){e.targetElement.ontouchstart=null,e.targetElement.ontouchmove=null})),d&&(document.removeEventListener("touchmove",i,t?{passive:!1}:void 0),d=!1),l=-1),(s?a:r)(),c=[]},e.enableBodyScroll=function(e){e?(c=c.filter((function(t){return t.targetElement!==e})),s&&(e.ontouchstart=null,e.ontouchmove=null,d&&0===c.length&&(document.removeEventListener("touchmove",i,t?{passive:!1}:void 0),d=!1)),(s?a:r)()):console.error("enableBodyScroll unsuccessful - targetElement must be provided when calling enableBodyScroll on IOS devices.")}})?o.apply(t,i):o)||(e.exports=r)},function(e,t,n){var o,i;function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}!function(a,s){"object"===r(t)&&void 0!==e?e.exports=s():void 0===(i="function"==typeof(o=s)?o.call(t,n,t,e):o)||(e.exports=i)}(0,(function(){var e=['a[href]:not([tabindex^="-"])','area[href]:not([tabindex^="-"])','input:not([type="hidden"]):not([type="radio"]):not([disabled]):not([tabindex^="-"])','input[type="radio"]:not([disabled]):not([tabindex^="-"])','select:not([disabled]):not([tabindex^="-"])','textarea:not([disabled]):not([tabindex^="-"])','button:not([disabled]):not([tabindex^="-"])','iframe:not([tabindex^="-"])','audio[controls]:not([tabindex^="-"])','video[controls]:not([tabindex^="-"])','[contenteditable]:not([tabindex^="-"])','[tabindex]:not([tabindex^="-"])'];function t(e){this._show=this.show.bind(this),this._hide=this.hide.bind(this),this._maintainFocus=this._maintainFocus.bind(this),this._bindKeypress=this._bindKeypress.bind(this),this.$el=e,this.shown=!1,this._id=this.$el.getAttribute("data-a11y-dialog")||this.$el.id,this._previouslyFocused=null,this._listeners={},this.create()}function n(e,t){return n=(t||document).querySelectorAll(e),Array.prototype.slice.call(n);var n}function o(e){(e.querySelector("[autofocus]")||e).focus()}function i(){n("[data-a11y-dialog]").forEach((function(e){new t(e)}))}return t.prototype.create=function(){var e=this;return this.$el.setAttribute("aria-hidden",!0),this.$el.setAttribute("aria-modal",!0),this.$el.setAttribute("tabindex",-1),this.$el.hasAttribute("role")||this.$el.setAttribute("role","dialog"),this._openers=n('[data-a11y-dialog-show="'.concat(this._id,'"]')),this._openers.forEach((function(t){t.addEventListener("click",e._show)})),this._closers=n("[data-a11y-dialog-hide]",this.$el).concat(n('[data-a11y-dialog-hide="'.concat(this._id,'"]'))),this._closers.forEach((function(t){t.addEventListener("click",e._hide)})),this._fire("create"),this},t.prototype.show=function(e){return this.shown||(this._previouslyFocused=document.activeElement,this.$el.removeAttribute("aria-hidden"),this.shown=!0,o(this.$el),document.body.addEventListener("focus",this._maintainFocus,!0),document.addEventListener("keydown",this._bindKeypress),this._fire("show",e)),this},t.prototype.hide=function(e){return this.shown?(this.shown=!1,this.$el.setAttribute("aria-hidden","true"),this._previouslyFocused&&this._previouslyFocused.focus&&this._previouslyFocused.focus(),document.body.removeEventListener("focus",this._maintainFocus,!0),document.removeEventListener("keydown",this._bindKeypress),this._fire("hide",e),this):this},t.prototype.destroy=function(){var e=this;return this.hide(),this._openers.forEach((function(t){t.removeEventListener("click",e._show)})),this._closers.forEach((function(t){t.removeEventListener("click",e._hide)})),this._fire("destroy"),this._listeners={},this},t.prototype.on=function(e,t){return void 0===this._listeners[e]&&(this._listeners[e]=[]),this._listeners[e].push(t),this},t.prototype.off=function(e,t){var n=(this._listeners[e]||[]).indexOf(t);return n>-1&&this._listeners[e].splice(n,1),this},t.prototype._fire=function(e,t){var n=this,o=this._listeners[e]||[],i=new CustomEvent(e,{detail:t});this.$el.dispatchEvent(i),o.forEach((function(e){e(n.$el,t)}))},t.prototype._bindKeypress=function(t){this.$el.contains(document.activeElement)&&(this.shown&&27===t.which&&"alertdialog"!==this.$el.getAttribute("role")&&(t.preventDefault(),this.hide(t)),this.shown&&9===t.which&&function(t,o){var i=function(t){return n(e.join(","),t).filter((function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)}))}(t),r=i.indexOf(document.activeElement);o.shiftKey&&0===r?(i[i.length-1].focus(),o.preventDefault()):o.shiftKey||r!==i.length-1||(i[0].focus(),o.preventDefault())}(this.$el,t))},t.prototype._maintainFocus=function(e){!this.shown||e.target.closest('[aria-modal="true"]')||e.target.closest("[data-a11y-dialog-ignore-focus-trap]")||o(this.$el)},"undefined"!=typeof document&&("loading"===document.readyState?document.addEventListener("DOMContentLoaded",i):window.requestAnimationFrame?window.requestAnimationFrame(i):window.setTimeout(i,16)),t}))}]);
ccb(document,{"advertising":true},null,[{"userId":null,"cookieName":"cookiesPreferencesNotLogged","path":"/","domain":"mercadolivre.com.br","secure":true,"sameSite":"none","maxAge":31556900}],"bottomOptOut",{"closeElements":[]},"cookie-consent-banner-opt-out",{"id":"js-modal-cookie-consent-banner-opt-out","wrapperClassName":"cookie-consent-banner-opt-out__modal-wrapper","openButton":"cookie-consent-banner-opt-out__action--key-customize","iframeUrl":"https://www.mercadolivre.com.br/privacy-preferences/cookies","saveText":"Salvar","i18n":{"title":"Preferências de cookies","close":"Fechar"}},{"successSnackbar":{"canShow":false,"hideTimeoutInMs":8000},"errorSnackbar":{"canShow":true,"hideTimeoutInMs":8000}});})()}},{s:function(){
!function(n,e){n.mitt=e()}(this,function(){function n(n){return n=n||Object.create(null),{on:function(e,t){(n[e]||(n[e]=[])).push(t)},off:function(e,t){n[e]&&n[e].splice(n[e].indexOf(t)>>>0,1)},emit:function(e,t){(n[e]||[]).map(function(n){n(t)}),(n["*"]||[]).map(function(n){n(e,t)})}}}return n});
window.freya = mitt();
}},{s:"https://http2.mlstatic.com/ui/searchbox/2.7.0/index.js",c:function(){
if (window.Searchbox) {
new window.Searchbox('.nav-search-input', {
platformId: 'ML',
siteId: 'MLB',
siteDomain: 'mercadolivre.com.br',
limit: 6,
searchEndpoint: 'https://lista.mercadolivre.com.br/$query',
categoryEndpoint: 'https://informatica.mercadolivre.com.br/$query',
categoryCheckbox: document.getElementById('categorySearch'),
loggedIn: false,
bus: window.freya,
deviceType: 'desktop'
});
}
}},{s:"https://http2.mlstatic.com/frontend-assets/nav-widget-ml-modal-iframe/v1.0.6/modal.js"},{s:"https://http2.mlstatic.com/frontend-assets/nav-widget-ml-onboarding-cp/v1.1.2/onboarding-cp.js",c:function(){(function () {
new window.OnboardingCP({
bus: window.meli,
isNewBuyer: true,
isMobile: false,
trigger: '.nav-menu-cp',
locale: 'pt_BR',
domain: 'mercadolivre.com.br',
siteId: 'MLB',
isInferred: false,
});
}());
}},{s:"https://http2.mlstatic.com/frontend-assets/nav-widget-ml-categories/v1.4.1/categories.js",c:function(){
(function(win, freya) {
if (win.CategoriesWidget && typeof freya !== 'undefined') {
new CategoriesWidget({
bus: freya,
endpoint: '//www.mercadolivre.com.br/menu/departments',
});
}
})(window, window.freya);
}},{s:function(){
if (window.Cart) {
new window.Cart({
trigger: document.getElementById('nav-cart'),
isHover: true,
small: true,
carts: undefined,
baseUrl: 'https://www.mercadolivre.com.br/gz/cart',
bus: freya,
});
}
}},{s:"https://http2.mlstatic.com/frontend-assets/nav-widget-ml-cart/v1.7.2/CartWidget.js",c:function(){
if (window.CartWidget) {
new window.CartWidget({
element: document.getElementById('nav-cart'),
endpoints: {
get: 'https://www.mercadolivre.com.br/gz/cart/info/header',
post: 'https://www.mercadolivre.com.br/gz/cart/api/item',
},
link: 'https://www.mercadolivre.com.br/gz/cart',
isMobile: false,
bus: freya,
locale: 'pt',
});
}
}},{s:"https://http2.mlstatic.com/frontend-assets/nav-widget-ml-snackbar/v1.1.0/snackbar.js",c:function(){
(function (win, freya) {
if (win.SnackbarWidget && typeof freya !== 'undefined') {
new win.SnackbarWidget({
bus: freya,
});
}
}(window, window.freya));
}},{s:function(){!function(e,t){function n(){var n=setInterval(function(){try{var c=Math.max(t.body.scrollHeight,t.body.offsetHeight,t.documentElement.clientHeight,t.documentElement.scrollHeight,t.documentElement.offsetHeight),o=e.pageYOffset||t.documentElement.scrollTop||t.body.scrollTop||0;e.innerHeight+o>=c?clearInterval(n):e.scrollBy(0,20)}catch(e){clearInterval(n)}},15)}var c=t.getElementById("nav-footer-access-switch");e.addEventListener&&c&&c.addEventListener("change",function(){this.checked||setTimeout(n,200)})}(window,document);}},{s:function(){(function (w, p) {w[p] = w[p] || function () { (w[p].q = w[p].q || []).push(arguments) }; w[p].l = 1 * new Date();}(window, "_perfill"));_perfill('set', 'scope', "public");_perfill('set', 'webview', false);_perfill('set', 'platform', "ML");_perfill('set', 'site', "MLB");_perfill('set', 'device', "desktop");_perfill('set', 'application', "search-nordic");_perfill('set', 'initiatives', [{"id":"web-vitals"}]);_perfill('send', 'start');(function (d, s, f, t, x) {t = d.createElement(s); x = d.getElementsByTagName(s)[0]; t.crossorigin = 'anonymous'; t.async = 1; t.src = f; x.parentNode.insertBefore(t, x);}(document, 'script', 'https://http2.mlstatic.com/frontend-assets/perfill-agent/2.5.2/perfill-agent.min.js'))}},{s:"https://http2.mlstatic.com/storage/tag-manager/google-gtag-search-mlb.js"},{s:function(){"use strict";(function(a){var b=a.location.hostname.substr(a.location.hostname.indexOf("."),a.location.hostname.length);if(-1!==b.indexOf("mercadolibre")||-1!==b.indexOf("mercadolivre")||-1!==b.indexOf("mercadopago")){var c="https://matt"+b,d=a.location.href;if(c=c.concat("?go=").concat(encodeURIComponent(d)),navigator&&navigator.sendBeacon)status=navigator.sendBeacon(c);else{var e=new XMLHttpRequest;e.open("GET",c),e.send()}}})(window);}},{s:function(){
window.__PRELOADED_STATE__ =
{"siteId":"MLB","cookies":{},"lowEnd":false,"deviceType":"desktop","country":{"id":"BR","name":"Brasil","locale":"pt_BR","currency_id":"BRL","decimal_separator":",","thousands_separator":".","time_zone":"GMT-03:00","geo_information":{"location":{"latitude":-23.6821604,"longitude":-46.875494}},"states":[{"id":"BR-AC","name":"Acre"},{"id":"BR-AL","name":"Alagoas"},{"id":"BR-AP","name":"Amapá"},{"id":"BR-AM","name":"Amazonas"},{"id":"BR-BA","name":"Bahia"},{"id":"BR-CE","name":"Ceará"},{"id":"BR-DF","name":"Distrito Federal"},{"id":"BR-ES","name":"Espírito Santo"},{"id":"BR-GO","name":"Goiás"},{"id":"BR-MA","name":"Maranhão"},{"id":"BR-MT","name":"Mato Grosso"},{"id":"BR-MS","name":"Mato Grosso do Sul"},{"id":"BR-MG","name":"Minas Gerais"},{"id":"BR-PR","name":"Paraná"},{"id":"BR-PB","name":"Paraíba"},{"id":"BR-PA","name":"Pará"},{"id":"BR-PE","name":"Pernambuco"},{"id":"BR-PI","name":"Piauí"},{"id":"BR-RN","name":"Rio Grande do Norte"},{"id":"BR-RS","name":"Rio Grande do Sul"},{"id":"BR-RJ","name":"Rio de Janeiro"},{"id":"BR-RO","name":"Rondônia"},{"id":"BR-RR","name":"Roraima"},{"id":"BR-SC","name":"Santa Catarina"},{"id":"BR-SE","name":"Sergipe"},{"id":"BR-SP","name":"São Paulo"},{"id":"BR-TO","name":"Tocantins"}],"currencies":{"BRL":{"id":"BRL","symbol":"R$","description":"Real","decimal_places":2}}},"currentUser":{"loggedIn":false,"loginUrl":"https:\u002F\u002Fwww.mercadolivre.com\u002Fjms\u002Fmlb\u002Flgz\u002Flogin?platform_id=ML&go=https%3A%2F%2Flista.mercadolivre.com.br%2Fcomputador&loginType=explicit","nickname":"","id":""},"initialState":{"adult_info":{"is_zrp_adult":false,"show_adult_filter":false,"adult_results":0},"view_options":{"id":"VIEW_OPTIONS","type":"VIEW_OPTIONS","state":"VISIBLE","tooltip":{"title":"Encontre mais fácil o que você busca!","label":{"text":"Ordene os resultados por relevância ou preço e escolha vê-los como lista ou grade."},"action":{"label":{"text":"Entendi"}}},"sort":{"label":"Ordenar por","sorts":[{"id":"relevance","name":"Mais relevantes","disclaimer":"","selected":true,"has_disclaimer":false},{"url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_OrderId_PRICE_NoIndex_True","id":"price_asc","name":"Menor preço","selected":false,"has_disclaimer":false},{"url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_OrderId_PRICE*DESC_NoIndex_True","id":"price_desc","name":"Maior preço","selected":false,"has_disclaimer":false}],"has_disclaimer":false}},"bookmark":{"label":{"text":"Favorito"},"show_user_bookmarks":true},"ads_metadata":{"destination_url":"https:\u002F\u002Fpublicidad.mercadolibre.com.br\u002Fmain","title":"","label_long":"Mercado Livre Publicidade - Anuncie aqu","label_short":"Anuncie aqui","track_url":"https:\u002F\u002Fprint1.mercadoclics.com\u002Fmclics\u002Fv2\u002Fprints\u002Fexternal\u002FMLB\u002Fcount?d=bxNegmX9gRGVHJ3%2FYE09yGspOc5dPiXU8ggWnR2OE38Afdi6Ij7FylH6CHLxeIuj5aoo4hbfqkRKAJNObM7EgxixAfNJ59lH5hjkYJ3Uqhw%2FMYuz%2BVpmbst99wSifx9GmaY3Tfm%2Fv8WIrF%2BAbs6SMuE21NE2tqtyaKoLaBPtAxzPTwv69FBbVT1uTaRDhp2DH6Z4DoHpY6oJmauoFghJasjF7P1othaHFQPYMMD8ZtON27KYWvkpS2M8KivQHuy51EErS%2BquWYcDugczfyveQED2p%2FdZ08zlp8EMPj5MzrAdcTZ7N%2Fu54u4%2FBiV68d3GzGMaK5dCTDVHXfzNcEm1bMwfIrBFED%2Bar623YCNgkdTHu2f%2Bhgf6n9cWMuuHlVCnKWS%2FUl3F6pi7ginfeY6w%2FgyKwYAtK0quRPOoAi28OYzsoNpgwOaHJLfKtvyS%2BO8800RzKYd%2FWW90QX6lju8UKzaE6Davr1p9j2gjHsC%2Bb4oHGYu77Fw8kqGOzJRKsmER56%2F6ijVzCNyxsphmjHCsQPHWN8EdGVwnBAejWRwZ1qYxJHITyQ%3D%3D&rb=x","landing":"https:\u002F\u002Fads.mercadolivre.com.br\u002FproductAds?ui_version=v2&utm_source=search_result_placement&utm_medium=link&utm_campaign=engagement","show_google_ads":true,"ui":{"version":"v2","font_color":"#3483FA","font_size":12}},"analytics_track":{"dimensions":{"itemId":"MLB1983288877,MLB1930876153,MLB1937079157,MLB1607748387,MLB1983278713,MLB2131342947,MLB2025368730,MLB1937076326,MLB2081933352,MLB2114151338,MLB2153875378,MLB1669162236,MLB1983288732,MLB2603247328,MLB1983288643,MLB2614218974,MLB1983278831,MLB2696339147,MLB1663773541,MLB1837442511,MLB1983279452,MLB2610297318,MLB2210259535,MLB2669020387,MLB2610554493,MLB2199976353,MLB1986322829,MLB1680063928,MLB1899027328,MLB1506134141,MLB1983288676,MLB1983279518,MLB2022879801,MLB2096063553,MLB2161556728,MLB1983287147,MLB2103940157,MLB2724080796,MLB1983296789,MLB2618767197,MLB2145104504,MLB2626699161,MLB1983286920,MLB1983288815,MLB1786478708,MLB2618802287,MLB2044748327,MLB1885917902,MLB2222645583,MLB1615760527,MLB2025342637,MLB2032160315,MLB2625920831,MLB2685001475","CategoryDomain":"MLB-COMPUTER_EQUIPMENT_AND_SPARE_PARTS","context":"PDP+officialStore","searchResults":"547937","officialStore":"NONE","experiment1":"SEO-allowlist: in - SEARCH-noindex: false","searchConfig":"115|393","melidataExperiments":"{\"mclics\u002Fgrid-layout\":\"12899\",\"search\u002Fnew-search-api\":\"8650\",\"mclics\u002Fshow-pads-search-list\":\"5146\",\"mclics\u002Fpseudo-search-buybox-query\":\"9461\",\"mclics\u002Fshow-pads-global\":\"5176\",\"mclics\u002Fpseudo-search-pads-buybox\":\"7708\",\"frontend\u002FassetsCdnDomainMLB\":\"DEFAULT\",\"frontend\u002FassetsCdnDomainMLU\":\"DEFAULT\"}","business":"MARKETPLACE","pageVertical":"CORE","itemDeals":"NONE","TrackingId":"fdbc07bf-dc75-448b-bca8-3904faaf0d2a"},"platform":"ML","section":"search","siteId":"MLB","page":"LISTING","pathFromRoot":[{"id":"MLB1648","name":"Informática"}],"pageVertical":"CORE","business":"MARKETPLACE","pageLayout":"gallery","search":"computador","pageCategoryL1":"MLB1648"},"canonical_info":{"canonical":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fcomputador","should_add_none_to_response":false,"q_cat_off":false},"exhibitor":{"id":"TSB_MELHOR_DO_ELETRO","type":"search_desktop_main_slider","start_time":"2022-07-18T03:00:00Z","end_time":"2022-07-25T03:00:00Z","data_track":{"exhibitor_id":"TSB_MELHOR_DO_ELETRO","permalink":"https:\u002F\u002Flista.mercadolivre.com.br\u002F_Deal_entrefechas?utm_source=TSB+ACHADOS+DA+SEMANA&utm_medium=TSB+ACHADOS+DA+SEMANA&utm_id=TSB+ACHADOS+DA+SEMANA#DEAL_ID=MLB10205&S=MKT&V=1&T=TSB&L=MKT_T1_ENTRE_FECHAS_ACHADOS"},"parameters":{"background_image":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_610237-MLA50807376051_072022-OO.jpg","permalink":"https:\u002F\u002Flista.mercadolivre.com.br\u002F_Deal_entrefechas?utm_source=TSB+ACHADOS+DA+SEMANA&utm_medium=TSB+ACHADOS+DA+SEMANA&utm_id=TSB+ACHADOS+DA+SEMANA#DEAL_ID=MLB10205&S=MKT&V=1&T=TSB&L=MKT_T1_ENTRE_FECHAS_ACHADOS"}},"header":{"id":"HEADER","type":"EXHIBITOR","state":"VISIBLE","background":{"pictures":{"1x":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_610237-MLA50807376051_072022-OO.jpg","2x":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_610237-MLA50807376051_072022-OO.jpg"},"permalink":"https:\u002F\u002Flista.mercadolivre.com.br\u002F_Deal_entrefechas?utm_source=TSB+ACHADOS+DA+SEMANA&utm_medium=TSB+ACHADOS+DA+SEMANA&utm_id=TSB+ACHADOS+DA+SEMANA#DEAL_ID=MLB10205&S=MKT&V=1&T=TSB&L=MKT_T1_ENTRE_FECHAS_ACHADOS"}},"landing":{"type":"BASE","show_item_shipping_info":true,"show_item_installments":true,"show_item_product":true,"show_item_reviews":true,"show_item_attributes":true,"show_item_brand_logo":true,"show_item_official_store":true,"show_item_variations":true,"show_view_change_buttons":true,"show_product_header":true},"layout_options":{"id":"LAYOUT","state":"HIDDEN","current":"grid","views":[{"id":"grid","label":"Galeria","url_host":"https:\u002F\u002Flista.mercadolivre.com.br","url_path":"\u002Fcomputador_DisplayType_G"}],"track":{"melidata_track":{"path":"\u002Fsearch\u002Fchange_view\u002Fapply"}}},"listing_disclaimer":{"state":"VISIBLE","text":"O frete grátis está sujeito ao peso, preço e distância do envio."},"melidata_track":{"path":"\u002Fsearch","event_data":{"query":"computador","limit":50,"offset":0,"total":547937,"category_id":"MLB1648","domain":"MLB-COMPUTER_EQUIPMENT_AND_SPARE_PARTS","category_path":["MLB1648"],"sort_id":"relevance","filters":{"category":"MLB1648"},"available_filters":{},"displayed_filters":[{"id":"shipping_highlighted_fulfillment","name":"Tipo de envio","type":"highlighted","position":1,"values_quantity":1},{"id":"shipping_cost_highlighted","name":"Custo do frete","type":"highlighted","position":2,"values_quantity":1},{"id":"SHIPPING_ORIGIN_HIGHLIGHTED","name":"Origem do frete","type":"highlighted","position":3,"values_quantity":1},{"id":"category","name":"Categorias","type":"text","position":4,"values_quantity":14},{"id":"PROCESSOR_TYPE","name":"Processador","type":"STRING","position":5,"values_quantity":25},{"id":"shipping","name":"Tipo de envio","type":"text","position":6,"values_quantity":1},{"id":"RAM_SIZE","name":"RAM","type":"range","position":7,"values_quantity":5},{"id":"ITEM_CONDITION","name":"Condição","type":"STRING","position":8,"values_quantity":3},{"id":"WITH_MONITOR","name":"Monitor","type":"boolean","position":9,"values_quantity":2},{"id":"shipping_cost","name":"Custo do frete","type":"text","position":10,"values_quantity":1},{"id":"price","name":"Preço","type":"range","position":11,"values_quantity":3},{"id":"OPERATIVE_SYSTEM","name":"Sistema operativo","type":"STRING","position":12,"values_quantity":7},{"id":"state","name":"Localização","type":"text","position":13,"values_quantity":17},{"id":"HDD_SIZE","name":"Disco rígido","type":"range","position":14,"values_quantity":4},{"id":"DISPLAY_SIZE","name":"Tamanho da tela","type":"range","position":15,"values_quantity":4},{"id":"BRAND","name":"Marca","type":"STRING","position":16,"values_quantity":192},{"id":"SHIPPING_ORIGIN","name":"Origem do frete","type":"STRING","position":17,"values_quantity":2},{"id":"official_store","name":"Lojas oficiais","type":"text","position":18,"values_quantity":1},{"id":"installments","name":"Pagamento","type":"text","position":19,"values_quantity":1},{"id":"discount","name":"Descontos","type":"numeric","position":20,"values_quantity":7},{"id":"promotion_type","name":"Tipo de promoção","type":"text","position":21,"values_quantity":1},{"id":"IS_GAMER","name":"Outras características","type":"boolean","position":22,"values_quantity":0},{"id":"power_seller","name":"Filtro MercadoLíderes","type":"refine_by","position":23,"values_quantity":1}],"autoselected_filters":["category"],"view_mode":"GRID","results":["MLB1983288877","MLB1930876153","MLB1937079157","MLB1607748387","MLB1983278713","MLB2131342947","MLB2025368730","MLB1937076326","MLB2081933352","MLB2114151338","MLB1983288732","MLB2603247328","MLB1983288643","MLB2614218974","MLB1983278831","MLB2696339147","MLB1663773541","MLB1837442511","MLB1983279452","MLB2669020387","MLB2610554493","MLB2199976353","MLB1986322829","MLB1680063928","MLB1899027328","MLB1506134141","MLB1983288676","MLB1983279518","MLB2022879801","MLB2096063553","MLB2103940157","MLB2724080796","MLB1983296789","MLB2618767197","MLB2145104504","MLB2626699161","MLB1983286920","MLB1983288815","MLB1786478708","MLB2618802287","MLB2044748327","MLB1885917902","MLB2222645583","MLB1615760527","MLB2025342637","MLB2032160315","MLB2625920831","MLB2685001475"],"billboards":[],"pads_info":{"vertical":"CORE","blocks_strategy":"P11P12","ids":["MLB2153875378","MLB1669162236","MLB2610297318","MLB2210259535","MLB2161556728","MLB1983287147"],"item_ids":["MLB2153875378","MLB1669162236","MLB2610297318","MLB2210259535","MLB2161556728","MLB1983287147"],"discarded_ids":["MLB2648112718","MLB1539097035","MLB2610318517","MLB1666513223","MLB2610291368","MLB1736173494","MLB1983492060","MLB1911268639","MLB2130219063","MLB2104599245","MLB1960923234","MLB2657810063","MLB2611561822","MLB1946622365","MLB2641021752","MLB2220510769","MLB1559647663","MLB1734778447","MLB1882031499","MLB2094487168","MLB1763722828","MLB2700169586","MLB2022879801","MLB2087413462","MLB1867159797","MLB2181336339","MLB2649428704","MLB2649506643"],"printed_ads_prices":[2987.1,3865.91,1376.83,3122.1,229.9,2366.1],"discarded_ads_prices":[1709.1,1376.99,1274.34,64.9,1446.8,19.99,1890.99,1529.1,3644.1,2799.99,168.9,2872,29.9,1466.99,1459,1591.58,1394.99,27.94,57.9,54.89,22.69,2589,3105.52,24.49,29.79,2969.1,100.83,128.54],"results_avg_ads_asp":1405.83,"results_avg_printed_ads_asp":2324.65,"results_avg_discarded_ads_asp":1208.94,"results_avg_items_asp":1363.93,"printed_positions":[10,11,21,22,34,35],"original_positions":[10,11,21,22,34,35],"empty_positions":[],"suggested_positions":[712,451,915,379,529,543,536,439,442,505,368,714,757,557,115,136,626,463,834,251,868,292,243,801,477,767,933,222,28,237,847,98,100,71],"original_suggested_positions":[712,451,915,379,529,543,536,439,442,505,368,714,757,557,115,136,626,463,834,251,868,292,243,801,477,767,933,222,28,237,847,98,100,71],"discarded_original_suggested_positions":[536,439,442,505,368,714,757,557,115,136,626,463,834,251,868,292,243,801,477,767,933,222,28,237,847,98,100,71],"printed_original_suggested_positions":[712,451,915,379,529,543],"blocks_sizes":[],"printed_positions_size":6,"domain":"VQCATCORE_LST","strategy":"DPCTRAVG_P11P12_BB_ITEM_BIDBSMULT","is_api_migrated":false},"catalog_product_id":"","backend_data":{"request_flow":{"origin":"backend"}},"promise_items":{"nextday":[],"sameday":[]},"official_stores_carousel_shown":[],"user_zone":"","pdp_rows":[{"item_id":"MLB1930876153","product_id":"MLB16263913"},{"item_id":"MLB2131342947","product_id":"MLB18624590"},{"item_id":"MLB2081933352","product_id":"MLB18366754"},{"item_id":"MLB2114151338","product_id":"MLB18621000"},{"item_id":"MLB2603247328","product_id":"MLB18632909"},{"item_id":"MLB2614218974","product_id":"MLB19035706"},{"item_id":"MLB2696339147","product_id":"MLB19158523"},{"item_id":"MLB2610554493","product_id":"MLB6189662"},{"item_id":"MLB2199976353","product_id":"MLB18941410"},{"item_id":"MLB2103940157","product_id":"MLB17739841"},{"item_id":"MLB2724080796","product_id":"MLB17966310"},{"item_id":"MLB2145104504","product_id":"MLB18459542"},{"item_id":"MLB2044748327","product_id":"MLB17978326"},{"item_id":"MLB2685001475","product_id":"MLB15297208"}],"carousel_filters":[],"show_supermarket_carousel":false,"tracking_id":"fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pdp_grouped_search":false,"highlights_info":{"best_seller_info":{"candidates":22,"selected":["MLB2614218974"]},"meli_choice_info":{"candidates":4,"selected":[{"item_id":"MLB1930876153","product_id":"MLB16263913","origin":"killer_matched"},{"item_id":"MLB2131342947","product_id":"MLB18624590","origin":"killer_matched"}],"overrides":[]}},"tag_tracking_info":{"crypto_cashback":[],"best_seller":[{"type":"best_seller","item_id":"MLB2614218974","product_id":"MLB19035706","position":14}],"highlights":[],"lightning_deal":[],"shipping_guaranteed":[],"deal_of_the_day":[{"type":"deal_of_the_day","item_id":"MLB1983288877","position":1},{"type":"deal_of_the_day","item_id":"MLB1983278713","position":5},{"type":"deal_of_the_day","item_id":"MLB2025368730","position":7},{"type":"deal_of_the_day","item_id":"MLB2114151338","product_id":"MLB18621000","position":10},{"type":"deal_of_the_day","item_id":"MLB1983288732","position":11},{"type":"deal_of_the_day","item_id":"MLB1983288643","position":13},{"type":"deal_of_the_day","item_id":"MLB1983288676","position":27},{"type":"deal_of_the_day","item_id":"MLB1983296789","position":33},{"type":"deal_of_the_day","item_id":"MLB1983286920","position":37},{"type":"deal_of_the_day","item_id":"MLB1983288815","position":38},{"type":"deal_of_the_day","item_id":"MLB2025342637","position":45}],"discount_volume":[],"meli_choice":[{"type":"meli_choice","item_id":"MLB1930876153","product_id":"MLB16263913","position":2},{"type":"meli_choice","item_id":"MLB2131342947","product_id":"MLB18624590","position":6}],"next_day":[],"same_day":[],"supermarket_partnership":[]},"pdp_info":[{"id":"MLB16263913","score":1,"status":"shown"},{"id":"MLB18624590","score":1,"status":"shown"},{"id":"MLB18366754","score":1,"status":"shown"},{"id":"MLB18621000","score":1,"status":"shown"},{"id":"MLB18632909","score":1,"status":"shown"},{"id":"MLB19035706","score":1,"status":"shown"},{"id":"MLB19158523","score":1,"status":"shown"},{"id":"MLB6189662","score":1,"status":"shown"},{"id":"MLB18941410","score":1,"status":"shown"},{"id":"MLB17739841","score":1,"status":"shown"},{"id":"MLB17966310","score":1,"status":"shown"},{"id":"MLB18459542","score":1,"status":"shown"},{"id":"MLB17978326","score":1,"status":"shown"},{"id":"MLB15297208","score":1,"status":"shown"}],"location_info":{},"interventions":[],"containers_flow":"N\u002FA","banner":{"exhibitor_id":"TSB_MELHOR_DO_ELETRO","permalink":"https:\u002F\u002Flista.mercadolivre.com.br\u002F_Deal_entrefechas?utm_source=TSB+ACHADOS+DA+SEMANA&utm_medium=TSB+ACHADOS+DA+SEMANA&utm_id=TSB+ACHADOS+DA+SEMANA#DEAL_ID=MLB10205&S=MKT&V=1&T=TSB&L=MKT_T1_ENTRE_FECHAS_ACHADOS"},"related_searches_info":{"quantity":5,"related_queries":["i3 9100f","king koil triathlon queen","celular samsung a11","computador wi fi","computadores novos"]},"canonical":{"url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fcomputador","no_follow_tag":false},"landing":"base","layout_forced":false,"shown_as_product":[],"geo_search":false,"is_googlebot":false,"seo":{"allowlist":{"seo_is_allowlisted":true,"seo_apply_no_index":true,"search_no_index_applied":false,"results_by_strategy":{"query_and_category_strategy":true,"sanitized_query_and_category_strategy":true,"exact_query_strategy":true}},"seo_experiments":{"status":"success","experiment_list":[{"id":"ironman","is_enabled":false,"is_active":false,"should_apply":false,"group":"Control","executed_successfully":true},{"id":"black widow","is_enabled":false,"is_active":false,"should_apply":false,"group":"Control","executed_successfully":true},{"id":"spiderman","is_enabled":false,"is_active":false,"should_apply":false,"group":"Control","executed_successfully":true},{"id":"green arrow","is_enabled":false,"is_active":false,"should_apply":false,"group":"Control","executed_successfully":true}]}},"pdp_highlight_enabled":false,"user_profile_type":"BUYER","top_keywords":[{"key":"intel core i5 8 geracao","type":"SEARCH"},{"key":"montar pc pichau","type":"SEARCH"},{"key":"hackintosh","type":"SEARCH"},{"key":"impressora portatil a4","type":"SEARCH"},{"key":"notebook com impressora","type":"SEARCH"},{"key":"tablet windows","type":"SEARCH"},{"key":"computador barato","type":"SEARCH"}]},"experiments":{"mclics\u002Fgrid-layout":"12899","search\u002Fnew-search-api":"8650","mclics\u002Fshow-pads-search-list":"5146","mclics\u002Fpseudo-search-buybox-query":"9461","mclics\u002Fshow-pads-global":"5176","mclics\u002Fpseudo-search-pads-buybox":"7708","frontend\u002FassetsCdnDomainMLB":"DEFAULT","frontend\u002FassetsCdnDomainMLU":"DEFAULT"}},"pagination":{"page_count":42,"first_page":1,"last_page":1,"selected_page":1,"show_pagination":true,"previous_page":{"value":"Anterior","show":false},"pagination_nodes_url":[{"value":"1","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True","is_actual_page":true}],"next_page":{"value":"Seguinte","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_Desde_49_NoIndex_True","show":true},"results_limit":2000},"query":"computador","related_searches":{"q":"computador","related_searches":[{"q":"i3 9100f","url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fi3-9100f#D[R:computador,P:1,Q:5]"},{"q":"king koil triathlon queen","url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fking-koil-triathlon-queen#D[R:computador,P:2,Q:5]"},{"q":"celular samsung a11","url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fcelular-samsung-a11#D[R:computador,P:3,Q:5]"},{"q":"computador wi fi","url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fcomputador-wi-fi#D[R:computador,P:4,Q:5]"},{"q":"computadores novos","url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fcomputadores-novos#D[R:computador,P:5,Q:5]"}],"label":"Outras pessoas pesquisaram"},"results":[{"id":"MLB1983288877","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-1983288877-computador-completo-facil-intel-core-i5-08gb-ddr3-ssd-240-gb-_JM#position=17&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_726435-MLB47230369709_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Completo Fácil Intel Core I5 08gb Ddr3 Ssd 240 Gb"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_726435-MLB47230369709_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Completo Fácil Intel Core I5 08gb Ddr3 Ssd 240 Gb"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Computador Completo Fácil Intel Core I5 08gb Ddr3 Ssd 240 Gb","class_name":"list-view-item-figure"}}},"price":{"amount":1830,"currency_id":"BRL","original_price":2079,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Completo Fácil Intel Core I5 08gb Ddr3 Ssd 240 Gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002F2eletro","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":182.95,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","deal_of_the_day"],"item_highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"image_ratio":"1.71","category_id":"MLB1649","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Crédito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":157},{"id":"MLB1930876153","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":564615359,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","eshop","mshops","large_seller","credits_profile","messages_as_seller"],"address":{"id":1101840087,"comment":"","address_line":"","zip_code":"04571900","country":{"id":"BR","name":"Brasil"},"city":{"id":"BR-SP-44","name":"São Paulo"}},"official_store_id":"2972","official_store_name":"VIKING","official_store_text":"por VIKING","official_store_verbose_text":"Vendido por VIKING"},"permalink":"https:\u002F\u002Fwww.mercadolivre.com.br\u002Fnotebook-multilaser-legacy-book-pc310-preta-141-intel-celeron-n3000-4gb-de-ram-64gb-ssd-intel-hd-graphics-1366x768px-windows-10-home\u002Fp\u002FMLB16263913?pdp_filters=category:MLB1648#searchVariation=MLB16263913&position=1&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_892016-MLA44927459054_022021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Notebook Multilaser Legacy Book PC310 preta 14.1\", Intel Celeron N3000 4GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_892016-MLA44927459054_022021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Notebook Multilaser Legacy Book PC310 preta 14.1\", Intel Celeron N3000 4GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Notebook Multilaser Legacy Book PC310 preta 14.1\", Intel Celeron N3000 4GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home","class_name":"list-view-item-figure"}}},"price":{"amount":1199,"currency_id":"BRL","original_price":1999,"discount_rate":40,"discount_label":{"text":"40% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB16263913","name":"Notebook Multilaser Legacy Book PC310 preta 14.1\", Intel Celeron N3000 4GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"},"title":"Notebook Multilaser Legacy Book PC310 preta 14.1\", Intel Celeron N3000 4GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por VIKING","color":"GRAY"},"verbose_text":{"text":"Vendido por VIKING","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002Fviking","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"2972"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":119.9,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","fulfillment","cart_eligible","product_item","best_seller_candidate","meli_choice","meli_choice"],"reviews":{"rating_average":4.1,"total":351},"image_ratio":"1.29","category_id":"MLB1652","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"RECOMENDADO","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"RECOMENDADO","color":"#FFFFFF"},"type":"meli_choice","icon":{"id":"meli_icon"},"background":"#333333"},"pictures_quantity":5,"value_propositions":[],"available_quantity":272},{"id":"MLB1937079157","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":298832663,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","mshops","messages_as_seller"],"address":{"id":618250284,"comment":"","address_line":"","zip_code":"01040000","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"São Paulo"},"city":{"id":"BR-SP-44","name":"São Paulo"}}},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-1937079157-pc-computador-cpu-core-i5-650-ssd-240gb-8gb-memoria-ram-_JM#position=18&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_618178-MLB46611223438_072021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Memória Ram"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_618178-MLB46611223438_072021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Memória Ram"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Memória Ram","class_name":"list-view-item-figure"}}},"price":{"amount":1231,"currency_id":"BRL","original_price":1399,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Memória Ram","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":123.11,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"0.86","category_id":"MLB1649","pictures_quantity":3,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Crédito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":84},{"id":"MLB1607748387","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":459757635,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","messages_as_seller"],"address":{"id":1089134583,"comment":"","address_line":"","zip_code":"15025050","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"São Paulo"},"city":{"id":"BR-SP-28","name":"São José do Rio Preto"}}},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-1607748387-pc-computador-cpu-intel-core-i5-ssd-240gb-8gb-memoria-ram-_JM#position=19&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_674762-MLB50613865527_072022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Memória Ram"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_674762-MLB50613865527_072022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Memória Ram"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Memória Ram","class_name":"list-view-item-figure"}}},"price":{"amount":1446,"currency_id":"BRL","original_price":1829.99,"discount_rate":21,"discount_label":{"text":"21% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Memória Ram","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":144.57,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","best_seller_candidate"],"image_ratio":"0.86","category_id":"MLB1649","pictures_quantity":11,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Crédito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":260},{"id":"MLB1983278713","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-1983278713-computador-facil-intel-core-i3-4gb-ssd-120gb-_JM#position=20&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_766782-MLB47145738530_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Fácil Intel Core I3 4gb Ssd 120gb"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_766782-MLB47145738530_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Fácil Intel Core I3 4gb Ssd 120gb"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Computador Fácil Intel Core I3 4gb Ssd 120gb","class_name":"list-view-item-figure"}}},"price":{"amount":852.72,"currency_id":"BRL","original_price":969,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Fácil Intel Core I3 4gb Ssd 120gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002F2eletro","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":85.27,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","deal_of_the_day"],"item_highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"image_ratio":"0.67","category_id":"MLB1649","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"pictures_quantity":4,"rebates":[],"value_propositions":[],"available_quantity":156},{"id":"MLB2131342947","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":85263796,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","eshop","credits_profile","mshops","messages_as_seller"],"address":{"id":1055030833,"comment":"","address_line":"","zip_code":"07174005","country":{"id":"BR","name":"Brasil"},"city":{"id":"BR-SP-41","name":"Guarulhos"}},"official_store_id":"3401","official_store_name":"123 Comprou","official_store_text":"por 123 Comprou","official_store_verbose_text":"Vendido por 123 Comprou"},"permalink":"https:\u002F\u002Fwww.mercadolivre.com.br\u002Fnotebook-multilaser-legacy-cloud-pc134-cinza-141-intel-atom-z8350-2gb-de-ram-64gb-ssd-intel-hd-graphics-1366x768px-windows-10-home\u002Fp\u002FMLB18624590?pdp_filters=category:MLB1648#searchVariation=MLB18624590&position=2&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_690494-MLA48633785018_122021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Notebook Multilaser Legacy Cloud PC134 cinza 14.1\", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_690494-MLA48633785018_122021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Notebook Multilaser Legacy Cloud PC134 cinza 14.1\", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Notebook Multilaser Legacy Cloud PC134 cinza 14.1\", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home","class_name":"list-view-item-figure"}}},"price":{"amount":1199,"currency_id":"BRL","original_price":1529,"discount_rate":21,"discount_label":{"text":"21% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB18624590","name":"Notebook Multilaser Legacy Cloud PC134 cinza 14.1\", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"},"title":"Notebook Multilaser Legacy Cloud PC134 cinza 14.1\", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 123 Comprou","color":"GRAY"},"verbose_text":{"text":"Vendido por 123 Comprou","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002F123-comprou","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3401"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":119.9,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","fulfillment","cart_eligible","product_item","best_seller_candidate","meli_choice","meli_choice"],"reviews":{"rating_average":4.2,"total":94},"image_ratio":"1.23","category_id":"MLB1652","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"RECOMENDADO","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"RECOMENDADO","color":"#FFFFFF"},"type":"meli_choice","icon":{"id":"meli_icon"},"background":"#333333"},"pictures_quantity":6,"value_propositions":[],"available_quantity":111},{"id":"MLB2025368730","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-2025368730-computador-completo-facil-intel-core-i3-8gb-ssd-240gb-_JM#position=21&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_704139-MLB47542929423_092021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Completo Fácil Intel Core I3 8gb Ssd 240gb "}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_704139-MLB47542929423_092021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Completo Fácil Intel Core I3 8gb Ssd 240gb "}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Computador Completo Fácil Intel Core I3 8gb Ssd 240gb ","class_name":"list-view-item-figure"}}},"price":{"amount":1706,"currency_id":"BRL","original_price":1939,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Completo Fácil Intel Core I3 8gb Ssd 240gb ","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002F2eletro","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":170.63,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","deal_of_the_day"],"item_highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"image_ratio":"1.61","category_id":"MLB1649","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Crédito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":137},{"id":"MLB1937076326","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":298832663,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","mshops","messages_as_seller"],"address":{"id":618250284,"comment":"","address_line":"","zip_code":"01040000","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"São Paulo"},"city":{"id":"BR-SP-44","name":"São Paulo"}}},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-1937076326-pc-computador-cpu-core-i5-650-ssd-240gb-8gb-memoria-ram-_JM#position=24&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_618178-MLB46611223438_072021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Memória Ram"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_618178-MLB46611223438_072021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Memória Ram"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Memória Ram","class_name":"list-view-item-figure"}}},"price":{"amount":1100,"currency_id":"BRL","original_price":1250,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb Memória Ram","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":106.65,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible","best_seller_candidate"],"image_ratio":"0.86","category_id":"MLB1649","pictures_quantity":3,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Crédito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":68},{"id":"MLB2081933352","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":703236581,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","mshops","credits_profile","messages_as_seller"],"address":{"id":1177954353,"comment":"","address_line":"","zip_code":"03116000","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"São Paulo"},"city":{"id":"BR-SP-44","name":"São Paulo"}}},"permalink":"https:\u002F\u002Fwww.mercadolivre.com.br\u002Fnotebook-multilaser-legacy-book-pc250-preta-141-intel-celeron-n3350-4gb-de-ram-64gb-ssd-intel-hd-graphics-500-1366x768px-windows-10-home\u002Fp\u002FMLB18366754?pdp_filters=category:MLB1648#searchVariation=MLB18366754&position=3&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_739810-MLA47202566066_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Notebook Multilaser Legacy Book PC250 preta 14.1\", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1366x768px Windows 10 Home"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_739810-MLA47202566066_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Notebook Multilaser Legacy Book PC250 preta 14.1\", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1366x768px Windows 10 Home"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Notebook Multilaser Legacy Book PC250 preta 14.1\", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1366x768px Windows 10 Home","class_name":"list-view-item-figure"}}},"price":{"amount":1281,"currency_id":"BRL","original_price":1281.23,"discount_rate":0,"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB18366754","name":"Notebook Multilaser Legacy Book PC250 preta 14.1\", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1366x768px Windows 10 Home"},"title":"Notebook Multilaser Legacy Book PC250 preta 14.1\", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1366x768px Windows 10 Home","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":128.12,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","product_item","best_seller_candidate"],"reviews":{"rating_average":4.1,"total":101},"image_ratio":"1.23","category_id":"MLB1652","pictures_quantity":7,"value_propositions":[],"available_quantity":20},{"id":"MLB2114151338","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":418149407,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","messages_as_seller"],"address":{"id":1060728947,"comment":"","address_line":"","zip_code":"07750020","country":{"id":"BR","name":"Brasil"},"city":{"id":"QlItU1BDYWphbWFy","name":"Cajamar"}},"official_store_id":"2359","official_store_name":"Tedge por Mercado Livre","official_store_text":"por Tedge por Mercado Livre","official_store_verbose_text":"Vendido por Tedge por Mercado Livre"},"permalink":"https:\u002F\u002Fwww.mercadolivre.com.br\u002Fmouse-para-jogo-tedge-ml-gmh48-preto\u002Fp\u002FMLB18621000?pdp_filters=category:MLB1648#searchVariation=MLB18621000&position=4&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_952471-MLA48392889529_112021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Mouse para jogo Tedge ML-GMH48 preto"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_952471-MLA48392889529_112021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Mouse para jogo Tedge ML-GMH48 preto"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Mouse para jogo Tedge ML-GMH48 preto","class_name":"list-view-item-figure"}}},"price":{"amount":39,"currency_id":"BRL","original_price":69.55,"discount_rate":43,"discount_label":{"text":"43% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB18621000","name":"Mouse para jogo Tedge ML-GMH48 preto"},"title":"Mouse para jogo Tedge ML-GMH48 preto","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por Tedge por Mercado Livre","color":"GRAY"},"verbose_text":{"text":"Vendido por Tedge por Mercado Livre","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002Ftedge-por-mercado-livre","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"2359"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":6.33,"currency_id":"BRL","text":"7x {price}","color":"BLACK"},"tags":["free_shipping","fulfillment","cart_eligible","product_item","deal_of_the_day","best_seller_candidate"],"reviews":{"rating_average":4.8,"total":82},"item_highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"image_ratio":"0.49","category_id":"MLB1714","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"pictures_quantity":3,"value_propositions":[],"available_quantity":816},{"id":"MLB2153875378","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\u002F\u002Fclick1.mercadolivre.com.br\u002Fmclics\u002Fclicks\u002Fexternal\u002FMLB\u002Fcount?a=94stkOnzXBuyRVec0xp5j%2Bhw9ejO3y3p1X4gbH2W%2F2B3Ws0oGx1t0c51IOrE3ElqJjHfsLhzB1vWo2WmDdcie9X0hA%2BhIzl3lG%2FDPl7nZBYLO8Q7IiDtfmMQ359XN3JJRnVMddXfJcmy6st5Ca8%2Fn8M6NNVimWm5tcR5gmwCpiH9qSKAXlfHIzdUHp6MpvtcvsVnVGIsis9zaY6V%2Bgd6dkihONd9BLhTNjx7XAjrj7VV%2FcG4wWRJSe6gE8hmAbXOSqbx%2BEYb5Tsj225FM92iJa1ASqSgfvfZ97Noe5INkqDamD4iEkjlYyYvkXMyKBIbbFsPWVtgt6AWPh1NTLg%2FPDSK08CzsymhXRk4SCTxIBlb1BeNuV1yjnsiec9%2F3%2F6jjT4nLt6l5xre83x%2F2V7cNIe%2FLv8StVe9KfgctIBdZhiovh7by4H5o6J6cJ4MLs3i2J%2B%2Bo8vkm15XfKbEnp8cy9699Lei2cOlARzWSzlvpljEBMMcF%2Bj0lo5hsdv4ZdIEzuXOoh9pE%2Byz1IjjszR%2FGge074oIvOnCf6b7m0VcvEeJeAsaSsFS7CdSNHOnO00tI3WBc0aK7rKMEGpzWK6ejudbyZmGdNQ%2BWxCJfIjZUEUtMHDODenalwjxKf6cNk0FmCwyiQvVuBFBjlN1czESudu3ABB%2FOvRg8CSord2HAqTZaw8i6sldx2%2BINR5eowD2bPKLa8XPmu5qZyEAtM9aFOzoVNSJ485UD7CSG%2B2Uo7mJkxQjFtd%2Bc%2FvTMV5rn7eHfjR2j2doGqFmJdwN&rb=x","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_965508-MLB50709325431_072022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Gamer Fácil Intel Core I7 16gb Ssd 240gb Radeon 4gb"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_965508-MLB50709325431_072022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Gamer Fácil Intel Core I7 16gb Ssd 240gb Radeon 4gb"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Pc Gamer Fácil Intel Core I7 16gb Ssd 240gb Radeon 4gb","class_name":"list-view-item-figure"}}},"price":{"amount":2987,"currency_id":"BRL","original_price":3319,"discount_rate":10,"discount_label":{"text":"10% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"}},"title":"Pc Gamer Fácil Intel Core I7 16gb Ssd 240gb Radeon 4gb","subtitles":{},"vertical":"CORE","is_ad":true,"ad_label":"Patrocinado","ad_version":"v2","official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002F2eletro","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":298.71,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","product_ad","cart_eligible"],"image_ratio":"0.71","category_id":"MLB1649","value_propositions":[],"available_quantity":40},{"id":"MLB1669162236","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":174969713,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","eshop","mshops","credits_profile","messages_as_seller"],"address":{"id":156518652,"comment":"","address_line":"","zip_code":"84010240","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-PR","name":"Paraná"},"city":{"id":"TUxCQ1BPTjJjY2I5","name":"Ponta Grossa"}}},"permalink":"https:\u002F\u002Fclick1.mercadolivre.com.br\u002Fmclics\u002Fclicks\u002Fexternal\u002FMLB\u002Fcount?a=F1%2BH3uml52TEeQUYeMd6gv8Lw7KLDRU81YyCSmeBXv9SUx%2BaO%2BzjpnbJGaK%2BtOHyVg31OsT7GKxN4tpLAks0dzD7nFwb8nAinxBuc%2BRX6mqqBzxrLzt0%2Fsj5fHhZ5XQmAG2BY5SJ48zQE3BIKvnEeby0TrchXVx4YYKBv3NxTCStdUTN0loXg7E6sDN%2Fu8H4XlW6x35mr1o6%2FjgVfsSaa%2FPOzFijT89nw0gZNYHXUPQjSR7z6zQQqLwFH%2FLuYDLheCIku3lApnKD0719pgAZLmyiqz1pwpmAWdi%2FaxUh8YJ5d3dXHId5H8oTTJ6Nxhyrow9B%2BvH8EW0TpYbSWIKrK0k5PSour9jDJyCxviHO0YCyN%2BftnJEPE5bTRJZxSqYSUOn4yTVMjHl4WbvDGs9E8MI0Khiz9IfMh3DRnVUR6GjxnzytgnlD8QPkUDHE2vA%2BDqmbrLUR7XjkixKAbAIVCVQe2awHitEQI8RFjVxUVkwQzE3Qkei53dZLKYBzShwQ3ih9mH0Hm1r69fCAOnZ%2BwPgMnL6TbK7tJLgWtdEy78Hw%2BjSjcXouB8%2Fll1qaWbqJ0kcBwD8gltT%2FOI8a6EpBNYTy2rCh7%2FakFyywvnDSVqGmeTFX2nvDmqPJ0QIdT1FfHRjKv3o8WtzBUJgrXRL4mYa5FuApqwqn58moxSnnDCb6%2FjqJNLBkB7LDyLteNDv6KW8qALbXmFba7tvuUjMgEsmEas7VGQmULjCf69B4npmur%2FvU9DBtubYvI%2FbGHjYngXpxo7SaTH4lciCPWN3zoEE%3D&rb=x","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_636240-MLB49254216707_032022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Gamer Computador Completo Ryzen 5 16gb Ssd 480gb Nfe Wifi"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_636240-MLB49254216707_032022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Gamer Computador Completo Ryzen 5 16gb Ssd 480gb Nfe Wifi"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Pc Gamer Computador Completo Ryzen 5 16gb Ssd 480gb Nfe Wifi","class_name":"list-view-item-figure"}}},"price":{"amount":3866,"currency_id":"BRL","original_price":4295.46,"discount_rate":10,"discount_label":{"text":"10% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"}},"title":"Pc Gamer Computador Completo Ryzen 5 16gb Ssd 480gb Nfe Wifi","subtitles":{},"vertical":"CORE","is_ad":true,"ad_label":"Patrocinado","ad_version":"v2","installments":{"amount":386.59,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","product_ad","cart_eligible"],"image_ratio":"1.01","category_id":"MLB1649","value_propositions":[],"available_quantity":60},{"id":"MLB1983288732","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-1983288732-computador-facil-intel-core-i5-8gb-ssd-120gb-_JM#position=25&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_955480-MLB47145766982_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Fácil Intel Core I5 8gb Ssd 120gb"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_955480-MLB47145766982_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Fácil Intel Core I5 8gb Ssd 120gb"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Computador Fácil Intel Core I5 8gb Ssd 120gb","class_name":"list-view-item-figure"}}},"price":{"amount":1038,"currency_id":"BRL","original_price":1179,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Fácil Intel Core I5 8gb Ssd 120gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002F2eletro","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":100.59,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible","deal_of_the_day","best_seller_candidate"],"item_highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"image_ratio":"0.67","category_id":"MLB1649","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Crédito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":162},{"id":"MLB2603247328","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":427664221,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","eshop","mshops","messages_as_seller"],"address":{"id":1063274754,"comment":"","address_line":"","zip_code":"03526000","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"São Paulo"},"city":{"id":"BR-SP-44","name":"São Paulo"}}},"permalink":"https:\u002F\u002Fwww.mercadolivre.com.br\u002Fnotebook-multilaser-legacy-cloud-pc-135-vinho-141-intel-atom-z8350-2gb-de-ram-64gb-ssd-intel-hd-graphics-1366x768px-windows-10-home\u002Fp\u002FMLB18632909?pdp_filters=category:MLB1648#searchVariation=MLB18632909&position=5&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_913969-MLA48644020818_122021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Notebook Multilaser Legacy Cloud PC 135 vinho 14.1\", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_913969-MLA48644020818_122021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Notebook Multilaser Legacy Cloud PC 135 vinho 14.1\", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Notebook Multilaser Legacy Cloud PC 135 vinho 14.1\", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home","class_name":"list-view-item-figure"}}},"price":{"amount":1269,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB18632909","name":"Notebook Multilaser Legacy Cloud PC 135 vinho 14.1\", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"},"title":"Notebook Multilaser Legacy Cloud PC 135 vinho 14.1\", Intel Atom Z8350 2GB de RAM 64GB SSD, Intel HD Graphics 1366x768px Windows 10 Home","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":123.03,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible","product_item","best_seller_candidate"],"reviews":{"rating_average":4.1,"total":134},"image_ratio":"1.23","category_id":"MLB1652","pictures_quantity":6,"value_propositions":[],"available_quantity":2},{"id":"MLB1983288643","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-1983288643-computador-completo-facil-intel-i3-04-gb-ssd-120-gb-_JM#position=26&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_875008-MLB47230148073_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Completo Fácil Intel I3 04 Gb Ssd 120 Gb"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_875008-MLB47230148073_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Completo Fácil Intel I3 04 Gb Ssd 120 Gb"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Computador Completo Fácil Intel I3 04 Gb Ssd 120 Gb","class_name":"list-view-item-figure"}}},"price":{"amount":1522,"currency_id":"BRL","original_price":1729,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Completo Fácil Intel I3 04 Gb Ssd 120 Gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002F2eletro","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":152.15,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","deal_of_the_day"],"item_highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"image_ratio":"1.61","category_id":"MLB1649","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Crédito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":250},{"id":"MLB2614218974","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":190665974,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","mshops","credits_profile","messages_as_seller"],"address":{"id":167851878,"comment":"","address_line":"","zip_code":"13563808","country":{"id":"BR","name":"Brasil"},"city":{"id":"BR-SP-25","name":"São Carlos"}}},"permalink":"https:\u002F\u002Fwww.mercadolivre.com.br\u002Fdisco-solido-interno-kingston-sa400s37240g-240gb-preto\u002Fp\u002FMLB19035706?pdp_filters=category:MLB1648#searchVariation=MLB19035706&position=6&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_804287-MLA49587128302_042022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Disco sólido interno Kingston SA400S37\u002F240G 240GB preto"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_804287-MLA49587128302_042022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Disco sólido interno Kingston SA400S37\u002F240G 240GB preto"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Disco sólido interno Kingston SA400S37\u002F240G 240GB preto","class_name":"list-view-item-figure"}}},"price":{"amount":179.9,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB19035706","name":"Disco sólido interno Kingston SA400S37\u002F240G 240GB preto"},"title":"Disco sólido interno Kingston SA400S37\u002F240G 240GB preto","subtitles":{},"vertical":"CORE","is_ad":false,"variations":{"label":"Disponível em 2 cores"},"installments":{"amount":17.44,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","fulfillment","cart_eligible","product_item","best_seller_candidate"],"reviews":{"rating_average":4.9,"total":11121},"image_ratio":"1.43","category_id":"MLB1672","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"MAIS VENDIDO","color":"#FFFFFF"},"type":"best_seller","background":"#FF7733"},"pictures_quantity":2,"value_propositions":[],"available_quantity":14},{"id":"MLB1983278831","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-1983278831-computador-facil-intel-core-i5-8gb-ssd-240gb-_JM#position=27&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_617813-MLB47145821935_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Fácil Intel Core I5 8gb Ssd 240gb"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_617813-MLB47145821935_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Fácil Intel Core I5 8gb Ssd 240gb"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Computador Fácil Intel Core I5 8gb Ssd 240gb","class_name":"list-view-item-figure"}}},"price":{"amount":1161,"currency_id":"BRL","original_price":1319,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Fácil Intel Core I5 8gb Ssd 240gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002F2eletro","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":116.07,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"0.67","category_id":"MLB1649","pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Crédito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":157},{"id":"MLB2696339147","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":757589497,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","messages_as_seller"],"address":{"id":1171598204,"comment":"","address_line":"","zip_code":"29167650","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ1NFUmI1ZGQx","name":"Serra"}},"official_store_id":"3027","official_store_name":"Ponto Certo Eletro","official_store_text":"por Ponto Certo Eletro","official_store_verbose_text":"Vendido por Ponto Certo Eletro"},"permalink":"https:\u002F\u002Fwww.mercadolivre.com.br\u002Fnotebook-multilaser-m11w-prime-pc280-prateada-tactil-116-intel-celeron-n4020-4gb-de-ram-64gb-ssd-intel-uhd-graphics-600-1366x768px-windows-11-home\u002Fp\u002FMLB19158523?pdp_filters=category:MLB1648#searchVariation=MLB19158523&position=7&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_626936-MLA50293629492_062022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Notebook Multilaser M11W Prime PC280 prateada táctil 11.6\", Intel Celeron N4020 4GB de RAM 64GB SSD, Intel UHD Graphics 600 1366x768px Windows 11 Home"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_626936-MLA50293629492_062022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Notebook Multilaser M11W Prime PC280 prateada táctil 11.6\", Intel Celeron N4020 4GB de RAM 64GB SSD, Intel UHD Graphics 600 1366x768px Windows 11 Home"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Notebook Multilaser M11W Prime PC280 prateada táctil 11.6\", Intel Celeron N4020 4GB de RAM 64GB SSD, Intel UHD Graphics 600 1366x768px Windows 11 Home","class_name":"list-view-item-figure"}}},"price":{"amount":1332,"currency_id":"BRL","original_price":2217.99,"discount_rate":39,"discount_label":{"text":"39% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB19158523","name":"Notebook Multilaser M11W Prime PC280 prateada táctil 11.6\", Intel Celeron N4020 4GB de RAM 64GB SSD, Intel UHD Graphics 600 1366x768px Windows 11 Home"},"title":"Notebook Multilaser M11W Prime PC280 prateada táctil 11.6\", Intel Celeron N4020 4GB de RAM 64GB SSD, Intel UHD Graphics 600 1366x768px Windows 11 Home","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por Ponto Certo Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por Ponto Certo Eletro","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002Fponto-certo-eletro","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3027"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":133.25,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","product_item","best_seller_candidate"],"reviews":{"rating_average":4.8,"total":26},"image_ratio":"1.31","category_id":"MLB1652","pictures_quantity":4,"value_propositions":[],"available_quantity":22},{"id":"MLB1663773541","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":12127293,"power_seller_status":"gold","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_active_borrower","mshops","messages_as_seller"],"address":{"id":1107841544,"comment":"","address_line":"","zip_code":"21341270","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-RJ","name":"Rio de Janeiro"},"city":{"id":"BR-RJ-01","name":"Rio de Janeiro"}}},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-1663773541-pc-gamer-intel-core-i5-34ghz-8gb-ssd240gb-lol-freefire-_JM#position=28&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_629183-MLB50464838976_062022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Gamer Intel Core I5 3.4ghz 8gb Ssd240gb Lol Freefire"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_629183-MLB50464838976_062022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Gamer Intel Core I5 3.4ghz 8gb Ssd240gb Lol Freefire"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Pc Gamer Intel Core I5 3.4ghz 8gb Ssd240gb Lol Freefire","class_name":"list-view-item-figure"}}},"price":{"amount":1890,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc Gamer Intel Core I5 3.4ghz 8gb Ssd240gb Lol Freefire","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":189,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","best_seller_candidate"],"image_ratio":"1.13","category_id":"MLB1649","pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Crédito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":416},{"id":"MLB1837442511","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":459757635,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","messages_as_seller"],"address":{"id":1089134583,"comment":"","address_line":"","zip_code":"15025050","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"São Paulo"},"city":{"id":"BR-SP-28","name":"São José do Rio Preto"}}},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-1837442511-pc-computador-cpu-i5-ssd-480gb-16gb-ram-fonte-500w-_JM#position=29&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_772003-MLB50614267207_072022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Computador Cpu I5 \u002F Ssd 480gb \u002F 16gb Ram \u002F Fonte 500w"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_772003-MLB50614267207_072022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Computador Cpu I5 \u002F Ssd 480gb \u002F 16gb Ram \u002F Fonte 500w"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Pc Computador Cpu I5 \u002F Ssd 480gb \u002F 16gb Ram \u002F Fonte 500w","class_name":"list-view-item-figure"}}},"price":{"amount":1889,"currency_id":"BRL","original_price":2221.9,"discount_rate":15,"discount_label":{"text":"15% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc Computador Cpu I5 \u002F Ssd 480gb \u002F 16gb Ram \u002F Fonte 500w","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":188.86,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"0.86","category_id":"MLB1649","pictures_quantity":10,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Crédito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":272},{"id":"MLB1983279452","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-1983279452-computador-facil-intel-core-i3-10100f-8gb-ddr4-ssd-240gb-_JM#position=30&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_865725-MLB47234340005_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Fácil Intel Core I3 10100f 8gb Ddr4 Ssd 240gb"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_865725-MLB47234340005_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Fácil Intel Core I3 10100f 8gb Ddr4 Ssd 240gb"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Computador Fácil Intel Core I3 10100f 8gb Ddr4 Ssd 240gb","class_name":"list-view-item-figure"}}},"price":{"amount":1856,"currency_id":"BRL","original_price":2109,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Fácil Intel Core I3 10100f 8gb Ddr4 Ssd 240gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002F2eletro","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":185.59,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"0.67","category_id":"MLB1649","pictures_quantity":4,"rebates":[],"value_propositions":[],"available_quantity":36},{"id":"MLB2610297318","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":321947226,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","eshop","mshops","credits_profile","messages_as_seller"],"address":{"id":940594398,"comment":"","address_line":"","zip_code":"03376000","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"São Paulo"},"city":{"id":"BR-SP-44","name":"São Paulo"}}},"permalink":"https:\u002F\u002Fclick1.mercadolivre.com.br\u002Fmclics\u002Fclicks\u002Fexternal\u002FMLB\u002Fcount?a=GeV8zlag4h1%2FXCJd28LNrAS7KocOG0PQaNkymMXw3YZyKMix2Ei8ep6AFc%2B4HtPqHVJ1Se3UkRi1Rb4a4ySEMJvVUjLkVhSotB3rB%2F3AF5f9kYbST4vLiGlpw7lmDKY9Jgq2smW4wMb0LTCg5Wc2xEfdgk6WJeVLT0F95hv3pNOvlvcodukhabFHg2pEfoKKv9C%2FznRmRBxubXFkBCHUvuO5i3MafrcyxzNNeKbhvHBA26gGQPz2aQp5VQ%2FaovnOPH9TfU%2F2msgMLnmrlk3RYOwOyVONx6SrCR5pF3TC%2FmVb%2BYXzodwMEZryZjrsz%2FGXWBcEYgcUGUkwAhivy49Z32yYFlQFf4vVJBDjqZ7HZ%2BpJqYp4rptv4A7cCijl3lqqUXGfZVlPFvgiq7rRCSdDNtb9vjM7cw4PsueyX3u%2BONUVZkktJoEoFKJbe46AyQgJrkSceGNcq%2BRBlU7keoPxOKh2j19rZzx8xMFKjN%2FDNaekz%2FQVdMC3ZLJDZpgGZeCVbaxYTDccRctgJWXoOo%2B9dxfHD1G0S7TyS57iy4qBC8H02dj8NdG5LiJdjVP3RRIeeLhGE8WdoxZKaEZMkVntpEaJBrqJsoaH%2BahcsKvnXJQx4AkJwSrvrKa8BYMHt6xVPWyPQBXG9KEOT7udVG%2FRLYGc8v3XHmmdcf%2BO0rfxATWWlaf3nBdcQR%2FV0N9iSRavAp1aYws%2BOkPcpIGWL9qJtYbMdCEcuQ2wRCosVD8A14ABxSQk4D%2F947%2BaaVRxPsxKScSoe1n4%2Bsboj3d3SQ%3D%3D&rb=x","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_905103-MLB49635935018_042022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Computador Cpu Intel Core I3 Hd 1 Tb \u002F 8gb Memória Ram"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_905103-MLB49635935018_042022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Computador Cpu Intel Core I3 Hd 1 Tb \u002F 8gb Memória Ram"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Pc Computador Cpu Intel Core I3 Hd 1 Tb \u002F 8gb Memória Ram","class_name":"list-view-item-figure"}}},"price":{"amount":1377,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"}},"title":"Pc Computador Cpu Intel Core I3 Hd 1 Tb \u002F 8gb Memória Ram","subtitles":{},"vertical":"CORE","is_ad":true,"ad_label":"Patrocinado","ad_version":"v2","installments":{"amount":137.68,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","product_ad","cart_eligible"],"image_ratio":"1.03","category_id":"MLB1649","value_propositions":[],"available_quantity":4},{"id":"MLB2210259535","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\u002F\u002Fclick1.mercadolivre.com.br\u002Fmclics\u002Fclicks\u002Fexternal\u002FMLB\u002Fcount?a=YAqpLVM8Plx3fVYfKbG97aoVl4UTPeSnTJkhCB7TOWSC8UZzcEWC%2BNwEdn9bMGURPCTWN0poBzbBvAKSqyR9ZZpZDumDXP9CYxtOw%2FH8AuIQ4Ci2In%2BJa82%2BjA6%2Bguaj2AahVvTxahhXp52kNj9zoD%2BXythp8dvZgjV0u4m7Dkzl0DVJrwJYSLqx3b%2BlNjrieVd2tt1KgDoGWQM3hbyfbrir0%2FBkNuAkjhelpSNswcLCPtQgiT4znCUmIz9WPIa%2FibMAdLei0%2BSph5MrlVwrElljHL7S9ocnvawqOPnSXPktcPEa%2BhJBkk9zfjv7Mg7NWB8k5mDhWJ32fvZQD4N7An9sswGM1eCmV5R6iZekq9G2PgzgLPMLOaTTF8f3E0tGPmwAFqB%2BDDe2LBi5tKLota6FONRrq%2B5234L8UbI4jIsXbBuDYIgphUXjB2pjmkhKuxMBCmCR6dDsU2rwuLG2L1Qb%2FmSmlD635nAc36ItmfSIr8QlZjB570ROkjOFO8zzPQJzWsb7TIAVE0u%2FPxQlB9neWB0u2vcjd87XiPvWOcWSy7ZFVUZENRzCQ245EQAJThl1NsCuJOqlxV76A7e96ssT7WB81pKtPh7tq2pPuXFjjHLhVcfK5XgqH5WmDDun9tbFG2lQw7IsL6PQrBV4mapmVjefByrL3pL3pYNR4Wv00qAsMow%2Fu4XmyIyDRO8wdMjAB0RoWJWQ64or%2FWxLyAaWyHbmrxn8KK8FzZrle34zGQ0Y24bHcWgjNOSpMcDFI0VaoWiTxDU2T%2FdNcgh2&rb=x","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_824487-MLB49401202035_032022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Gamer Barato Completo Intel I5 16gb Hd 1tb Geforce 2gb"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_824487-MLB49401202035_032022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Gamer Barato Completo Intel I5 16gb Hd 1tb Geforce 2gb"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Pc Gamer Barato Completo Intel I5 16gb Hd 1tb Geforce 2gb","class_name":"list-view-item-figure"}}},"price":{"amount":3122,"currency_id":"BRL","original_price":3122.1,"discount_rate":0,"rebate_price":{"text":"em","color":"#000000"}},"title":"Pc Gamer Barato Completo Intel I5 16gb Hd 1tb Geforce 2gb","subtitles":{},"vertical":"CORE","is_ad":true,"ad_label":"Patrocinado","ad_version":"v2","official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002F2eletro","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":312.21,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","product_ad","cart_eligible"],"image_ratio":"1.46","category_id":"MLB1649","value_propositions":[],"available_quantity":39},{"id":"MLB2669020387","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":735605761,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","messages_as_seller"],"address":{"id":1170353570,"comment":"","address_line":"","zip_code":"01208001","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"São Paulo"},"city":{"id":"BR-SP-44","name":"São Paulo"}}},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-2669020387-cpu-desktop-core-2-duo-4gb-ssd-120gb-wi-fi-windows-10-_JM#position=31&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_794520-MLB50118705093_052022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Cpu Desktop Core 2 Duo \u002F 4gb \u002F Ssd 120gb \u002F Wi-fi\u002F Windows 10"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_794520-MLB50118705093_052022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Cpu Desktop Core 2 Duo \u002F 4gb \u002F Ssd 120gb \u002F Wi-fi\u002F Windows 10"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Cpu Desktop Core 2 Duo \u002F 4gb \u002F Ssd 120gb \u002F Wi-fi\u002F Windows 10","class_name":"list-view-item-figure"}}},"price":{"amount":779,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Cpu Desktop Core 2 Duo \u002F 4gb \u002F Ssd 120gb \u002F Wi-fi\u002F Windows 10","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":75.52,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible"],"image_ratio":"1.14","category_id":"MLB1649","pictures_quantity":2,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Crédito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":860},{"id":"MLB2610554493","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":23059556,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","eshop","credits_profile","messages_as_seller"],"address":{"id":162182874,"comment":"","address_line":"","zip_code":"02271000","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"São Paulo"},"city":{"id":"BR-SP-44","name":"São Paulo"}}},"permalink":"https:\u002F\u002Fwww.mercadolivre.com.br\u002Fdisco-solido-interno-kingston-suv400s37240g-240gb\u002Fp\u002FMLB6189662?pdp_filters=category:MLB1648#searchVariation=MLB6189662&position=8&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_760570-MLA40662362283_022020-V.jpg","tags":{"heigth":160,"width":160,"alt":"Disco sólido interno Kingston SUV400S37\u002F240G 240GB"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_760570-MLA40662362283_022020-W.jpg","tags":{"heigth":284,"width":284,"alt":"Disco sólido interno Kingston SUV400S37\u002F240G 240GB"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Disco sólido interno Kingston SUV400S37\u002F240G 240GB","class_name":"list-view-item-figure"}}},"price":{"amount":195.89,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB6189662","name":"Disco sólido interno Kingston SUV400S37\u002F240G 240GB"},"title":"Disco sólido interno Kingston SUV400S37\u002F240G 240GB","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":18.99,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible","product_item","best_seller_candidate"],"reviews":{"rating_average":4.9,"total":1102},"image_ratio":"1.40","category_id":"MLB1672","pictures_quantity":3,"value_propositions":[],"available_quantity":594},{"id":"MLB2199976353","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":151392870,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","eshop","mshops","messages_as_seller"],"address":{"id":1181731207,"comment":"","address_line":"","zip_code":"14730000","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"São Paulo"},"city":{"id":"QlItU1BNb250ZSBBenVsIFBhdWxpc3Rh","name":"Monte Azul Paulista"}}},"permalink":"https:\u002F\u002Fwww.mercadolivre.com.br\u002Fnotebook-multilaser-legacy-book-pc319-preta-14-intel-pentium-n3700-4gb-de-ram-64gb-hdd-intel-hd-graphics-braswell-1366x768px-windows-10-home\u002Fp\u002FMLB18941410?pdp_filters=category:MLB1648#searchVariation=MLB18941410&position=9&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_683939-MLA49170389796_022022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Notebook Multilaser Legacy Book PC319 preta 14\", Intel Pentium N3700 4GB de RAM 64GB HDD, Intel HD Graphics (Braswell) 1366x768px Windows 10 Home"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_683939-MLA49170389796_022022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Notebook Multilaser Legacy Book PC319 preta 14\", Intel Pentium N3700 4GB de RAM 64GB HDD, Intel HD Graphics (Braswell) 1366x768px Windows 10 Home"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Notebook Multilaser Legacy Book PC319 preta 14\", Intel Pentium N3700 4GB de RAM 64GB HDD, Intel HD Graphics (Braswell) 1366x768px Windows 10 Home","class_name":"list-view-item-figure"}}},"price":{"amount":2250,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB18941410","name":"Notebook Multilaser Legacy Book PC319 preta 14\", Intel Pentium N3700 4GB de RAM 64GB HDD, Intel HD Graphics (Braswell) 1366x768px Windows 10 Home"},"title":"Notebook Multilaser Legacy Book PC319 preta 14\", Intel Pentium N3700 4GB de RAM 64GB HDD, Intel HD Graphics (Braswell) 1366x768px Windows 10 Home","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":218.13,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible","product_item","best_seller_candidate"],"reviews":{"rating_average":4.5,"total":36},"image_ratio":"1.22","category_id":"MLB1652","pictures_quantity":4,"value_propositions":[],"available_quantity":1},{"id":"MLB1986322829","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":125349787,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","mshops","messages_as_seller"],"address":{"id":1057749874,"comment":"","address_line":"","zip_code":"02415002","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"São Paulo"},"city":{"id":"BR-SP-44","name":"São Paulo"}}},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-1986322829-pc-computador-cpu-intel-core-i5-ssd-240gb-8gb-memoria-ram-_JM#position=32&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_804398-MLB47170053830_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Memória Ram"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_804398-MLB47170053830_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Memória Ram"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Memória Ram","class_name":"list-view-item-figure"}}},"price":{"amount":1298,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8gb Memória Ram","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":129.8,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","best_seller_candidate"],"image_ratio":"0.92","category_id":"MLB1649","pictures_quantity":1,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Crédito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":777},{"id":"MLB1680063928","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":459757635,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","messages_as_seller"],"address":{"id":1089134583,"comment":"","address_line":"","zip_code":"15025050","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"São Paulo"},"city":{"id":"BR-SP-28","name":"São José do Rio Preto"}}},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-1680063928-pc-computador-cpu-core-i5-3470-ssd-240gb-16gb-memoria-ram-_JM#position=33&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_670003-MLB50614039338_072022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Computador Cpu Core I5 3470 Ssd 240gb + 16gb Memória Ram"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_670003-MLB50614039338_072022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Computador Cpu Core I5 3470 Ssd 240gb + 16gb Memória Ram"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Pc Computador Cpu Core I5 3470 Ssd 240gb + 16gb Memória Ram","class_name":"list-view-item-figure"}}},"price":{"amount":1598,"currency_id":"BRL","original_price":2219.9,"discount_rate":28,"discount_label":{"text":"28% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc Computador Cpu Core I5 3470 Ssd 240gb + 16gb Memória Ram","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":159.83,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","best_seller_candidate"],"image_ratio":"0.86","category_id":"MLB1649","pictures_quantity":10,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Crédito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":194},{"id":"MLB1899027328","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":155871484,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","eshop","mshops","credits_profile","messages_as_seller"],"address":{"id":170298963,"comment":"","address_line":"","zip_code":"01039000","country":{"id":"BR","name":"Brasil"},"city":{"id":"BR-SP-44","name":"São Paulo"}}},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-1899027328-cpu-pc-torre-core-i5-3470-320ghz-8gb-ssd-240gb-com-nf-_JM#position=34&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_869749-MLB47473329590_092021-V.jpg","tags":{"heigth":160,"width":160,"alt":" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_869749-MLB47473329590_092021-W.jpg","tags":{"heigth":284,"width":284,"alt":" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf","class_name":"list-view-item-figure"}}},"price":{"amount":1370,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":132.82,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","fulfillment","cart_eligible","best_seller_candidate"],"image_ratio":"1.07","category_id":"MLB1649","pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Crédito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":6},{"id":"MLB1506134141","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":306628733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","eshop","mshops","credits_profile","messages_as_seller"],"address":{"id":1052266839,"comment":"","address_line":"","zip_code":"09715350","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"São Paulo"},"city":{"id":"BR-SP-39","name":"São Bernardo do Campo"}}},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-1506134141-cpu-desktop-dell-core-i5-32ghz-8gb-ssd-240gb-win10-_JM#position=37&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_912432-MLB49974695962_052022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Cpu Desktop Dell Core-i5 3.2ghz 8gb Ssd 240gb Win10"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_912432-MLB49974695962_052022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Cpu Desktop Dell Core-i5 3.2ghz 8gb Ssd 240gb Win10"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Cpu Desktop Dell Core-i5 3.2ghz 8gb Ssd 240gb Win10","class_name":"list-view-item-figure"}}},"price":{"amount":1812,"currency_id":"BRL","original_price":2059,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Cpu Desktop Dell Core-i5 3.2ghz 8gb Ssd 240gb Win10","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":175.67,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible","best_seller_candidate"],"image_ratio":"0.77","category_id":"MLB1649","pictures_quantity":5,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Crédito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":60},{"id":"MLB1983288676","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-1983288676-computador-facil-intel-core-i3-8gb-ssd-240gb-_JM#position=38&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_699910-MLB47145668957_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Fácil Intel Core I3 8gb Ssd 240gb"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_699910-MLB47145668957_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Fácil Intel Core I3 8gb Ssd 240gb"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Computador Fácil Intel Core I3 8gb Ssd 240gb","class_name":"list-view-item-figure"}}},"price":{"amount":1038,"currency_id":"BRL","original_price":1180,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Fácil Intel Core I3 8gb Ssd 240gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002F2eletro","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":103.84,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","deal_of_the_day"],"item_highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"image_ratio":"0.67","category_id":"MLB1649","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Crédito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":128},{"id":"MLB1983279518","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-1983279518-computador-completo-facil-intel-i5-08-gb-ddr3-ssd-120-gb-_JM#position=39&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_932170-MLB47230342741_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Completo Fácil Intel I5 08 Gb Ddr3 Ssd 120 Gb"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_932170-MLB47230342741_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Completo Fácil Intel I5 08 Gb Ddr3 Ssd 120 Gb"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Computador Completo Fácil Intel I5 08 Gb Ddr3 Ssd 120 Gb","class_name":"list-view-item-figure"}}},"price":{"amount":1768,"currency_id":"BRL","original_price":2009,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Completo Fácil Intel I5 08 Gb Ddr3 Ssd 120 Gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002F2eletro","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":176.79,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"1.71","category_id":"MLB1649","pictures_quantity":4,"rebates":[],"value_propositions":[],"available_quantity":148},{"id":"MLB2022879801","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-2022879801-pc-gamer-completo-facil-intel-i5-3-16gb-ssd-240gb-gt420-4gb-_JM#position=40&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_749265-MLB50697629795_072022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Gamer Completo Fácil Intel I5 3ª 16gb Ssd 240gb Gt420 4gb"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_749265-MLB50697629795_072022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Gamer Completo Fácil Intel I5 3ª 16gb Ssd 240gb Gt420 4gb"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Pc Gamer Completo Fácil Intel I5 3ª 16gb Ssd 240gb Gt420 4gb","class_name":"list-view-item-figure"}}},"price":{"amount":3106,"currency_id":"BRL","original_price":3529,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc Gamer Completo Fácil Intel I5 3ª 16gb Ssd 240gb Gt420 4gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002F2eletro","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":310.55,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"1.39","category_id":"MLB1649","pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Crédito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":46},{"id":"MLB2096063553","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-2096063553-computador-facil-intel-core-i3-4gb-ssd-120gb-_JM#position=41&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_766782-MLB47145738530_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Fácil Intel Core I3 4gb Ssd 120gb"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_766782-MLB47145738530_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Fácil Intel Core I3 4gb Ssd 120gb"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Computador Fácil Intel Core I3 4gb Ssd 120gb","class_name":"list-view-item-figure"}}},"price":{"amount":826.32,"currency_id":"BRL","original_price":939,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Fácil Intel Core I3 4gb Ssd 120gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002F2eletro","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":80.11,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible"],"image_ratio":"0.67","category_id":"MLB1649","pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Crédito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":156},{"id":"MLB2161556728","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":480575953,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","eshop","mshops","credits_profile","messages_as_seller"],"address":{"id":1198104981,"comment":"","address_line":"","zip_code":"13330210","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"São Paulo"},"city":{"id":"BR-SP-10","name":"Indaiatuba"}}},"permalink":"https:\u002F\u002Fclick1.mercadolivre.com.br\u002Fmclics\u002Fclicks\u002Fexternal\u002FMLB\u002Fcount?a=kjBFWOIfeQlMHdWANCwPV%2BR1xYh%2BOBx2sEwU%2FPiwfjPaySRx%2Bd97nHHukWqK6ZZVlZAt76SvwdgLdSKS37kCcD9Rif%2BJ8p6lYxtJkZ3kfwvX%2BtX0zRcRVkH2zJlBAjI%2Bgic9u%2Fff%2B04P1V1EFkmpujOPy5RyaicJnabe0%2B765wSt7hr6K8tnY1wcfX6RpRZjQpvo94VVFeoQNK3zoQHc6y38TPD3AiVUcpCvDYDf2AJcZxRjHBuH7Y%2B7QhmjTDisSZVtT%2F15wrLIps19o3t8qwf%2BbGWSO7pWrXtgoFMmAGFepHzuNEpRtQRAjuOvEktz6ut%2FzQnvYmaMsOcZsdicjDvdwzuLxW28hanyb%2FPz8WpAreKkbiPb0s1bIt3a9wub%2BqZ2DpqbQfA3mH2Ifgv6lXuJrm%2BSj8L97nCItYy2t62rfHke3N0j9ThXFghPcDAgAvAQDlSfHcRLJJawRR6kG69Lt3meA%2B5macZX4aHEueSTCCi46PlBAft4FCDTaj3uQAFd6k130pVwk%2FbHO7l4x1Ymmnra2ijgVx%2BgsSSb2y2M7mQaaQJ18%2B6P63JXo6IiL8k508Oi8qwstIXdPUEX5XpQ9Bi8BitNnEHp7%2FuVtjTrWPPOCjB2ZgKOvgdPLAtsB8mNvWZXT94q0Wdqe1FXjsq%2FHG99hGJOXP9XipPaEYFe0Ic01OUfgETIat8J%2Be4YE1PO5Fqc3gSzOUuNTUZh8LfR2NZvcthmosjrleeHH%2BYhNPCMjUgOkADduLf2Op4V5e1%2F7LDx%2BbjTAVH3Pw%3D%3D&rb=x","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_882634-MLB48986961738_012022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Ssd Kingston Q500 Disco Sólido Interno 240gb Versão 2023"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_882634-MLB48986961738_012022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Ssd Kingston Q500 Disco Sólido Interno 240gb Versão 2023"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Ssd Kingston Q500 Disco Sólido Interno 240gb Versão 2023","class_name":"list-view-item-figure"}}},"price":{"amount":229.9,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"}},"title":"Ssd Kingston Q500 Disco Sólido Interno 240gb Versão 2023","subtitles":{},"vertical":"CORE","is_ad":true,"ad_label":"Patrocinado","ad_version":"v2","installments":{"amount":22.29,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","product_ad","cart_eligible"],"image_ratio":"0.74","category_id":"MLB1672","value_propositions":[],"available_quantity":532},{"id":"MLB1983287147","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\u002F\u002Fclick1.mercadolivre.com.br\u002Fmclics\u002Fclicks\u002Fexternal\u002FMLB\u002Fcount?a=582f%2FoYl1X%2BFutuD2yRC5H4qq1VPXHnAzz8eV4XElq4C8oxbgVOHEV9wmRut9klpXaYwRDFfj0x0cPCWDs%2Fu8xHVXqq4XkVmQHCehlHZTGARsw1lVwPBFAw1O9PB5W0p873uSjnfD5xm%2Ft9yWd%2BWEpPFZ1jkkqLYiLr3y6g%2Fv6CyhpsuMvWIoDjELNcnU81HlAGPyuoyj95yDHbc1eqCBaJ%2FHo5Wd%2F6RcELjkKI85H0M%2FJvokxa5gLoW%2BRPTW4SJ7SeZAWhV54oE51q2tr7UvIyzM%2FTxwCmmSGXbxNaenZESmxXjvRXd2Uwczlg4FjwdafTwCqF0ihSPPu%2Fscx61RL0BUCiFUvcf03gHkR8MKZfCt5dHg%2FalxH4eA9DJFB5c0q55QvCbBqyGbNjFyA3l6MaKiUtgu73swtd%2F1uNbN%2BU5IZPjR6hw2G5OQOBDzItdZgnNOhJJXwdzWZwO2fS%2Bbd2PufyOn%2Bay6Nw53NfTXN%2FHvgINyaIr%2BeqwHqOk3lx2MnanZDs%2Blx%2FKoQQSflDy4xCo%2BCOTsmS2xwHm4USuFa3iYGyVXnAXsWG7BKQCxI3GTh%2BxCuwXyH%2BPjUDclCq%2B2bwn4y7wXg6fxJtcJCoQOL7a5ZTPAKSj45k6eVpji6ItiWNxAMbCd%2Bb%2BIPw1CoTyWSVWOzGBRh%2FdN7Y4ZEmJKlKM%2FO9rmuRxBdS%2Belq6oyQqGWQV7WwKDc6NLxAle3WzlfWDrBHV1Wua8Y7NbTTAgcEE5ly%2FVJCUypbuZJB%2BirAonJD8tGImHJiIuoEaYi99&rb=x","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_786420-MLB50697456897_072022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Gamer Intel Core I5 3ª Geração 16gb Gt 420 4gb Ssd 240gb"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_786420-MLB50697456897_072022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Gamer Intel Core I5 3ª Geração 16gb Gt 420 4gb Ssd 240gb"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Pc Gamer Intel Core I5 3ª Geração 16gb Gt 420 4gb Ssd 240gb","class_name":"list-view-item-figure"}}},"price":{"amount":2366,"currency_id":"BRL","original_price":2629,"discount_rate":10,"discount_label":{"text":"10% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"}},"title":"Pc Gamer Intel Core I5 3ª Geração 16gb Gt 420 4gb Ssd 240gb","subtitles":{},"vertical":"CORE","is_ad":true,"ad_label":"Patrocinado","ad_version":"v2","official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002F2eletro","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":236.61,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","product_ad","cart_eligible"],"image_ratio":"0.72","category_id":"MLB1649","value_propositions":[],"available_quantity":50},{"id":"MLB2103940157","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":731415204,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","mshops","credits_profile","messages_as_seller"],"address":{"id":1188611289,"comment":"","address_line":"","zip_code":"06803000","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"São Paulo"},"city":{"id":"QlItU1BFbWJ1IGRhcyBBcnRlcw","name":"Embu das Artes"}}},"permalink":"https:\u002F\u002Fwww.mercadolivre.com.br\u002Fnotebook-multilaser-legacy-cloud-pc131-gray-14-intel-atom-x5-z8350-2gb-de-ram-32gb-ssd-1366x768px-windows-10-home\u002Fp\u002FMLB17739841?pdp_filters=category:MLB1648#searchVariation=MLB17739841&position=10&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_663420-MLA45638372671_042021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Notebook Multilaser Legacy Cloud PC131 gray 14\", Intel Atom X5-Z8350 2GB de RAM 32GB SSD 1366x768px Windows 10 Home"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_663420-MLA45638372671_042021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Notebook Multilaser Legacy Cloud PC131 gray 14\", Intel Atom X5-Z8350 2GB de RAM 32GB SSD 1366x768px Windows 10 Home"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Notebook Multilaser Legacy Cloud PC131 gray 14\", Intel Atom X5-Z8350 2GB de RAM 32GB SSD 1366x768px Windows 10 Home","class_name":"list-view-item-figure"}}},"price":{"amount":1324,"currency_id":"BRL","original_price":1650,"discount_rate":19,"discount_label":{"text":"19% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB17739841","name":"Notebook Multilaser Legacy Cloud PC131 gray 14\", Intel Atom X5-Z8350 2GB de RAM 32GB SSD 1366x768px Windows 10 Home"},"title":"Notebook Multilaser Legacy Cloud PC131 gray 14\", Intel Atom X5-Z8350 2GB de RAM 32GB SSD 1366x768px Windows 10 Home","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":132.4,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","product_item","best_seller_candidate"],"reviews":{"rating_average":3.8,"total":158},"image_ratio":"1.30","category_id":"MLB1652","pictures_quantity":7,"value_propositions":[],"available_quantity":1},{"id":"MLB2724080796","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":277842919,"power_seller_status":"gold","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":311310120,"comment":"","address_line":"","zip_code":"18087170","country":{"id":"BR","name":"Brasil"},"city":{"id":"BR-SP-29","name":"Sorocaba"}},"official_store_id":"1367","official_store_name":"SincPlace","official_store_text":"por SincPlace","official_store_verbose_text":"Vendido por SincPlace"},"permalink":"https:\u002F\u002Fwww.mercadolivre.com.br\u002Fnotebook-compaq-presario-cq-25-gray-141-intel-pentium-n3700-4gb-de-ram-120gb-ssd-intel-hd-graphics-1366x768px-windows-10-home\u002Fp\u002FMLB17966310?pdp_filters=category:MLB1648#searchVariation=MLB17966310&position=13&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_686771-MLA48742378207_012022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Notebook Compaq Presario CQ-25 gray 14.1\", Intel Pentium N3700 4GB de RAM 120GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_686771-MLA48742378207_012022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Notebook Compaq Presario CQ-25 gray 14.1\", Intel Pentium N3700 4GB de RAM 120GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Notebook Compaq Presario CQ-25 gray 14.1\", Intel Pentium N3700 4GB de RAM 120GB SSD, Intel HD Graphics 1366x768px Windows 10 Home","class_name":"list-view-item-figure"}}},"price":{"amount":1979,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB17966310","name":"Notebook Compaq Presario CQ-25 gray 14.1\", Intel Pentium N3700 4GB de RAM 120GB SSD, Intel HD Graphics 1366x768px Windows 10 Home"},"title":"Notebook Compaq Presario CQ-25 gray 14.1\", Intel Pentium N3700 4GB de RAM 120GB SSD, Intel HD Graphics 1366x768px Windows 10 Home","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por SincPlace","color":"GRAY"},"verbose_text":{"text":"Vendido por SincPlace","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002Fsincplace","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"1367"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":197.9,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","product_item"],"reviews":{"rating_average":4,"total":61},"image_ratio":"1.38","category_id":"MLB1652","pictures_quantity":3,"value_propositions":[],"available_quantity":22},{"id":"MLB1983296789","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-1983296789-computador-facil-completo-intel-core-i5-8gb-hd-1-tb-_JM#position=42&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_940955-MLB47230441512_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Fácil Completo Intel Core I5 8gb Hd 1 Tb"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_940955-MLB47230441512_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Fácil Completo Intel Core I5 8gb Hd 1 Tb"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Computador Fácil Completo Intel Core I5 8gb Hd 1 Tb","class_name":"list-view-item-figure"}}},"price":{"amount":1953,"currency_id":"BRL","original_price":2219,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Fácil Completo Intel Core I5 8gb Hd 1 Tb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002F2eletro","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":195.27,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","deal_of_the_day"],"item_highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"image_ratio":"1.71","category_id":"MLB1649","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Crédito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":150},{"id":"MLB2618767197","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":735605761,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","messages_as_seller"],"address":{"id":1170353570,"comment":"","address_line":"","zip_code":"01208001","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"São Paulo"},"city":{"id":"BR-SP-44","name":"São Paulo"}}},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-2618767197-cpu-desktop-core-i3-ssd-240gb-4gb-memoria-wi-fi-win10-_JM#position=43&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_638057-MLB49747629097_042022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Cpu Desktop Core I3 \u002F Ssd 240gb \u002F 4gb Memória \u002F Wi-fi \u002Fwin10"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_638057-MLB49747629097_042022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Cpu Desktop Core I3 \u002F Ssd 240gb \u002F 4gb Memória \u002F Wi-fi \u002Fwin10"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Cpu Desktop Core I3 \u002F Ssd 240gb \u002F 4gb Memória \u002F Wi-fi \u002Fwin10","class_name":"list-view-item-figure"}}},"price":{"amount":1012,"currency_id":"BRL","original_price":1149.99,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Cpu Desktop Core I3 \u002F Ssd 240gb \u002F 4gb Memória \u002F Wi-fi \u002Fwin10","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":101.2,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"1.01","category_id":"MLB1649","pictures_quantity":2,"rebates":[],"value_propositions":[],"available_quantity":859},{"id":"MLB2145104504","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":564615359,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","eshop","mshops","large_seller","credits_profile","messages_as_seller"],"address":{"id":1101840087,"comment":"","address_line":"","zip_code":"04571900","country":{"id":"BR","name":"Brasil"},"city":{"id":"BR-SP-44","name":"São Paulo"}},"official_store_id":"2972","official_store_name":"VIKING","official_store_text":"por VIKING","official_store_verbose_text":"Vendido por VIKING"},"permalink":"https:\u002F\u002Fwww.mercadolivre.com.br\u002Fmonitor-pctop-mlp170hdmi-led-17-preto-100v240v\u002Fp\u002FMLB18459542?pdp_filters=category:MLB1648#searchVariation=MLB18459542&position=14&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_734440-MLA47873401457_102021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Monitor Pctop MLP170HDMI led 17 \" preto 100V\u002F240V"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_734440-MLA47873401457_102021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Monitor Pctop MLP170HDMI led 17 \" preto 100V\u002F240V"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Monitor Pctop MLP170HDMI led 17 \" preto 100V\u002F240V","class_name":"list-view-item-figure"}}},"price":{"amount":394,"currency_id":"BRL","original_price":579,"discount_rate":31,"discount_label":{"text":"31% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB18459542","name":"Monitor Pctop MLP170HDMI led 17 \" preto 100V\u002F240V"},"title":"Monitor Pctop MLP170HDMI led 17 \" preto 100V\u002F240V","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por VIKING","color":"GRAY"},"verbose_text":{"text":"Vendido por VIKING","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002Fviking","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"2972"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":38.2,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","fulfillment","cart_eligible","product_item","best_seller_candidate"],"reviews":{"rating_average":4,"total":649},"image_ratio":"1.26","category_id":"MLB99245","pictures_quantity":2,"value_propositions":[],"available_quantity":2813},{"id":"MLB2626699161","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":173063257,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","eshop","mshops","messages_as_seller"],"address":{"id":1069051997,"comment":"","address_line":"","zip_code":"88708708","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ1RVQjk1ODEw","name":"Tubarão"}},"official_store_id":"1587","official_store_name":"Imperiums","official_store_text":"por Imperiums","official_store_verbose_text":"Vendido por Imperiums"},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-2626699161-pc-gamer-completo-i5-16gb-1tb-monitor-kit-gamer-full-hd-_JM#position=44&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_637939-MLB49359922906_032022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Gamer Completo I5 16gb 1tb Monitor + Kit Gamer Full Hd"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_637939-MLB49359922906_032022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Gamer Completo I5 16gb 1tb Monitor + Kit Gamer Full Hd"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Pc Gamer Completo I5 16gb 1tb Monitor + Kit Gamer Full Hd","class_name":"list-view-item-figure"}}},"price":{"amount":2507,"currency_id":"BRL","original_price":2849,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc Gamer Completo I5 16gb 1tb Monitor + Kit Gamer Full Hd","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por Imperiums","color":"GRAY"},"verbose_text":{"text":"Vendido por Imperiums","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002Fimperiums","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"1587"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":243.07,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible"],"image_ratio":"1.25","category_id":"MLB1649","pictures_quantity":2,"rebates":[],"value_propositions":[],"available_quantity":156},{"id":"MLB1983286920","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-1983286920-computador-completo-facil-intel-core-i5-08gb-ddr3-ssd-480-gb-_JM#position=45&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_633631-MLB47230376736_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Completo Fácil Intel Core I5 08gb Ddr3 Ssd 480 Gb"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_633631-MLB47230376736_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Completo Fácil Intel Core I5 08gb Ddr3 Ssd 480 Gb"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Computador Completo Fácil Intel Core I5 08gb Ddr3 Ssd 480 Gb","class_name":"list-view-item-figure"}}},"price":{"amount":1979,"currency_id":"BRL","original_price":2249,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Completo Fácil Intel Core I5 08gb Ddr3 Ssd 480 Gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002F2eletro","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":197.91,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","deal_of_the_day"],"item_highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"image_ratio":"1.71","category_id":"MLB1649","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Crédito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":151},{"id":"MLB1983288815","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-1983288815-pc-completo-facil-intel-i5-08gb-ssd-240gb-monitor-led-15-_JM#position=46&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_661140-MLB47230543122_082021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Completo Fácil Intel I5 08gb Ssd 240gb + Monitor Led 15''"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_661140-MLB47230543122_082021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Completo Fácil Intel I5 08gb Ssd 240gb + Monitor Led 15''"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Pc Completo Fácil Intel I5 08gb Ssd 240gb + Monitor Led 15''","class_name":"list-view-item-figure"}}},"price":{"amount":1803,"currency_id":"BRL","original_price":2049,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc Completo Fácil Intel I5 08gb Ssd 240gb + Monitor Led 15''","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002F2eletro","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":180.31,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","deal_of_the_day"],"item_highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"image_ratio":"1.71","category_id":"MLB1649","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"pictures_quantity":4,"rebates":[],"value_propositions":[],"available_quantity":148},{"id":"MLB1786478708","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":298832663,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","mshops","messages_as_seller"],"address":{"id":618250284,"comment":"","address_line":"","zip_code":"01040000","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"São Paulo"},"city":{"id":"BR-SP-44","name":"São Paulo"}}},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-1786478708-computador-cpu-intel-i3-4gb-ssd-120gb-hdmi-pronta-entrega-_JM#position=47&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_783932-MLB43487722056_092020-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Cpu Intel I3 4gb Ssd 120gb Hdmi Pronta Entrega"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_783932-MLB43487722056_092020-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Cpu Intel I3 4gb Ssd 120gb Hdmi Pronta Entrega"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Computador Cpu Intel I3 4gb Ssd 120gb Hdmi Pronta Entrega","class_name":"list-view-item-figure"}}},"price":{"amount":1038,"currency_id":"BRL","original_price":1180,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Cpu Intel I3 4gb Ssd 120gb Hdmi Pronta Entrega","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":103.84,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"0.69","category_id":"MLB1649","pictures_quantity":2,"rebates":[],"value_propositions":[],"available_quantity":122},{"id":"MLB2618802287","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":735605761,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","messages_as_seller"],"address":{"id":1170353570,"comment":"","address_line":"","zip_code":"01208001","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"São Paulo"},"city":{"id":"BR-SP-44","name":"São Paulo"}}},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-2618802287-cpu-desktop-core-i5-ssd-120gb-4gb-memoria-wi-fi-win10-_JM#position=48&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_836376-MLB49747627011_042022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Cpu Desktop Core I5 \u002F Ssd 120gb \u002F 4gb Memória \u002F Wi-fi \u002Fwin10"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_836376-MLB49747627011_042022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Cpu Desktop Core I5 \u002F Ssd 120gb \u002F 4gb Memória \u002F Wi-fi \u002Fwin10"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Cpu Desktop Core I5 \u002F Ssd 120gb \u002F 4gb Memória \u002F Wi-fi \u002Fwin10","class_name":"list-view-item-figure"}}},"price":{"amount":1012,"currency_id":"BRL","original_price":1149.99,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Cpu Desktop Core I5 \u002F Ssd 120gb \u002F 4gb Memória \u002F Wi-fi \u002Fwin10","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":101.2,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"1.01","category_id":"MLB1649","pictures_quantity":2,"rebates":[],"value_propositions":[],"available_quantity":866},{"id":"MLB2044748327","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":233360930,"car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","messages_as_seller"],"address":{"id":1128839669,"comment":"","address_line":"","zip_code":"40296520","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-BA","name":"Bahia"},"city":{"id":"TUxCQ1NBTDg4YjQ5","name":"Salvador"}}},"permalink":"https:\u002F\u002Fwww.mercadolivre.com.br\u002Fdisco-solido-interno-kingston-sa400s37480g-480gb-preto\u002Fp\u002FMLB17978326?pdp_filters=category:MLB1648#searchVariation=MLB17978326&position=15&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_751939-MLA46221843872_052021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Disco sólido interno Kingston SA400S37\u002F480G 480GB preto"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_751939-MLA46221843872_052021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Disco sólido interno Kingston SA400S37\u002F480G 480GB preto"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Disco sólido interno Kingston SA400S37\u002F480G 480GB preto","class_name":"list-view-item-figure"}}},"price":{"amount":273,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB17978326","name":"Disco sólido interno Kingston SA400S37\u002F480G 480GB preto"},"title":"Disco sólido interno Kingston SA400S37\u002F480G 480GB preto","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":26.47,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible","product_item","best_seller_candidate"],"reviews":{"rating_average":4.9,"total":5776},"image_ratio":"1.43","category_id":"MLB1672","pictures_quantity":4,"value_propositions":[],"available_quantity":6},{"id":"MLB1885917902","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":463164252,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","messages_as_seller"],"address":{"id":1171942178,"comment":"","address_line":"","zip_code":"15025050","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"São Paulo"},"city":{"id":"BR-SP-28","name":"São José do Rio Preto"}}},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-1885917902-pc-computador-cpu-intel-core-i3-ssd-240gb-8gb-memoria-ram-_JM#position=49&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_993555-MLB50683816791_072022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Computador Cpu Intel Core I3 Ssd 240gb \u002F 8gb Memória Ram"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_993555-MLB50683816791_072022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Computador Cpu Intel Core I3 Ssd 240gb \u002F 8gb Memória Ram"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Pc Computador Cpu Intel Core I3 Ssd 240gb \u002F 8gb Memória Ram","class_name":"list-view-item-figure"}}},"price":{"amount":1183,"currency_id":"BRL","original_price":1666.9,"discount_rate":29,"discount_label":{"text":"29% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc Computador Cpu Intel Core I3 Ssd 240gb \u002F 8gb Memória Ram","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":118.35,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"0.69","category_id":"MLB1649","pictures_quantity":10,"rebates":[],"value_propositions":[],"available_quantity":365},{"id":"MLB2222645583","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":404143670,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","mshops","credits_profile","messages_as_seller"],"address":{"id":1211353959,"comment":"","address_line":"","zip_code":"33105496","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-MG","name":"Minas Gerais"},"city":{"id":"TUxCQ1NBTmIzZTAz","name":"Santa Luzia"}}},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-2222645583-computador-desktop-intel-core-i3-293-ghz-4gb-ssd-120gb-hdmi-_JM#position=50&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_998384-MLB49523568301_032022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Desktop Intel Core I3 2.93 Ghz 4gb Ssd 120gb Hdmi"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_998384-MLB49523568301_032022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Desktop Intel Core I3 2.93 Ghz 4gb Ssd 120gb Hdmi"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Computador Desktop Intel Core I3 2.93 Ghz 4gb Ssd 120gb Hdmi","class_name":"list-view-item-figure"}}},"price":{"amount":989,"currency_id":"BRL","discount_rate":0,"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Desktop Intel Core I3 2.93 Ghz 4gb Ssd 120gb Hdmi","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":95.88,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible"],"image_ratio":"1.02","category_id":"MLB1649","pictures_quantity":8,"rebates":[],"value_propositions":[],"available_quantity":175},{"id":"MLB1615760527","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":298832663,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","credits_profile","mshops","messages_as_seller"],"address":{"id":618250284,"comment":"","address_line":"","zip_code":"01040000","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"São Paulo"},"city":{"id":"BR-SP-44","name":"São Paulo"}}},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-1615760527-cpu-pc-torre-core-i5-3470-320ghz-8gb-ssd-240gb-com-nf-_JM#position=51&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_601489-MLB42991126172_082020-V.jpg","tags":{"heigth":160,"width":160,"alt":" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_601489-MLB42991126172_082020-W.jpg","tags":{"heigth":284,"width":284,"alt":" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf","class_name":"list-view-item-figure"}}},"price":{"amount":1188,"currency_id":"BRL","original_price":1350,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":" Cpu Pc Torre Core I5 3470 3.20ghz 8gb Ssd 240gb Com Nf","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":118.8,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"1.06","category_id":"MLB1649","pictures_quantity":3,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Crédito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":125},{"id":"MLB2025342637","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-2025342637-computador-completo-facil-intel-core-i3-8gb-ssd-120gb-_JM#position=52&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_627010-MLB47542956152_092021-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Completo Fácil Intel Core I3 8gb Ssd 120gb "}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_627010-MLB47542956152_092021-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Completo Fácil Intel Core I3 8gb Ssd 120gb "}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Computador Completo Fácil Intel Core I3 8gb Ssd 120gb ","class_name":"list-view-item-figure"}}},"price":{"amount":1636,"currency_id":"BRL","original_price":1859,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Completo Fácil Intel Core I3 8gb Ssd 120gb ","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002F2eletro","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":163.59,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible","deal_of_the_day"],"item_highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"image_ratio":"1.61","category_id":"MLB1649","highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"shipping_guaranteed_label":{"text":"OFERTA DO DIA","color":"#FFFFFF"},"type":"deal_of_the_day","background":"#3483FA"},"pictures_quantity":4,"rebates":[{"highlight":{"id":"DEFAULT_HIGHLIGHT","label":{"text":"5% OFF com Mercado Crédito","color":"#3483FA"},"type":"pricing_rebates","background":"#D9E7FA"}}],"value_propositions":[],"available_quantity":149},{"id":"MLB2032160315","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":418167165,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["normal","mshops","credits_profile","messages_as_seller"],"address":{"id":1178810727,"comment":"","address_line":"","zip_code":"05089000","country":{"id":"BR","name":"Brasil"},"state":{"id":"BR-SP","name":"São Paulo"},"city":{"id":"BR-SP-44","name":"São Paulo"}}},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-2032160315-computador-pc-completo-i5-intel-8gb-ssd-240gb-wi-fi-nfe-_JM#position=53&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_631357-MLB48790718761_012022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Computador Pc Completo I5 Intel 8gb Ssd 240gb Wi-fi + Nfe"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_631357-MLB48790718761_012022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Computador Pc Completo I5 Intel 8gb Ssd 240gb Wi-fi + Nfe"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Computador Pc Completo I5 Intel 8gb Ssd 240gb Wi-fi + Nfe","class_name":"list-view-item-figure"}}},"price":{"amount":2103,"currency_id":"BRL","original_price":2390,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Computador Pc Completo I5 Intel 8gb Ssd 240gb Wi-fi + Nfe","subtitles":{},"vertical":"CORE","is_ad":false,"installments":{"amount":203.91,"currency_id":"BRL","text":"12x {price}","color":"BLACK"},"tags":["free_shipping","cart_eligible","best_seller_candidate"],"image_ratio":"1.18","category_id":"MLB1649","pictures_quantity":7,"rebates":[],"value_propositions":[],"available_quantity":17},{"id":"MLB2625920831","bookmarked":false,"discount_source":"default","shipping":{"label":{"text":"Frete grátis"}},"seller_info":{"id":743518733,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","mshops","credits_profile","messages_as_seller"],"address":{"id":1175409251,"comment":"","address_line":"","zip_code":"31230040","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0JFTGU0ODdm","name":"Belo Horizonte"}},"official_store_id":"3807","official_store_name":"2Eletro","official_store_text":"por 2Eletro","official_store_verbose_text":"Vendido por 2Eletro"},"permalink":"https:\u002F\u002Fproduto.mercadolivre.com.br\u002FMLB-2625920831-pc-facil-intel-pentium-g6400-10-geraco-8gb-ddr4-ssd-240gb-_JM#position=54&search_layout=grid&type=item&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_969909-MLB49794162322_042022-V.jpg","tags":{"heigth":160,"width":160,"alt":"Pc Fácil Intel Pentium G6400 10ª Geração 8gb Ddr4 Ssd 240gb"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_969909-MLB49794162322_042022-W.jpg","tags":{"heigth":284,"width":284,"alt":"Pc Fácil Intel Pentium G6400 10ª Geração 8gb Ddr4 Ssd 240gb"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Pc Fácil Intel Pentium G6400 10ª Geração 8gb Ddr4 Ssd 240gb","class_name":"list-view-item-figure"}}},"price":{"amount":1539,"currency_id":"BRL","original_price":1749,"discount_rate":12,"discount_label":{"text":"12% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"},"billing":false},"title":"Pc Fácil Intel Pentium G6400 10ª Geração 8gb Ddr4 Ssd 240gb","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por 2Eletro","color":"GRAY"},"verbose_text":{"text":"Vendido por 2Eletro","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002F2eletro","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"3807"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":153.91,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["free_shipping","interest_free","cart_eligible"],"image_ratio":"0.67","category_id":"MLB1649","pictures_quantity":4,"rebates":[],"value_propositions":[],"available_quantity":147},{"id":"MLB2685001475","bookmarked":false,"discount_source":"default","seller_info":{"id":412008939,"power_seller_status":"platinum","car_dealer":false,"real_estate_agency":false,"tags":["brand","large_seller","credits_profile","payment_in_flow","messages_as_seller"],"address":{"id":1038257143,"comment":"","address_line":"","zip_code":"37640000","country":{"id":"BR","name":"Brasil"},"city":{"id":"TUxCQ0VYVDdjZTBi","name":"Extrema"}},"official_store_id":"2138","official_store_name":"Loja MMPLACE","official_store_text":"por Loja MMPLACE","official_store_verbose_text":"Vendido por Loja MMPLACE"},"permalink":"https:\u002F\u002Fwww.mercadolivre.com.br\u002Fnotebook-multilaser-legacy-air-pc222-prata-133-intel-celeron-n3350-4gb-de-ram-64gb-ssd-intel-hd-graphics-500-1920x1080px-windows-10-home\u002Fp\u002FMLB15297208?pdp_filters=category:MLB1648#searchVariation=MLB15297208&position=16&search_layout=grid&type=product&tracking_id=fdbc07bf-dc75-448b-bca8-3904faaf0d2a","pictures":{"stack":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_985174-MLA40583676380_012020-V.jpg","tags":{"heigth":160,"width":160,"alt":"Notebook Multilaser Legacy Air PC222 prata 13.3\", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1920x1080px Windows 10 Home"}},"grid":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002FD_NQ_NP_985174-MLA40583676380_012020-W.jpg","tags":{"heigth":284,"width":284,"alt":"Notebook Multilaser Legacy Air PC222 prata 13.3\", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1920x1080px Windows 10 Home"}},"mosaic":{"retina":"https:\u002F\u002Fhttp2.mlstatic.com\u002Fresources\u002Ffrontend\u002Fstatics\u002Fimg-not-available\u002F1.1.0\u002FT@2x.jpg","tags":{"alt":"Notebook Multilaser Legacy Air PC222 prata 13.3\", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1920x1080px Windows 10 Home","class_name":"list-view-item-figure"}}},"price":{"amount":1495,"currency_id":"BRL","original_price":1573.9,"discount_rate":5,"discount_label":{"text":"5% OFF","color":"#00A650"},"rebate_price":{"text":"em","color":"#000000"}},"product":{"id":"MLB15297208","name":"Notebook Multilaser Legacy Air PC222 prata 13.3\", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1920x1080px Windows 10 Home"},"title":"Notebook Multilaser Legacy Air PC222 prata 13.3\", Intel Celeron N3350 4GB de RAM 64GB SSD, Intel HD Graphics 500 1920x1080px Windows 10 Home","subtitles":{},"vertical":"CORE","is_ad":false,"official_store":{"text":{"text":"por Loja MMPLACE","color":"GRAY"},"verbose_text":{"text":"Vendido por Loja MMPLACE","color":"GRAY"},"permalink":"https:\u002F\u002Floja.mercadolivre.com.br\u002Floja-mmplace","tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fofficial_store\u002Fofficial_store_link","type":"event","event_data":{"official_store_id":"2138"}},"analytics_track":{"action":"OFFICIAL_STORE_LINK","category":"SEARCH_LISTING","label":"OFFICIAL_STORE"}}},"installments":{"amount":149.49,"currency_id":"BRL","text":"10x {price} sem juros","color":"LIGHT_GREEN"},"tags":["interest_free","cart_eligible","product_item","best_seller_candidate"],"reviews":{"rating_average":4,"total":132},"image_ratio":"1.41","category_id":"MLB1652","pictures_quantity":4,"value_propositions":[],"available_quantity":269}],"search_filter":{"name":"Somente em Informática","permalink":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002F$query","default_checked":false},"seo":{"h1":"Computador","title":"Computador | MercadoLivre 📦","description":"Frete grátis no dia ✓ Compre Computador parcelado sem juros! Saiba mais sobre nossas incríveis ofertas e promoções em milhões de produtos.","h1_bookmarks":"Informática","is_valid_page":true,"schema":{"search":{"url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fcomputador"},"product":{"name":"Notebook Compaq Presario CQ-25 gray 14.1\", Intel Pentium N3700 4GB de RAM 120GB SSD, Intel HD Graphics 1366x768px Windows 10 Home","aggregate_rating":{"rating_count":61,"rating_value":4},"item_offered":{"price":1979,"price_currency":"BRL","position":32,"url":"https:\u002F\u002Fwww.mercadolivre.com.br\u002Fnotebook-compaq-presario-cq-25-gray-141-intel-pentium-n3700-4gb-de-ram-120gb-ssd-intel-hd-graphics-1366x768px-windows-10-home\u002Fp\u002FMLB17966310"},"brand_attribute":{"name":"Compaq"}}},"category_path_tags":["SEARCH_L1_MLB1648"]},"sidebar":{"id":"SIDEBAR","type":"SIDEBAR","components":[{"type":"BREADCRUMB","h1":"Computador","nodes":[{"text":"Informática","url":"https:\u002F\u002Fwww.mercadolivre.com.br\u002Fc\u002Finformatica"}]},{"type":"TOTAL_RESULTS","text":"547.937 resultado"},{"type":"APPLIED_FILTERS","filters":[]},{"type":"AVAILABLE_FILTERS","filters":[{"id":"shipping_highlighted_fulfillment","name":"Tipo de envio","type":"highlighted","values":[{"id":"fulfillment","name":"Full","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_Frete_Full_NoIndex_True#applied_filter_id%3Dshipping_highlighted_fulfillment%26applied_filter_name%3DTipo+de+envio%26applied_filter_order%3D1%26applied_value_id%3Dfulfillment%26applied_value_name%3DFull%26applied_value_order%3D1%26applied_value_results%3D28144%26is_custom%3Dfalse","results":"(28.144)","title":{"text":"{icon} economiza frete","icons":["fulfillment"]},"subtitle":{"text":"Em carrinhos de compras","icons":[]},"switch":{"is_on":false}}],"fragment":"applied_filter_id%3Dshipping_highlighted_fulfillment%26applied_filter_name%3DTipo+de+envio%26applied_filter_order%3D1%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D2%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"fulfillment","name":"Full","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_Frete_Full_NoIndex_True#applied_filter_id%3Dshipping_highlighted_fulfillment%26applied_filter_name%3DTipo+de+envio%26applied_filter_order%3D1%26applied_value_id%3Dfulfillment%26applied_value_name%3DFull%26applied_value_order%3D1%26applied_value_results%3D28144%26is_custom%3Dfalse","results":"(28.144)","title":{"text":"{icon} economiza frete","icons":["fulfillment"]},"subtitle":{"text":"Em carrinhos de compras","icons":[]},"switch":{"is_on":false}}],"show_modal":false},{"id":"shipping_cost_highlighted","name":"Custo do frete","type":"highlighted","values":[{"id":"free","name":"Gratis","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_CustoFrete_Gratis_NoIndex_True#applied_filter_id%3Dshipping_cost_highlighted%26applied_filter_name%3DCusto+do+frete%26applied_filter_order%3D2%26applied_value_id%3Dfree%26applied_value_name%3DGratis%26applied_value_order%3D1%26applied_value_results%3D482501%26is_custom%3Dfalse","results":"(482.501)","title":{"text":"Frete grátis","icons":[]},"switch":{"is_on":false}}],"fragment":"applied_filter_id%3Dshipping_cost_highlighted%26applied_filter_name%3DCusto+do+frete%26applied_filter_order%3D2%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D2%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"free","name":"Gratis","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_CustoFrete_Gratis_NoIndex_True#applied_filter_id%3Dshipping_cost_highlighted%26applied_filter_name%3DCusto+do+frete%26applied_filter_order%3D2%26applied_value_id%3Dfree%26applied_value_name%3DGratis%26applied_value_order%3D1%26applied_value_results%3D482501%26is_custom%3Dfalse","results":"(482.501)","title":{"text":"Frete grátis","icons":[]},"switch":{"is_on":false}}],"show_modal":false},{"id":"SHIPPING_ORIGIN_HIGHLIGHTED","name":"Origem do frete","type":"highlighted","values":[{"id":"10215069","name":"Internacional","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_SHIPPING*ORIGIN_10215069#applied_filter_id%3DSHIPPING_ORIGIN_HIGHLIGHTED%26applied_filter_name%3DOrigem+do+frete%26applied_filter_order%3D3%26applied_value_id%3D10215069%26applied_value_name%3DInternacional%26applied_value_order%3D1%26applied_value_results%3D1319%26is_custom%3Dfalse","results":"(1.319)","title":{"text":"{icon} ","icons":["cbt_international_desktop"]},"subtitle":{"text":"Frete grátis do mundo até sua casa","icons":[]},"switch":{"is_on":false}}],"fragment":"applied_filter_id%3DSHIPPING_ORIGIN_HIGHLIGHTED%26applied_filter_name%3DOrigem+do+frete%26applied_filter_order%3D3%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D2%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"10215069","name":"Internacional","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_SHIPPING*ORIGIN_10215069#applied_filter_id%3DSHIPPING_ORIGIN_HIGHLIGHTED%26applied_filter_name%3DOrigem+do+frete%26applied_filter_order%3D3%26applied_value_id%3D10215069%26applied_value_name%3DInternacional%26applied_value_order%3D1%26applied_value_results%3D1319%26is_custom%3Dfalse","results":"(1.319)","title":{"text":"{icon} ","icons":["cbt_international_desktop"]},"subtitle":{"text":"Frete grátis do mundo até sua casa","icons":[]},"switch":{"is_on":false}}],"show_modal":false},{"id":"category","name":"Categorias","type":"text","values":[{"id":"MLB271913","name":"Acessórios de Antiestática","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Facessorios-antiestatica\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB271913%26applied_value_name%3DAcess%C3%B3rios+de+Antiest%C3%A1tica%26applied_value_order%3D1%26applied_value_results%3D87%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(87)"},{"id":"MLB447778","name":"Acessórios para PC Gaming","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Facessorios-pc-gaming\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB447778%26applied_value_name%3DAcess%C3%B3rios+para+PC+Gaming%26applied_value_order%3D2%26applied_value_results%3D1759%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1.759)"},{"id":"MLB430598","name":"Armazenamento","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Farmazenamento\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430598%26applied_value_name%3DArmazenamento%26applied_value_order%3D3%26applied_value_results%3D17238%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(17.238)"},{"id":"MLB430918","name":"Cabos e Hubs USB","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcabos-e-hubs-usb\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430918%26applied_value_name%3DCabos+e+Hubs+USB%26applied_value_order%3D4%26applied_value_results%3D1231%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1.231)"},{"id":"MLB1712","name":"Componentes para PC","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomponentes-pc\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB1712%26applied_value_name%3DComponentes+para+PC%26applied_value_order%3D5%26applied_value_results%3D31486%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(31.486)"},{"id":"MLB1700","name":"Conectividade e Redes","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fconectividade-e-redes\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB1700%26applied_value_name%3DConectividade+e+Redes%26applied_value_order%3D6%26applied_value_results%3D791%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(791)"},{"id":"MLB1718","name":"Estabilizadores e No Breaks","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Festabilizadores-e-no-breaks\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB1718%26applied_value_name%3DEstabilizadores+e+No+Breaks%26applied_value_order%3D7%26applied_value_results%3D967%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(967)"},{"id":"MLB5875","name":"Impressão","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fimpressao\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB5875%26applied_value_name%3DImpress%C3%A3o%26applied_value_order%3D8%26applied_value_results%3D263%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(263)"},{"id":"MLB99944","name":"Limpeza de PCs","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Flimpeza-pcs\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB99944%26applied_value_name%3DLimpeza+de+PCs%26applied_value_order%3D9%26applied_value_results%3D1055%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1.055)"},{"id":"MLB14370","name":"Monitores e Acessórios","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fmonitores\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB14370%26applied_value_name%3DMonitores+e+Acess%C3%B3rios%26applied_value_order%3D10%26applied_value_results%3D4925%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4.925)"},{"id":"MLB430637","name":"PC de Mesa","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fpc-mesa\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430637%26applied_value_name%3DPC+de+Mesa%26applied_value_order%3D11%26applied_value_results%3D472826%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(472.826)"},{"id":"MLB454379","name":"Periféricos para PC","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fperifericos-pc\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB454379%26applied_value_name%3DPerif%C3%A9ricos+para+PC%26applied_value_order%3D12%26applied_value_results%3D22779%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(22.779)"},{"id":"MLB430687","name":"Portáteis e Acessórios","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fportateis-e-acessorios\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430687%26applied_value_name%3DPort%C3%A1teis+e+Acess%C3%B3rios%26applied_value_order%3D13%26applied_value_results%3D9850%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(9.850)"},{"id":"MLB1723","name":"Software","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fsoftware\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB1723%26applied_value_name%3DSoftware%26applied_value_order%3D14%26applied_value_results%3D175%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(175)"}],"modal":{"type":"DEFAULT","labels":{"modal_not_found_message":"No encontramos resultados que coincidan con su búsqueda","modal_label":"Mostrar mais","modal_place_holder":"Buscar..."}},"fragment":"applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D15%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"MLB430687","name":"Portáteis e Acessórios","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fportateis-e-acessorios\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430687%26applied_value_name%3DPort%C3%A1teis+e+Acess%C3%B3rios%26applied_value_order%3D13%26applied_value_results%3D9850%26is_custom%3Dfalse","results":"(9.850)"},{"id":"MLB430637","name":"PC de Mesa","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fpc-mesa\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430637%26applied_value_name%3DPC+de+Mesa%26applied_value_order%3D11%26applied_value_results%3D472826%26is_custom%3Dfalse","results":"(472.826)"},{"id":"MLB1712","name":"Componentes para PC","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomponentes-pc\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB1712%26applied_value_name%3DComponentes+para+PC%26applied_value_order%3D5%26applied_value_results%3D31486%26is_custom%3Dfalse","results":"(31.486)"},{"id":"MLB454379","name":"Periféricos para PC","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fperifericos-pc\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB454379%26applied_value_name%3DPerif%C3%A9ricos+para+PC%26applied_value_order%3D12%26applied_value_results%3D22779%26is_custom%3Dfalse","results":"(22.779)"},{"id":"MLB430598","name":"Armazenamento","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Farmazenamento\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430598%26applied_value_name%3DArmazenamento%26applied_value_order%3D3%26applied_value_results%3D17238%26is_custom%3Dfalse","results":"(17.238)"},{"id":"MLB14370","name":"Monitores e Acessórios","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fmonitores\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB14370%26applied_value_name%3DMonitores+e+Acess%C3%B3rios%26applied_value_order%3D10%26applied_value_results%3D4925%26is_custom%3Dfalse","results":"(4.925)"},{"id":"MLB447778","name":"Acessórios para PC Gaming","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Facessorios-pc-gaming\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB447778%26applied_value_name%3DAcess%C3%B3rios+para+PC+Gaming%26applied_value_order%3D2%26applied_value_results%3D1759%26is_custom%3Dfalse","results":"(1.759)"},{"id":"MLB430918","name":"Cabos e Hubs USB","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcabos-e-hubs-usb\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB430918%26applied_value_name%3DCabos+e+Hubs+USB%26applied_value_order%3D4%26applied_value_results%3D1231%26is_custom%3Dfalse","results":"(1.231)"},{"id":"MLB99944","name":"Limpeza de PCs","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Flimpeza-pcs\u002Fcomputador_NoIndex_True#applied_filter_id%3Dcategory%26applied_filter_name%3DCategorias%26applied_filter_order%3D4%26applied_value_id%3DMLB99944%26applied_value_name%3DLimpeza+de+PCs%26applied_value_order%3D9%26applied_value_results%3D1055%26is_custom%3Dfalse","results":"(1.055)"}],"show_modal":true,"url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fcomputador_FiltersAvailableSidebar?filter=category"},{"id":"PROCESSOR_TYPE","name":"Processador","type":"STRING","values":[{"id":"2785905","name":"AMD A10","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_2785905#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D2785905%26applied_value_name%3DAMD+A10%26applied_value_order%3D1%26applied_value_results%3D2022%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2.022)"},{"id":"2785902","name":"AMD A4","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_2785902#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D2785902%26applied_value_name%3DAMD+A4%26applied_value_order%3D2%26applied_value_results%3D1231%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1.231)"},{"id":"2785903","name":"AMD A6","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_2785903#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D2785903%26applied_value_name%3DAMD+A6%26applied_value_order%3D3%26applied_value_results%3D4221%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4.221)"},{"id":"2785904","name":"AMD A8","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_2785904#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D2785904%26applied_value_name%3DAMD+A8%26applied_value_order%3D4%26applied_value_results%3D3430%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3.430)"},{"id":"345562","name":"AMD Athlon","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345562#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345562%26applied_value_name%3DAMD+Athlon%26applied_value_order%3D5%26applied_value_results%3D2462%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2.462)"},{"id":"345563","name":"AMD Athlon 64","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345563#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345563%26applied_value_name%3DAMD+Athlon+64%26applied_value_order%3D6%26applied_value_results%3D87%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(87)"},{"id":"345564","name":"AMD Athlon 64 x2","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345564#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345564%26applied_value_name%3DAMD+Athlon+64+x2%26applied_value_order%3D7%26applied_value_results%3D87%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(87)"},{"id":"345565","name":"AMD Athlon II","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345565#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345565%26applied_value_name%3DAMD+Athlon+II%26applied_value_order%3D8%26applied_value_results%3D175%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(175)"},{"id":"345566","name":"AMD Bulldozer","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345566#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345566%26applied_value_name%3DAMD+Bulldozer%26applied_value_order%3D9%26applied_value_results%3D527%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(527)"},{"id":"7743744","name":"AMD FX","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_7743744#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D7743744%26applied_value_name%3DAMD+FX%26applied_value_order%3D10%26applied_value_results%3D87%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(87)"},{"id":"2785901","name":"AMD K6","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_2785901#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D2785901%26applied_value_name%3DAMD+K6%26applied_value_order%3D11%26applied_value_results%3D615%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(615)"},{"id":"345567","name":"AMD Phenom","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345567#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345567%26applied_value_name%3DAMD+Phenom%26applied_value_order%3D12%26applied_value_results%3D1143%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1.143)"},{"id":"7639635","name":"AMD Ryzen","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_7639635#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D7639635%26applied_value_name%3DAMD+Ryzen%26applied_value_order%3D13%26applied_value_results%3D527%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(527)"},{"id":"345569","name":"Intel Atom","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345569#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345569%26applied_value_name%3DIntel+Atom%26applied_value_order%3D14%26applied_value_results%3D703%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(703)"},{"id":"345570","name":"Intel Celeron","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345570#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345570%26applied_value_name%3DIntel+Celeron%26applied_value_order%3D15%26applied_value_results%3D4573%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4.573)"},{"id":"345571","name":"Intel Core 2 Duo","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345571#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345571%26applied_value_name%3DIntel+Core+2+Duo%26applied_value_order%3D16%26applied_value_results%3D15479%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(15.479)"},{"id":"345572","name":"Intel Core 2 Quad","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345572#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345572%26applied_value_name%3DIntel+Core+2+Quad%26applied_value_order%3D17%26applied_value_results%3D1583%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1.583)"},{"id":"345573","name":"Intel Core i3","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345573#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345573%26applied_value_name%3DIntel+Core+i3%26applied_value_order%3D18%26applied_value_results%3D50132%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(50.132)"},{"id":"345574","name":"Intel Core i5","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345574#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345574%26applied_value_name%3DIntel+Core+i5%26applied_value_order%3D19%26applied_value_results%3D143008%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(143.008)"},{"id":"345575","name":"Intel Core i7","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345575#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345575%26applied_value_name%3DIntel+Core+i7%26applied_value_order%3D20%26applied_value_results%3D42040%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(42.040)"},{"id":"345576","name":"Intel Dual Core","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345576#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345576%26applied_value_name%3DIntel+Dual+Core%26applied_value_order%3D21%26applied_value_results%3D7212%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(7.212)"},{"id":"345577","name":"Intel Pentium","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345577#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345577%26applied_value_name%3DIntel+Pentium%26applied_value_order%3D22%26applied_value_results%3D1055%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1.055)"},{"id":"345580","name":"Intel Pentium 4","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345580#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345580%26applied_value_name%3DIntel+Pentium+4%26applied_value_order%3D23%26applied_value_results%3D527%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(527)"},{"id":"345581","name":"Intel Pentium D","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345581#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345581%26applied_value_name%3DIntel+Pentium+D%26applied_value_order%3D24%26applied_value_results%3D87%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(87)"},{"id":"7639634","name":"Intel Xeon","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_7639634#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D7639634%26applied_value_name%3DIntel+Xeon%26applied_value_order%3D25%26applied_value_results%3D1407%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1.407)"}],"modal":{"type":"DEFAULT","labels":{"modal_not_found_message":"No encontramos resultados que coincidan con su búsqueda","modal_label":"Mostrar mais","modal_place_holder":"Buscar..."}},"fragment":"applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D26%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"345574","name":"Intel Core i5","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345574#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345574%26applied_value_name%3DIntel+Core+i5%26applied_value_order%3D19%26applied_value_results%3D143008%26is_custom%3Dfalse","results":"(143.008)"},{"id":"345573","name":"Intel Core i3","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345573#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345573%26applied_value_name%3DIntel+Core+i3%26applied_value_order%3D18%26applied_value_results%3D50132%26is_custom%3Dfalse","results":"(50.132)"},{"id":"345575","name":"Intel Core i7","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345575#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345575%26applied_value_name%3DIntel+Core+i7%26applied_value_order%3D20%26applied_value_results%3D42040%26is_custom%3Dfalse","results":"(42.040)"},{"id":"345571","name":"Intel Core 2 Duo","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345571#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345571%26applied_value_name%3DIntel+Core+2+Duo%26applied_value_order%3D16%26applied_value_results%3D15479%26is_custom%3Dfalse","results":"(15.479)"},{"id":"345576","name":"Intel Dual Core","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345576#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345576%26applied_value_name%3DIntel+Dual+Core%26applied_value_order%3D21%26applied_value_results%3D7212%26is_custom%3Dfalse","results":"(7.212)"},{"id":"345570","name":"Intel Celeron","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345570#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345570%26applied_value_name%3DIntel+Celeron%26applied_value_order%3D15%26applied_value_results%3D4573%26is_custom%3Dfalse","results":"(4.573)"},{"id":"2785903","name":"AMD A6","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_2785903#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D2785903%26applied_value_name%3DAMD+A6%26applied_value_order%3D3%26applied_value_results%3D4221%26is_custom%3Dfalse","results":"(4.221)"},{"id":"2785904","name":"AMD A8","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_2785904#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D2785904%26applied_value_name%3DAMD+A8%26applied_value_order%3D4%26applied_value_results%3D3430%26is_custom%3Dfalse","results":"(3.430)"},{"id":"345562","name":"AMD Athlon","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_PROCESSOR*TYPE_345562#applied_filter_id%3DPROCESSOR_TYPE%26applied_filter_name%3DProcessador%26applied_filter_order%3D5%26applied_value_id%3D345562%26applied_value_name%3DAMD+Athlon%26applied_value_order%3D5%26applied_value_results%3D2462%26is_custom%3Dfalse","results":"(2.462)"}],"show_modal":true,"url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fcomputador_FiltersAvailableSidebar?filter=PROCESSOR_TYPE"},{"id":"shipping","name":"Tipo de envio","type":"text","values":[{"id":"fulfillment","name":"Full","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_Frete_Full_NoIndex_True#applied_filter_id%3Dshipping%26applied_filter_name%3DTipo+de+envio%26applied_filter_order%3D6%26applied_value_id%3Dfulfillment%26applied_value_name%3DFull%26applied_value_order%3D1%26applied_value_results%3D28144%26is_custom%3Dfalse","results":"(28.144)"}],"fragment":"applied_filter_id%3Dshipping%26applied_filter_name%3DTipo+de+envio%26applied_filter_order%3D6%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D2%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"fulfillment","name":"Full","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_Frete_Full_NoIndex_True#applied_filter_id%3Dshipping%26applied_filter_name%3DTipo+de+envio%26applied_filter_order%3D6%26applied_value_id%3Dfulfillment%26applied_value_name%3DFull%26applied_value_order%3D1%26applied_value_results%3D28144%26is_custom%3Dfalse","results":"(28.144)"}],"show_modal":false},{"id":"RAM_SIZE","name":"RAM","type":"range","values":[{"id":"[128GB-*)","name":"128 GB ou mais","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_RAM*SIZE_128GB-*#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B128GB-*%29%26applied_value_name%3D128+GB+ou+mais%26applied_value_order%3D1%26applied_value_results%3D3606%26is_custom%3Dfalse","results":"(3.606)"},{"id":"[16GB-32GB)","name":"16 a 31 GB","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_RAM*SIZE_16GB-32GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B16GB-32GB%29%26applied_value_name%3D16+a+31+GB%26applied_value_order%3D2%26applied_value_results%3D111082%26is_custom%3Dfalse","results":"(111.082)"},{"id":"[32GB-128GB)","name":"32 a 127 GB","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_RAM*SIZE_32GB-128GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B32GB-128GB%29%26applied_value_name%3D32+a+127+GB%26applied_value_order%3D3%26applied_value_results%3D24098%26is_custom%3Dfalse","results":"(24.098)"},{"id":"[8GB-16GB)","name":"8 a 15 GB","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_RAM*SIZE_8GB-16GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B8GB-16GB%29%26applied_value_name%3D8+a+15+GB%26applied_value_order%3D4%26applied_value_results%3D212842%26is_custom%3Dfalse","results":"(212.842)"},{"id":"(*-8GB)","name":"Menos de 8 GB","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_RAM*SIZE_*-8GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%28*-8GB%29%26applied_value_name%3DMenos+de+8+GB%26applied_value_order%3D5%26applied_value_results%3D111258%26is_custom%3Dfalse","results":"(111.258)"}],"url_templates":{"only_from":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_RAM*SIZE_$from-*","only_to":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_RAM*SIZE_*-$to","from_and_to":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_RAM*SIZE_$from-$to"},"fragment":"applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D6%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"(*-8GB)","name":"Menos de 8 GB","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_RAM*SIZE_*-8GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%28*-8GB%29%26applied_value_name%3DMenos+de+8+GB%26applied_value_order%3D5%26applied_value_results%3D111258%26is_custom%3Dfalse","results":"(111.258)"},{"id":"[8GB-16GB)","name":"8 a 15 GB","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_RAM*SIZE_8GB-16GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B8GB-16GB%29%26applied_value_name%3D8+a+15+GB%26applied_value_order%3D4%26applied_value_results%3D212842%26is_custom%3Dfalse","results":"(212.842)"},{"id":"[16GB-32GB)","name":"16 a 31 GB","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_RAM*SIZE_16GB-32GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B16GB-32GB%29%26applied_value_name%3D16+a+31+GB%26applied_value_order%3D2%26applied_value_results%3D111082%26is_custom%3Dfalse","results":"(111.082)"},{"id":"[32GB-128GB)","name":"32 a 127 GB","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_RAM*SIZE_32GB-128GB#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B32GB-128GB%29%26applied_value_name%3D32+a+127+GB%26applied_value_order%3D3%26applied_value_results%3D24098%26is_custom%3Dfalse","results":"(24.098)"},{"id":"[128GB-*)","name":"128 GB ou mais","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_RAM*SIZE_128GB-*#applied_filter_id%3DRAM_SIZE%26applied_filter_name%3DRAM%26applied_filter_order%3D7%26applied_value_id%3D%5B128GB-*%29%26applied_value_name%3D128+GB+ou+mais%26applied_value_order%3D1%26applied_value_results%3D3606%26is_custom%3Dfalse","results":"(3.606)"}],"show_modal":false},{"id":"ITEM_CONDITION","name":"Condição","type":"STRING","values":[{"id":"2230284","name":"Novo","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fnovo\u002Fcomputador_NoIndex_True#applied_filter_id%3DITEM_CONDITION%26applied_filter_name%3DCondi%C3%A7%C3%A3o%26applied_filter_order%3D8%26applied_value_id%3D2230284%26applied_value_name%3DNovo%26applied_value_order%3D1%26applied_value_results%3D463327%26is_custom%3Dfalse","results":"(463.327)"},{"id":"2230582","name":"Recondicionado","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Frecondicionado\u002Fcomputador_NoIndex_True#applied_filter_id%3DITEM_CONDITION%26applied_filter_name%3DCondi%C3%A7%C3%A3o%26applied_filter_order%3D8%26applied_value_id%3D2230582%26applied_value_name%3DRecondicionado%26applied_value_order%3D2%26applied_value_results%3D27089%26is_custom%3Dfalse","results":"(27.089)"},{"id":"2230581","name":"Usado","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fusado\u002Fcomputador_NoIndex_True#applied_filter_id%3DITEM_CONDITION%26applied_filter_name%3DCondi%C3%A7%C3%A3o%26applied_filter_order%3D8%26applied_value_id%3D2230581%26applied_value_name%3DUsado%26applied_value_order%3D3%26applied_value_results%3D57168%26is_custom%3Dfalse","results":"(57.168)"}],"fragment":"applied_filter_id%3DITEM_CONDITION%26applied_filter_name%3DCondi%C3%A7%C3%A3o%26applied_filter_order%3D8%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D4%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"2230284","name":"Novo","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fnovo\u002Fcomputador_NoIndex_True#applied_filter_id%3DITEM_CONDITION%26applied_filter_name%3DCondi%C3%A7%C3%A3o%26applied_filter_order%3D8%26applied_value_id%3D2230284%26applied_value_name%3DNovo%26applied_value_order%3D1%26applied_value_results%3D463327%26is_custom%3Dfalse","results":"(463.327)"},{"id":"2230581","name":"Usado","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fusado\u002Fcomputador_NoIndex_True#applied_filter_id%3DITEM_CONDITION%26applied_filter_name%3DCondi%C3%A7%C3%A3o%26applied_filter_order%3D8%26applied_value_id%3D2230581%26applied_value_name%3DUsado%26applied_value_order%3D3%26applied_value_results%3D57168%26is_custom%3Dfalse","results":"(57.168)"},{"id":"2230582","name":"Recondicionado","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Frecondicionado\u002Fcomputador_NoIndex_True#applied_filter_id%3DITEM_CONDITION%26applied_filter_name%3DCondi%C3%A7%C3%A3o%26applied_filter_order%3D8%26applied_value_id%3D2230582%26applied_value_name%3DRecondicionado%26applied_value_order%3D2%26applied_value_results%3D27089%26is_custom%3Dfalse","results":"(27.089)"}],"show_modal":false},{"id":"WITH_MONITOR","name":"Monitor","type":"boolean","values":[{"id":"242085","name":"Com monitor","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_WITH*MONITOR_242085#applied_filter_id%3DWITH_MONITOR%26applied_filter_name%3DMonitor%26applied_filter_order%3D9%26applied_value_id%3D242085%26applied_value_name%3DCom+monitor%26applied_value_order%3D1%26applied_value_results%3D66227%26is_custom%3Dfalse","results":"(66.227)"},{"id":"242084","name":"Sem monitor","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_WITH*MONITOR_242084#applied_filter_id%3DWITH_MONITOR%26applied_filter_name%3DMonitor%26applied_filter_order%3D9%26applied_value_id%3D242084%26applied_value_name%3DSem+monitor%26applied_value_order%3D2%26applied_value_results%3D25242%26is_custom%3Dfalse","results":"(25.242)"}],"fragment":"applied_filter_id%3DWITH_MONITOR%26applied_filter_name%3DMonitor%26applied_filter_order%3D9%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D3%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"242085","name":"Com monitor","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_WITH*MONITOR_242085#applied_filter_id%3DWITH_MONITOR%26applied_filter_name%3DMonitor%26applied_filter_order%3D9%26applied_value_id%3D242085%26applied_value_name%3DCom+monitor%26applied_value_order%3D1%26applied_value_results%3D66227%26is_custom%3Dfalse","results":"(66.227)"},{"id":"242084","name":"Sem monitor","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_WITH*MONITOR_242084#applied_filter_id%3DWITH_MONITOR%26applied_filter_name%3DMonitor%26applied_filter_order%3D9%26applied_value_id%3D242084%26applied_value_name%3DSem+monitor%26applied_value_order%3D2%26applied_value_results%3D25242%26is_custom%3Dfalse","results":"(25.242)"}],"show_modal":false},{"id":"shipping_cost","name":"Custo do frete","type":"text","values":[{"id":"free","name":"Gratis","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_CustoFrete_Gratis_NoIndex_True#applied_filter_id%3Dshipping_cost%26applied_filter_name%3DCusto+do+frete%26applied_filter_order%3D10%26applied_value_id%3Dfree%26applied_value_name%3DGratis%26applied_value_order%3D1%26applied_value_results%3D482501%26is_custom%3Dfalse","results":"(482.501)"}],"fragment":"applied_filter_id%3Dshipping_cost%26applied_filter_name%3DCusto+do+frete%26applied_filter_order%3D10%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D2%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"free","name":"Gratis","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_CustoFrete_Gratis_NoIndex_True#applied_filter_id%3Dshipping_cost%26applied_filter_name%3DCusto+do+frete%26applied_filter_order%3D10%26applied_value_id%3Dfree%26applied_value_name%3DGratis%26applied_value_order%3D1%26applied_value_results%3D482501%26is_custom%3Dfalse","results":"(482.501)"}],"show_modal":false},{"id":"price","name":"Preço","type":"range","values":[{"id":"*-1000.0","name":"Até R$1.000","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_PriceRange_0-1000_NoIndex_True#applied_filter_id%3Dprice%26applied_filter_name%3DPre%C3%A7o%26applied_filter_order%3D11%26applied_value_id%3D*-1000.0%26applied_value_name%3DAt%C3%A9+R%241.000%26applied_value_order%3D1%26applied_value_results%3D111610%26is_custom%3Dfalse","results":"(111.610)"},{"id":"1000.0-2000.0","name":"R$1.000 a R$2.000","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_PriceRange_1000-2000_NoIndex_True#applied_filter_id%3Dprice%26applied_filter_name%3DPre%C3%A7o%26applied_filter_order%3D11%26applied_value_id%3D1000.0-2000.0%26applied_value_name%3DR%241.000+a+R%242.000%26applied_value_order%3D2%26applied_value_results%3D194636%26is_custom%3Dfalse","results":"(194.636)"},{"id":"2000.0-*","name":"Mais de R$2.000","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_PriceRange_2000-0_NoIndex_True#applied_filter_id%3Dprice%26applied_filter_name%3DPre%C3%A7o%26applied_filter_order%3D11%26applied_value_id%3D2000.0-*%26applied_value_name%3DMais+de+R%242.000%26applied_value_order%3D3%26applied_value_results%3D241690%26is_custom%3Dfalse","results":"(241.690)"}],"url_templates":{"only_from":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_PriceRange_$from-0","only_to":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_PriceRange_0-$to","from_and_to":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_PriceRange_$from-$to"},"fragment":"applied_filter_id%3Dprice%26applied_filter_name%3DPre%C3%A7o%26applied_filter_order%3D11%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D4%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"*-1000.0","name":"Até R$1.000","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_PriceRange_0-1000_NoIndex_True#applied_filter_id%3Dprice%26applied_filter_name%3DPre%C3%A7o%26applied_filter_order%3D11%26applied_value_id%3D*-1000.0%26applied_value_name%3DAt%C3%A9+R%241.000%26applied_value_order%3D1%26applied_value_results%3D111610%26is_custom%3Dfalse","results":"(111.610)"},{"id":"1000.0-2000.0","name":"R$1.000 a R$2.000","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_PriceRange_1000-2000_NoIndex_True#applied_filter_id%3Dprice%26applied_filter_name%3DPre%C3%A7o%26applied_filter_order%3D11%26applied_value_id%3D1000.0-2000.0%26applied_value_name%3DR%241.000+a+R%242.000%26applied_value_order%3D2%26applied_value_results%3D194636%26is_custom%3Dfalse","results":"(194.636)"},{"id":"2000.0-*","name":"Mais de R$2.000","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_PriceRange_2000-0_NoIndex_True#applied_filter_id%3Dprice%26applied_filter_name%3DPre%C3%A7o%26applied_filter_order%3D11%26applied_value_id%3D2000.0-*%26applied_value_name%3DMais+de+R%242.000%26applied_value_order%3D3%26applied_value_results%3D241690%26is_custom%3Dfalse","results":"(241.690)"}],"show_modal":false},{"id":"OPERATIVE_SYSTEM","name":"Sistema operativo","type":"STRING","values":[{"id":"345582","name":"Chrome OS","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345582#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345582%26applied_value_name%3DChrome+OS%26applied_value_order%3D1%26applied_value_results%3D87%26is_custom%3Dfalse","results":"(87)"},{"id":"345588","name":"Linux","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345588#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345588%26applied_value_name%3DLinux%26applied_value_order%3D2%26applied_value_results%3D4749%26is_custom%3Dfalse","results":"(4.749)"},{"id":"345589","name":"Mac OS","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345589#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345589%26applied_value_name%3DMac+OS%26applied_value_order%3D3%26applied_value_results%3D263%26is_custom%3Dfalse","results":"(263)"},{"id":"345583","name":"Windows 10","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345583#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345583%26applied_value_name%3DWindows+10%26applied_value_order%3D4%26applied_value_results%3D289975%26is_custom%3Dfalse","results":"(289.975)"},{"id":"345585","name":"Windows 7","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345585#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345585%26applied_value_name%3DWindows+7%26applied_value_order%3D5%26applied_value_results%3D14160%26is_custom%3Dfalse","results":"(14.160)"},{"id":"345584","name":"Windows 8","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345584#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345584%26applied_value_name%3DWindows+8%26applied_value_order%3D6%26applied_value_results%3D175%26is_custom%3Dfalse","results":"(175)"},{"id":"345587","name":"Windows XP","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345587#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345587%26applied_value_name%3DWindows+XP%26applied_value_order%3D7%26applied_value_results%3D175%26is_custom%3Dfalse","results":"(175)"}],"fragment":"applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D8%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"345583","name":"Windows 10","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345583#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345583%26applied_value_name%3DWindows+10%26applied_value_order%3D4%26applied_value_results%3D289975%26is_custom%3Dfalse","results":"(289.975)"},{"id":"345585","name":"Windows 7","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345585#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345585%26applied_value_name%3DWindows+7%26applied_value_order%3D5%26applied_value_results%3D14160%26is_custom%3Dfalse","results":"(14.160)"},{"id":"345588","name":"Linux","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345588#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345588%26applied_value_name%3DLinux%26applied_value_order%3D2%26applied_value_results%3D4749%26is_custom%3Dfalse","results":"(4.749)"},{"id":"345589","name":"Mac OS","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345589#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345589%26applied_value_name%3DMac+OS%26applied_value_order%3D3%26applied_value_results%3D263%26is_custom%3Dfalse","results":"(263)"},{"id":"345587","name":"Windows XP","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345587#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345587%26applied_value_name%3DWindows+XP%26applied_value_order%3D7%26applied_value_results%3D175%26is_custom%3Dfalse","results":"(175)"},{"id":"345584","name":"Windows 8","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345584#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345584%26applied_value_name%3DWindows+8%26applied_value_order%3D6%26applied_value_results%3D175%26is_custom%3Dfalse","results":"(175)"},{"id":"345582","name":"Chrome OS","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_OPERATIVE*SYSTEM_345582#applied_filter_id%3DOPERATIVE_SYSTEM%26applied_filter_name%3DSistema+operativo%26applied_filter_order%3D12%26applied_value_id%3D345582%26applied_value_name%3DChrome+OS%26applied_value_order%3D1%26applied_value_results%3D87%26is_custom%3Dfalse","results":"(87)"}],"show_modal":false},{"id":"state","name":"Localização","type":"text","values":[{"id":"TUxCUEJBSEFlYmEx","name":"Bahia","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fbahia\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUEJBSEFlYmEx%26applied_value_name%3DBahia%26applied_value_order%3D1%26applied_value_results%3D1671%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1.671)"},{"id":"TUxCUENFQUExNzkyZQ","name":"Ceará","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fceara\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUENFQUExNzkyZQ%26applied_value_name%3DCear%C3%A1%26applied_value_order%3D2%26applied_value_results%3D175%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(175)"},{"id":"TUxCUERJU0wxMWJhYg","name":"Distrito Federal","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fdistrito-federal\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUERJU0wxMWJhYg%26applied_value_name%3DDistrito+Federal%26applied_value_order%3D3%26applied_value_results%3D1231%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1.231)"},{"id":"TUxCUEVTUE8xN2Y3NA","name":"Espírito Santo","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fespirito-santo\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUEVTUE8xN2Y3NA%26applied_value_name%3DEsp%C3%ADrito+Santo%26applied_value_order%3D4%26applied_value_results%3D4925%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4.925)"},{"id":"TUxCUEdPSVMxNzVmMw","name":"Goiás","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fgoias\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUEdPSVMxNzVmMw%26applied_value_name%3DGoi%C3%A1s%26applied_value_order%3D5%26applied_value_results%3D1231%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1.231)"},{"id":"TUxCUE1BVEw4ZTc","name":"Mato Grosso do Sul","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fmato-grosso-do-sul\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUE1BVEw4ZTc%26applied_value_name%3DMato+Grosso+do+Sul%26applied_value_order%3D6%26applied_value_results%3D87%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(87)"},{"id":"TUxCUE1JTlMxNTAyZA","name":"Minas Gerais","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fminas-gerais\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUE1JTlMxNTAyZA%26applied_value_name%3DMinas+Gerais%26applied_value_order%3D7%26applied_value_results%3D101232%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(101.232)"},{"id":"TUxCUFBBUkExODBlZA","name":"Paraná","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fparana\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFBBUkExODBlZA%26applied_value_name%3DParan%C3%A1%26applied_value_order%3D8%26applied_value_results%3D24010%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(24.010)"},{"id":"TUxCUFBBUkE0M2I4","name":"Paraíba","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fparaiba\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFBBUkE0M2I4%26applied_value_name%3DPara%C3%ADba%26applied_value_order%3D9%26applied_value_results%3D263%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(263)"},{"id":"TUxCUFBBUkFiY2Uw","name":"Pará","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fpara\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFBBUkFiY2Uw%26applied_value_name%3DPar%C3%A1%26applied_value_order%3D10%26applied_value_results%3D87%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(87)"},{"id":"TUxCUFBFUk8xZmZj","name":"Pernambuco","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fpernambuco\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFBFUk8xZmZj%26applied_value_name%3DPernambuco%26applied_value_order%3D11%26applied_value_results%3D263%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(263)"},{"id":"TUxCUFJJT08xODM5Zg","name":"Rio de Janeiro","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Frio-de-janeiro\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFJJT08xODM5Zg%26applied_value_name%3DRio+de+Janeiro%26applied_value_order%3D12%26applied_value_results%3D15303%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(15.303)"},{"id":"TUxCUFJJT0VkMmNj","name":"Rio Grande do Norte","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Frio-grande-do-norte\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFJJT0VkMmNj%26applied_value_name%3DRio+Grande+do+Norte%26applied_value_order%3D13%26applied_value_results%3D263%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(263)"},{"id":"TUxCUFJJT0xkYzM0","name":"Rio Grande do Sul","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Frio-grande-do-sul\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFJJT0xkYzM0%26applied_value_name%3DRio+Grande+do+Sul%26applied_value_order%3D14%26applied_value_results%3D6332%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(6.332)"},{"id":"TUxCUFJPTkExMmU4YQ","name":"Rondônia","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Frondonia\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFJPTkExMmU4YQ%26applied_value_name%3DRond%C3%B4nia%26applied_value_order%3D15%26applied_value_results%3D87%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(87)"},{"id":"TUxCUFNBTkE5Nzc4","name":"Santa Catarina","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fsanta-catarina\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFNBTkE5Nzc4%26applied_value_name%3DSanta+Catarina%26applied_value_order%3D16%26applied_value_results%3D48813%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(48.813)"},{"id":"TUxCUFNBT085N2E4","name":"São Paulo","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fsao-paulo\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFNBT085N2E4%26applied_value_name%3DS%C3%A3o+Paulo%26applied_value_order%3D17%26applied_value_results%3D341163%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(341.163)"}],"modal":{"type":"DEFAULT","labels":{"modal_not_found_message":"No encontramos resultados que coincidan con su búsqueda","modal_label":"Mostrar mais","modal_place_holder":"Buscar..."}},"fragment":"applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D18%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"TUxCUFNBT085N2E4","name":"São Paulo","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fsao-paulo\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFNBT085N2E4%26applied_value_name%3DS%C3%A3o+Paulo%26applied_value_order%3D17%26applied_value_results%3D341163%26is_custom%3Dfalse","results":"(341.163)"},{"id":"TUxCUE1JTlMxNTAyZA","name":"Minas Gerais","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fminas-gerais\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUE1JTlMxNTAyZA%26applied_value_name%3DMinas+Gerais%26applied_value_order%3D7%26applied_value_results%3D101232%26is_custom%3Dfalse","results":"(101.232)"},{"id":"TUxCUFNBTkE5Nzc4","name":"Santa Catarina","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fsanta-catarina\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFNBTkE5Nzc4%26applied_value_name%3DSanta+Catarina%26applied_value_order%3D16%26applied_value_results%3D48813%26is_custom%3Dfalse","results":"(48.813)"},{"id":"TUxCUFBBUkExODBlZA","name":"Paraná","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fparana\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFBBUkExODBlZA%26applied_value_name%3DParan%C3%A1%26applied_value_order%3D8%26applied_value_results%3D24010%26is_custom%3Dfalse","results":"(24.010)"},{"id":"TUxCUFJJT08xODM5Zg","name":"Rio de Janeiro","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Frio-de-janeiro\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFJJT08xODM5Zg%26applied_value_name%3DRio+de+Janeiro%26applied_value_order%3D12%26applied_value_results%3D15303%26is_custom%3Dfalse","results":"(15.303)"},{"id":"TUxCUFJJT0xkYzM0","name":"Rio Grande do Sul","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Frio-grande-do-sul\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUFJJT0xkYzM0%26applied_value_name%3DRio+Grande+do+Sul%26applied_value_order%3D14%26applied_value_results%3D6332%26is_custom%3Dfalse","results":"(6.332)"},{"id":"TUxCUEVTUE8xN2Y3NA","name":"Espírito Santo","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fespirito-santo\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUEVTUE8xN2Y3NA%26applied_value_name%3DEsp%C3%ADrito+Santo%26applied_value_order%3D4%26applied_value_results%3D4925%26is_custom%3Dfalse","results":"(4.925)"},{"id":"TUxCUEJBSEFlYmEx","name":"Bahia","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fbahia\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUEJBSEFlYmEx%26applied_value_name%3DBahia%26applied_value_order%3D1%26applied_value_results%3D1671%26is_custom%3Dfalse","results":"(1.671)"},{"id":"TUxCUERJU0wxMWJhYg","name":"Distrito Federal","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fdistrito-federal\u002Fcomputador_NoIndex_True#applied_filter_id%3Dstate%26applied_filter_name%3DLocaliza%C3%A7%C3%A3o%26applied_filter_order%3D13%26applied_value_id%3DTUxCUERJU0wxMWJhYg%26applied_value_name%3DDistrito+Federal%26applied_value_order%3D3%26applied_value_results%3D1231%26is_custom%3Dfalse","results":"(1.231)"}],"show_modal":true,"url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fcomputador_FiltersAvailableSidebar?filter=state"},{"id":"HDD_SIZE","name":"Disco rígido","type":"range","values":[{"id":"[1000GB-1240GB)","name":"1.000 a 1.239 GB","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_HDD*SIZE_1000GB-1240GB_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%5B1000GB-1240GB%29%26applied_value_name%3D1.000+a+1.239+GB%26applied_value_order%3D1%26applied_value_results%3D61302%26is_custom%3Dfalse","results":"(61.302)"},{"id":"[1240GB-*)","name":"1.240 GB ou mais","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_HDD*SIZE_1240GB-*_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%5B1240GB-*%29%26applied_value_name%3D1.240+GB+ou+mais%26applied_value_order%3D2%26applied_value_results%3D11345%26is_custom%3Dfalse","results":"(11.345)"},{"id":"[250GB-1000GB)","name":"250 a 999 GB","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_HDD*SIZE_250GB-1000GB_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%5B250GB-1000GB%29%26applied_value_name%3D250+a+999+GB%26applied_value_order%3D3%26applied_value_results%3D142481%26is_custom%3Dfalse","results":"(142.481)"},{"id":"(*-250GB)","name":"Menos de 250 GB","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_HDD*SIZE_*-250GB_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%28*-250GB%29%26applied_value_name%3DMenos+de+250+GB%26applied_value_order%3D4%26applied_value_results%3D238084%26is_custom%3Dfalse","results":"(238.084)"}],"url_templates":{"only_from":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_HDD*SIZE_$from-*","only_to":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_HDD*SIZE_*-$to","from_and_to":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_HDD*SIZE_$from-$to"},"fragment":"applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D5%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"(*-250GB)","name":"Menos de 250 GB","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_HDD*SIZE_*-250GB_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%28*-250GB%29%26applied_value_name%3DMenos+de+250+GB%26applied_value_order%3D4%26applied_value_results%3D238084%26is_custom%3Dfalse","results":"(238.084)"},{"id":"[250GB-1000GB)","name":"250 a 999 GB","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_HDD*SIZE_250GB-1000GB_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%5B250GB-1000GB%29%26applied_value_name%3D250+a+999+GB%26applied_value_order%3D3%26applied_value_results%3D142481%26is_custom%3Dfalse","results":"(142.481)"},{"id":"[1000GB-1240GB)","name":"1.000 a 1.239 GB","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_HDD*SIZE_1000GB-1240GB_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%5B1000GB-1240GB%29%26applied_value_name%3D1.000+a+1.239+GB%26applied_value_order%3D1%26applied_value_results%3D61302%26is_custom%3Dfalse","results":"(61.302)"},{"id":"[1240GB-*)","name":"1.240 GB ou mais","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_HDD*SIZE_1240GB-*_NoIndex_True#applied_filter_id%3DHDD_SIZE%26applied_filter_name%3DDisco+r%C3%ADgido%26applied_filter_order%3D14%26applied_value_id%3D%5B1240GB-*%29%26applied_value_name%3D1.240+GB+ou+mais%26applied_value_order%3D2%26applied_value_results%3D11345%26is_custom%3Dfalse","results":"(11.345)"}],"show_modal":false},{"id":"DISPLAY_SIZE","name":"Tamanho da tela","type":"range","values":[{"id":"[11.6\"-18.5\")","name":"11,6 a 18,4 \"","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_DISPLAY*SIZE_11.6\"-18.5\"#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%5B11.6%22-18.5%22%29%26applied_value_name%3D11%2C6+a+18%2C4+%22%26applied_value_order%3D1%26applied_value_results%3D36060%26is_custom%3Dfalse","results":"(36.060)"},{"id":"[18.5\"-20\")","name":"18,5 a 19,9 \"","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_DISPLAY*SIZE_18.5\"-20\"#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%5B18.5%22-20%22%29%26applied_value_name%3D18%2C5+a+19%2C9+%22%26applied_value_order%3D2%26applied_value_results%3D55497%26is_custom%3Dfalse","results":"(55.497)"},{"id":"[20\"-*)","name":"20 \" ou mais","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_DISPLAY*SIZE_20\"-*#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%5B20%22-*%29%26applied_value_name%3D20+%22+ou+mais%26applied_value_order%3D3%26applied_value_results%3D16358%26is_custom%3Dfalse","results":"(16.358)"},{"id":"(*-11.6\")","name":"Menos de 11,6 \"","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_DISPLAY*SIZE_*-11.6\"#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%28*-11.6%22%29%26applied_value_name%3DMenos+de+11%2C6+%22%26applied_value_order%3D4%26applied_value_results%3D61741%26is_custom%3Dfalse","results":"(61.741)"}],"url_templates":{"only_from":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_DISPLAY*SIZE_$from-*","only_to":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_DISPLAY*SIZE_*-$to","from_and_to":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_DISPLAY*SIZE_$from-$to"},"fragment":"applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D5%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"(*-11.6\")","name":"Menos de 11,6 \"","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_DISPLAY*SIZE_*-11.6\"#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%28*-11.6%22%29%26applied_value_name%3DMenos+de+11%2C6+%22%26applied_value_order%3D4%26applied_value_results%3D61741%26is_custom%3Dfalse","results":"(61.741)"},{"id":"[11.6\"-18.5\")","name":"11,6 a 18,4 \"","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_DISPLAY*SIZE_11.6\"-18.5\"#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%5B11.6%22-18.5%22%29%26applied_value_name%3D11%2C6+a+18%2C4+%22%26applied_value_order%3D1%26applied_value_results%3D36060%26is_custom%3Dfalse","results":"(36.060)"},{"id":"[18.5\"-20\")","name":"18,5 a 19,9 \"","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_DISPLAY*SIZE_18.5\"-20\"#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%5B18.5%22-20%22%29%26applied_value_name%3D18%2C5+a+19%2C9+%22%26applied_value_order%3D2%26applied_value_results%3D55497%26is_custom%3Dfalse","results":"(55.497)"},{"id":"[20\"-*)","name":"20 \" ou mais","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_DISPLAY*SIZE_20\"-*#applied_filter_id%3DDISPLAY_SIZE%26applied_filter_name%3DTamanho+da+tela%26applied_filter_order%3D15%26applied_value_id%3D%5B20%22-*%29%26applied_value_name%3D20+%22+ou+mais%26applied_value_order%3D3%26applied_value_results%3D16358%26is_custom%3Dfalse","results":"(16.358)"}],"show_modal":false},{"id":"BRAND","name":"Marca","type":"STRING","values":[{"id":"345557","name":"3Green","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_345557_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D345557%26applied_value_name%3D3Green%26applied_value_order%3D1%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"15903","name":"Acer","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_15903_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D15903%26applied_value_name%3DAcer%26applied_value_order%3D2%26applied_value_results%3D9%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(9)"},{"id":"12355235","name":"Acf","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_12355235_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D12355235%26applied_value_name%3DAcf%26applied_value_order%3D3%26applied_value_results%3D10%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(10)"},{"id":"8182702","name":"Adamantiun","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_8182702_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8182702%26applied_value_name%3DAdamantiun%26applied_value_order%3D4%26applied_value_results%3D5%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(5)"},{"id":"7636991","name":"Adata","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_7636991_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7636991%26applied_value_name%3DAdata%26applied_value_order%3D5%26applied_value_results%3D10%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(10)"},{"id":"8718525","name":"Aerocool Advanced Technologies","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_8718525_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8718525%26applied_value_name%3DAerocool+Advanced+Technologies%26applied_value_order%3D6%26applied_value_results%3D5%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(5)"},{"id":"937022","name":"AG","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_937022_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D937022%26applied_value_name%3DAG%26applied_value_order%3D7%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"7068095","name":"AGS","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_7068095_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7068095%26applied_value_name%3DAGS%26applied_value_order%3D8%26applied_value_results%3D10%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(10)"},{"id":"3485879","name":"Aigo","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_3485879_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3485879%26applied_value_name%3DAigo%26applied_value_order%3D9%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"5353537","name":"Alfatec","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_5353537_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D5353537%26applied_value_name%3DAlfatec%26applied_value_order%3D10%26applied_value_results%3D5%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(5)"},{"id":"457388","name":"Altomex","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_457388_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D457388%26applied_value_name%3DAltomex%26applied_value_order%3D11%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"18034","name":"AMD","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_18034_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D18034%26applied_value_name%3DAMD%26applied_value_order%3D12%26applied_value_results%3D39%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(39)"},{"id":"7173388","name":"AMS","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_7173388_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7173388%26applied_value_name%3DAMS%26applied_value_order%3D13%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"20262","name":"AOC","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_20262_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D20262%26applied_value_name%3DAOC%26applied_value_order%3D14%26applied_value_results%3D11%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(11)"},{"id":"15294","name":"APC","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_15294_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D15294%26applied_value_name%3DAPC%26applied_value_order%3D15%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"9344","name":"Apple","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_9344_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D9344%26applied_value_name%3DApple%26applied_value_order%3D16%26applied_value_results%3D6%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(6)"},{"id":"18651","name":"ASRock","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_18651_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D18651%26applied_value_name%3DASRock%26applied_value_order%3D17%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"7294334","name":"Asus","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_7294334_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7294334%26applied_value_name%3DAsus%26applied_value_order%3D18%26applied_value_results%3D11%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(11)"},{"id":"2491451","name":"ATM","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_2491451_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2491451%26applied_value_name%3DATM%26applied_value_order%3D19%26applied_value_results%3D20%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(20)"},{"id":"12821547","name":"ATX","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_12821547_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D12821547%26applied_value_name%3DATX%26applied_value_order%3D20%26applied_value_results%3D28%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(28)"},{"id":"2304291","name":"Aula","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_2304291_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2304291%26applied_value_name%3DAula%26applied_value_order%3D21%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"183772","name":"Baseus","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_183772_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D183772%26applied_value_name%3DBaseus%26applied_value_order%3D22%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"11834","name":"Bematech","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_11834_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D11834%26applied_value_name%3DBematech%26applied_value_order%3D23%26applied_value_results%3D54%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(54)"},{"id":"1102918","name":"Bluecase","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_1102918_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D1102918%26applied_value_name%3DBluecase%26applied_value_order%3D24%26applied_value_results%3D6%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(6)"},{"id":"9127790","name":"Brasil PC","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_9127790_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D9127790%26applied_value_name%3DBrasil+PC%26applied_value_order%3D25%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"2949523","name":"Brazil PC","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_2949523_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2949523%26applied_value_name%3DBrazil+PC%26applied_value_order%3D26%26applied_value_results%3D45%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(45)"},{"id":"2767273","name":"Briwax","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_2767273_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2767273%26applied_value_name%3DBriwax%26applied_value_order%3D27%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"8938696","name":"BRX","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_8938696_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8938696%26applied_value_name%3DBRX%26applied_value_order%3D28%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"8774306","name":"C3Tech","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_8774306_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8774306%26applied_value_name%3DC3Tech%26applied_value_order%3D29%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"403225","name":"Case","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_403225_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D403225%26applied_value_name%3DCase%26applied_value_order%3D30%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"20024","name":"CCE","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_20024_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D20024%26applied_value_name%3DCCE%26applied_value_order%3D31%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"26807","name":"Cisco","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_26807_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D26807%26applied_value_name%3DCisco%26applied_value_order%3D32%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"512563","name":"Cometa","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_512563_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D512563%26applied_value_name%3DCometa%26applied_value_order%3D33%26applied_value_results%3D32%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(32)"},{"id":"11476","name":"Compaq","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_11476_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D11476%26applied_value_name%3DCompaq%26applied_value_order%3D34%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"5083419","name":"Concórdia","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_5083419_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D5083419%26applied_value_name%3DConc%C3%B3rdia%26applied_value_order%3D35%26applied_value_results%3D31%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(31)"},{"id":"8695625","name":"Cooler Master Technology","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_8695625_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8695625%26applied_value_name%3DCooler+Master+Technology%26applied_value_order%3D36%26applied_value_results%3D5%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(5)"},{"id":"47354","name":"Corsair","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_47354_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D47354%26applied_value_name%3DCorsair%26applied_value_order%3D37%26applied_value_results%3D17%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(17)"},{"id":"47687","name":"Crucial","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_47687_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D47687%26applied_value_name%3DCrucial%26applied_value_order%3D38%26applied_value_results%3D13%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(13)"},{"id":"205902","name":"Crypton","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_205902_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D205902%26applied_value_name%3DCrypton%26applied_value_order%3D39%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"4616346","name":"Danny","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_4616346_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D4616346%26applied_value_name%3DDanny%26applied_value_order%3D40%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"8111697","name":"Deko","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_8111697_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8111697%26applied_value_name%3DDeko%26applied_value_order%3D41%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"8216","name":"Dell","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_8216_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8216%26applied_value_name%3DDell%26applied_value_order%3D42%26applied_value_results%3D802%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(802)"},{"id":"2618843","name":"Dex","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_2618843_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2618843%26applied_value_name%3DDex%26applied_value_order%3D43%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"5898945","name":"Diversos","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_5898945_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D5898945%26applied_value_name%3DDiversos%26applied_value_order%3D44%26applied_value_results%3D11%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(11)"},{"id":"2247418","name":"Dmix","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_2247418_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2247418%26applied_value_name%3DDmix%26applied_value_order%3D45%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"41939","name":"Easy","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_41939_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D41939%26applied_value_name%3DEasy%26applied_value_order%3D46%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"3691571","name":"Edup","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_3691571_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3691571%26applied_value_name%3DEdup%26applied_value_order%3D47%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"102992","name":"Elgin","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_102992_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D102992%26applied_value_name%3DElgin%26applied_value_order%3D48%26applied_value_results%3D8%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(8)"},{"id":"2231070","name":"EMC","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_2231070_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2231070%26applied_value_name%3DEMC%26applied_value_order%3D49%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"10447040","name":"Energy Lux","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_10447040_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D10447040%26applied_value_name%3DEnergy+Lux%26applied_value_order%3D50%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"263005","name":"Estone","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_263005_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D263005%26applied_value_name%3DEstone%26applied_value_order%3D51%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"5052860","name":"Everex","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_5052860_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D5052860%26applied_value_name%3DEverex%26applied_value_order%3D52%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"8263410","name":"Evolut","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_8263410_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8263410%26applied_value_name%3DEvolut%26applied_value_order%3D53%26applied_value_results%3D7%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(7)"},{"id":"7160886","name":"Exbom","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_7160886_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7160886%26applied_value_name%3DExbom%26applied_value_order%3D54%26applied_value_results%3D14%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(14)"},{"id":"3506149","name":"F-New","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_3506149_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3506149%26applied_value_name%3DF-New%26applied_value_order%3D55%26applied_value_results%3D9%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(9)"},{"id":"153617","name":"Feir","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_153617_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D153617%26applied_value_name%3DFeir%26applied_value_order%3D56%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"12860741","name":"Fire Phoenix","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_12860741_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D12860741%26applied_value_name%3DFire+Phoenix%26applied_value_order%3D57%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"454145","name":"First","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_454145_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D454145%26applied_value_name%3DFirst%26applied_value_order%3D58%26applied_value_results%3D11%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(11)"},{"id":"46525","name":"Fortrek","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_46525_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D46525%26applied_value_name%3DFortrek%26applied_value_order%3D59%26applied_value_results%3D13%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(13)"},{"id":"1003243","name":"FSP","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_1003243_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D1003243%26applied_value_name%3DFSP%26applied_value_order%3D60%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"3725684","name":"G-Fire","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_3725684_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3725684%26applied_value_name%3DG-Fire%26applied_value_order%3D61%26applied_value_results%3D6%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(6)"},{"id":"8182112","name":"Gamdias","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_8182112_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8182112%26applied_value_name%3DGamdias%26applied_value_order%3D62%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"899182","name":"GameMax","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_899182_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D899182%26applied_value_name%3DGameMax%26applied_value_order%3D63%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"2151157","name":"General","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_2151157_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2151157%26applied_value_name%3DGeneral%26applied_value_order%3D64%26applied_value_results%3D5%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(5)"},{"id":"10331273","name":"Generic","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_10331273_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D10331273%26applied_value_name%3DGeneric%26applied_value_order%3D65%26applied_value_results%3D7%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(7)"},{"id":"276243","name":"Genérica","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_276243_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D276243%26applied_value_name%3DGen%C3%A9rica%26applied_value_order%3D66%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"12197076","name":"Genérico","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_12197076_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D12197076%26applied_value_name%3DGen%C3%A9rico%26applied_value_order%3D67%26applied_value_results%3D8%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(8)"},{"id":"8738922","name":"Giga-Byte Technology","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_8738922_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8738922%26applied_value_name%3DGiga-Byte+Technology%26applied_value_order%3D68%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"18623","name":"Gigabyte","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_18623_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D18623%26applied_value_name%3DGigabyte%26applied_value_order%3D69%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"10453891","name":"Goldenfir","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_10453891_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D10453891%26applied_value_name%3DGoldenfir%26applied_value_order%3D70%26applied_value_results%3D6%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(6)"},{"id":"2949380","name":"Goldenultra","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_2949380_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2949380%26applied_value_name%3DGoldenultra%26applied_value_order%3D71%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"9778294","name":"GoLine","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_9778294_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D9778294%26applied_value_name%3DGoLine%26applied_value_order%3D72%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"3280228","name":"H'maston","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_3280228_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3280228%26applied_value_name%3DH%27maston%26applied_value_order%3D73%26applied_value_results%3D5%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(5)"},{"id":"7106798","name":"Haiz","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_7106798_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7106798%26applied_value_name%3DHaiz%26applied_value_order%3D74%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"50458","name":"Havit","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_50458_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D50458%26applied_value_name%3DHavit%26applied_value_order%3D75%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"9814765","name":"Hayom","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_9814765_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D9814765%26applied_value_name%3DHayom%26applied_value_order%3D76%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"234","name":"Hitachi","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_234_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D234%26applied_value_name%3DHitachi%26applied_value_order%3D77%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"417157","name":"Hoopson","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_417157_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D417157%26applied_value_name%3DHoopson%26applied_value_order%3D78%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"49944","name":"HP","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_49944_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D49944%26applied_value_name%3DHP%26applied_value_order%3D79%26applied_value_results%3D383%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(383)"},{"id":"353291","name":"HP Compaq","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_353291_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D353291%26applied_value_name%3DHP+Compaq%26applied_value_order%3D80%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"5735609","name":"HQ","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_5735609_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D5735609%26applied_value_name%3DHQ%26applied_value_order%3D81%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"448156","name":"HyperX","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_448156_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D448156%26applied_value_name%3DHyperX%26applied_value_order%3D82%26applied_value_results%3D24%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(24)"},{"id":"2864","name":"IBM","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_2864_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2864%26applied_value_name%3DIBM%26applied_value_order%3D83%26applied_value_results%3D18%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(18)"},{"id":"5681511","name":"Implastec","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_5681511_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D5681511%26applied_value_name%3DImplastec%26applied_value_order%3D84%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"117110","name":"Infokit","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_117110_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D117110%26applied_value_name%3DInfokit%26applied_value_order%3D85%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"7855833","name":"Intel","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_7855833_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7855833%26applied_value_name%3DIntel%26applied_value_order%3D86%26applied_value_results%3D356%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(356)"},{"id":"11410665","name":"It-Blue","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_11410665_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D11410665%26applied_value_name%3DIt-Blue%26applied_value_order%3D87%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"283137","name":"Itautec","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_283137_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D283137%26applied_value_name%3DItautec%26applied_value_order%3D88%26applied_value_results%3D12%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(12)"},{"id":"17265","name":"JBL","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_17265_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D17265%26applied_value_name%3DJBL%26applied_value_order%3D89%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"8907923","name":"JBR","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_8907923_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8907923%26applied_value_name%3DJBR%26applied_value_order%3D90%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"1024287","name":"K-Mex","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_1024287_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D1024287%26applied_value_name%3DK-Mex%26applied_value_order%3D91%26applied_value_results%3D25%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(25)"},{"id":"5029029","name":"Kalex","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_5029029_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D5029029%26applied_value_name%3DKalex%26applied_value_order%3D92%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"12223442","name":"Kapbom","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_12223442_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D12223442%26applied_value_name%3DKapbom%26applied_value_order%3D93%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"3893241","name":"Kebidu","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_3893241_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3893241%26applied_value_name%3DKebidu%26applied_value_order%3D94%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"3325434","name":"Kimaster","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_3325434_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3325434%26applied_value_name%3DKimaster%26applied_value_order%3D95%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"3424363","name":"KingDian","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_3424363_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3424363%26applied_value_name%3DKingDian%26applied_value_order%3D96%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"162221","name":"KingSpec","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_162221_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D162221%26applied_value_name%3DKingSpec%26applied_value_order%3D97%26applied_value_results%3D8%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(8)"},{"id":"16360","name":"Kingston","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_16360_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D16360%26applied_value_name%3DKingston%26applied_value_order%3D98%26applied_value_results%3D43%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(43)"},{"id":"140055","name":"Knup","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_140055_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D140055%26applied_value_name%3DKnup%26applied_value_order%3D99%26applied_value_results%3D23%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(23)"},{"id":"9134524","name":"Kunup","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_9134524_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D9134524%26applied_value_name%3DKunup%26applied_value_order%3D100%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"18705","name":"LaCie","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_18705_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D18705%26applied_value_name%3DLaCie%26applied_value_order%3D101%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"7494","name":"Lenovo","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_7494_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7494%26applied_value_name%3DLenovo%26applied_value_order%3D102%26applied_value_results%3D255%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(255)"},{"id":"16739","name":"Lexar","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_16739_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D16739%26applied_value_name%3DLexar%26applied_value_order%3D103%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"215","name":"LG","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_215_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D215%26applied_value_name%3DLG%26applied_value_order%3D104%26applied_value_results%3D14%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(14)"},{"id":"2971570","name":"Liketec","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_2971570_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2971570%26applied_value_name%3DLiketec%26applied_value_order%3D105%26applied_value_results%3D5%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(5)"},{"id":"403605","name":"Line","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_403605_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D403605%26applied_value_name%3DLine%26applied_value_order%3D106%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"16509","name":"Lite-On","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_16509_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D16509%26applied_value_name%3DLite-On%26applied_value_order%3D107%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"15788","name":"Logitech","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_15788_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D15788%26applied_value_name%3DLogitech%26applied_value_order%3D108%26applied_value_results%3D70%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(70)"},{"id":"19640","name":"Lotus","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_19640_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D19640%26applied_value_name%3DLotus%26applied_value_order%3D109%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"428791","name":"MAC","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_428791_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D428791%26applied_value_name%3DMAC%26applied_value_order%3D110%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"371117","name":"MAG Engenharia","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_371117_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D371117%26applied_value_name%3DMAG+Engenharia%26applied_value_order%3D111%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"9705867","name":"Mancer","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_9705867_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D9705867%26applied_value_name%3DMancer%26applied_value_order%3D112%26applied_value_results%3D112%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(112)"},{"id":"122141","name":"Markvision","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_122141_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D122141%26applied_value_name%3DMarkvision%26applied_value_order%3D113%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"3640660","name":"McAfee","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_3640660_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3640660%26applied_value_name%3DMcAfee%26applied_value_order%3D114%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"185123","name":"Megaware","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_185123_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D185123%26applied_value_name%3DMegaware%26applied_value_order%3D115%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"445743","name":"Mercusys","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_445743_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D445743%26applied_value_name%3DMercusys%26applied_value_order%3D116%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"15770","name":"Microsoft","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_15770_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D15770%26applied_value_name%3DMicrosoft%26applied_value_order%3D117%26applied_value_results%3D14%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(14)"},{"id":"11049475","name":"Montado","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_11049475_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D11049475%26applied_value_name%3DMontado%26applied_value_order%3D118%26applied_value_results%3D49%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(49)"},{"id":"275116","name":"Motospeed","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_275116_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D275116%26applied_value_name%3DMotospeed%26applied_value_order%3D119%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"3264976","name":"Movitec","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_3264976_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3264976%26applied_value_name%3DMovitec%26applied_value_order%3D120%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"5992579","name":"MSX","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_5992579_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D5992579%26applied_value_name%3DMSX%26applied_value_order%3D121%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"9984736","name":"MTC","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_9984736_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D9984736%26applied_value_name%3DMTC%26applied_value_order%3D122%26applied_value_results%3D20%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(20)"},{"id":"31163","name":"Multilaser","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_31163_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D31163%26applied_value_name%3DMultilaser%26applied_value_order%3D123%26applied_value_results%3D113%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(113)"},{"id":"6291957","name":"MultiPC","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_6291957_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D6291957%26applied_value_name%3DMultiPC%26applied_value_order%3D124%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"574171","name":"Mymax","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_574171_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D574171%26applied_value_name%3DMymax%26applied_value_order%3D125%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"243232","name":"Nitro","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_243232_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D243232%26applied_value_name%3DNitro%26applied_value_order%3D126%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"59772","name":"OEM","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_59772_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D59772%26applied_value_name%3DOEM%26applied_value_order%3D127%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"122133","name":"OEX","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_122133_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D122133%26applied_value_name%3DOEX%26applied_value_order%3D128%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"4951","name":"OKI","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_4951_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D4951%26applied_value_name%3DOKI%26applied_value_order%3D129%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"1024292","name":"One Power","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_1024292_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D1024292%26applied_value_name%3DOne+Power%26applied_value_order%3D130%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"8830927","name":"Orionas","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_8830927_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8830927%26applied_value_name%3DOrionas%26applied_value_order%3D131%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"11352739","name":"Oscoo","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_11352739_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D11352739%26applied_value_name%3DOscoo%26applied_value_order%3D132%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"18662","name":"Patriot","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_18662_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D18662%26applied_value_name%3DPatriot%26applied_value_order%3D133%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"5771213","name":"PC Ware","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_5771213_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D5771213%26applied_value_name%3DPC+Ware%26applied_value_order%3D134%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"1130484","name":"Pctop","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_1130484_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D1130484%26applied_value_name%3DPctop%26applied_value_order%3D135%26applied_value_results%3D6%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(6)"},{"id":"8028731","name":"Pcyes","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_8028731_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8028731%26applied_value_name%3DPcyes%26applied_value_order%3D136%26applied_value_results%3D6%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(6)"},{"id":"3","name":"Philips","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_3_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3%26applied_value_name%3DPhilips%26applied_value_order%3D137%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"973653","name":"PHX","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_973653_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D973653%26applied_value_name%3DPHX%26applied_value_order%3D138%26applied_value_results%3D11%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(11)"},{"id":"923416","name":"PlayStation","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_923416_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D923416%26applied_value_name%3DPlayStation%26applied_value_order%3D139%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"3756317","name":"Plus Cable","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_3756317_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3756317%26applied_value_name%3DPlus+Cable%26applied_value_order%3D140%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"17755","name":"PNY","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_17755_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D17755%26applied_value_name%3DPNY%26applied_value_order%3D141%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"10861613","name":"Poly","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_10861613_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D10861613%26applied_value_name%3DPoly%26applied_value_order%3D142%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"13346","name":"Positivo","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_13346_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D13346%26applied_value_name%3DPositivo%26applied_value_order%3D143%26applied_value_results%3D49%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(49)"},{"id":"261209","name":"Ragtech","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_261209_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D261209%26applied_value_name%3DRagtech%26applied_value_order%3D144%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"17587","name":"Razer","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_17587_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D17587%26applied_value_name%3DRazer%26applied_value_order%3D145%26applied_value_results%3D7%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(7)"},{"id":"275795","name":"Redragon","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_275795_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D275795%26applied_value_name%3DRedragon%26applied_value_order%3D146%26applied_value_results%3D42%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(42)"},{"id":"3509510","name":"Rise","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_3509510_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3509510%26applied_value_name%3DRise%26applied_value_order%3D147%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"6171802","name":"Rise Mode","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_6171802_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D6171802%26applied_value_name%3DRise+Mode%26applied_value_order%3D148%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"3189974","name":"Rontek","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_3189974_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3189974%26applied_value_name%3DRontek%26applied_value_order%3D149%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"7070535","name":"RZX","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_7070535_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7070535%26applied_value_name%3DRZX%26applied_value_order%3D150%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"206","name":"Samsung","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_206_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D206%26applied_value_name%3DSamsung%26applied_value_order%3D151%26applied_value_results%3D27%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(27)"},{"id":"16244","name":"SanDisk","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_16244_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D16244%26applied_value_name%3DSanDisk%26applied_value_order%3D152%26applied_value_results%3D10%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(10)"},{"id":"38708","name":"Satechi","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_38708_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D38708%26applied_value_name%3DSatechi%26applied_value_order%3D153%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"8756807","name":"Sea Sonic Electronics","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_8756807_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8756807%26applied_value_name%3DSea+Sonic+Electronics%26applied_value_order%3D154%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"9597","name":"Seagate","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_9597_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D9597%26applied_value_name%3DSeagate%26applied_value_order%3D155%26applied_value_results%3D27%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(27)"},{"id":"31001","name":"Semp Toshiba","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_31001_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D31001%26applied_value_name%3DSemp+Toshiba%26applied_value_order%3D156%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"12792850","name":"Shock","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_12792850_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D12792850%26applied_value_name%3DShock%26applied_value_order%3D157%26applied_value_results%3D83%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(83)"},{"id":"38765","name":"Smart","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_38765_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D38765%26applied_value_name%3DSmart%26applied_value_order%3D158%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"260594","name":"SMS","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_260594_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D260594%26applied_value_name%3DSMS%26applied_value_order%3D159%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"3346629","name":"Spartan","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_3346629_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D3346629%26applied_value_name%3DSpartan%26applied_value_order%3D160%26applied_value_results%3D4%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(4)"},{"id":"12292952","name":"Speaker","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_12292952_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D12292952%26applied_value_name%3DSpeaker%26applied_value_order%3D161%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"42366","name":"Star","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_42366_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D42366%26applied_value_name%3DStar%26applied_value_order%3D162%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"351881","name":"STI","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_351881_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D351881%26applied_value_name%3DSTI%26applied_value_order%3D163%26applied_value_results%3D8%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(8)"},{"id":"2410858","name":"Sun","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_2410858_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2410858%26applied_value_name%3DSun%26applied_value_order%3D164%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"2231062","name":"Supermicro","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_2231062_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2231062%26applied_value_name%3DSupermicro%26applied_value_order%3D165%26applied_value_results%3D44%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(44)"},{"id":"14184","name":"Sweda","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_14184_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D14184%26applied_value_name%3DSweda%26applied_value_order%3D166%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"8711726","name":"T-Dagger","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_8711726_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8711726%26applied_value_name%3DT-Dagger%26applied_value_order%3D167%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"421219","name":"Taicon","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_421219_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D421219%26applied_value_name%3DTaicon%26applied_value_order%3D168%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"1248398","name":"Tanca","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_1248398_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D1248398%26applied_value_name%3DTanca%26applied_value_order%3D169%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"12846232","name":"Tapcamp","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_12846232_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D12846232%26applied_value_name%3DTapcamp%26applied_value_order%3D170%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"964321","name":"Tech","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_964321_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D964321%26applied_value_name%3DTech%26applied_value_order%3D171%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"8039499","name":"Tedge","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_8039499_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8039499%26applied_value_name%3DTedge%26applied_value_order%3D172%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"8696004","name":"Thermaltake Technology","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_8696004_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8696004%26applied_value_name%3DThermaltake+Technology%26applied_value_order%3D173%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"5674033","name":"TOB Computers","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_5674033_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D5674033%26applied_value_name%3DTOB+Computers%26applied_value_order%3D174%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"2045","name":"Toshiba","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_2045_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D2045%26applied_value_name%3DToshiba%26applied_value_order%3D175%26applied_value_results%3D9%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(9)"},{"id":"7885","name":"TP-Link","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_7885_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7885%26applied_value_name%3DTP-Link%26applied_value_order%3D176%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"30520","name":"TRENDnet","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_30520_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D30520%26applied_value_name%3DTRENDnet%26applied_value_order%3D177%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"7079577","name":"Tronos","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_7079577_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7079577%26applied_value_name%3DTronos%26applied_value_order%3D178%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"42328","name":"Trust","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_42328_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D42328%26applied_value_name%3DTrust%26applied_value_order%3D179%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"6286105","name":"Ts Shara","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_6286105_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D6286105%26applied_value_name%3DTs+Shara%26applied_value_order%3D180%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"345561","name":"Ultratop","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_345561_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D345561%26applied_value_name%3DUltratop%26applied_value_order%3D181%26applied_value_results%3D3%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(3)"},{"id":"4439359","name":"Variedades","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_4439359_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D4439359%26applied_value_name%3DVariedades%26applied_value_order%3D182%26applied_value_results%3D14%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(14)"},{"id":"1227360","name":"Vinik","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_1227360_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D1227360%26applied_value_name%3DVinik%26applied_value_order%3D183%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"265358","name":"Weibo","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_265358_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D265358%26applied_value_name%3DWeibo%26applied_value_order%3D184%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"8067410","name":"Weijinto","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_8067410_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8067410%26applied_value_name%3DWeijinto%26applied_value_order%3D185%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"9593","name":"Western Digital","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_9593_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D9593%26applied_value_name%3DWestern+Digital%26applied_value_order%3D186%26applied_value_results%3D34%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(34)"},{"id":"59387","name":"Xiaomi","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_59387_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D59387%26applied_value_name%3DXiaomi%26applied_value_order%3D187%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"6504514","name":"XPG","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_6504514_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D6504514%26applied_value_name%3DXPG%26applied_value_order%3D188%26applied_value_results%3D10%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(10)"},{"id":"7940406","name":"Xway","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_7940406_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7940406%26applied_value_name%3DXway%26applied_value_order%3D189%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"8962063","name":"XZone","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_8962063_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8962063%26applied_value_name%3DXZone%26applied_value_order%3D190%26applied_value_results%3D2%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(2)"},{"id":"8241624","name":"Ydtech","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_8241624_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8241624%26applied_value_name%3DYdtech%26applied_value_order%3D191%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"},{"id":"10793635","name":"Yongxinsheng","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_10793635_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D10793635%26applied_value_name%3DYongxinsheng%26applied_value_order%3D192%26applied_value_results%3D1%26is_custom%3Dfalse%26view_more_flag%3Dtrue","results":"(1)"}],"modal":{"type":"DEFAULT","labels":{"modal_not_found_message":"No encontramos resultados que coincidan con su búsqueda","modal_label":"Mostrar mais","modal_place_holder":"Buscar..."}},"fragment":"applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D193%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"8216","name":"Dell","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_8216_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D8216%26applied_value_name%3DDell%26applied_value_order%3D42%26applied_value_results%3D802%26is_custom%3Dfalse","results":"(802)"},{"id":"49944","name":"HP","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_49944_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D49944%26applied_value_name%3DHP%26applied_value_order%3D79%26applied_value_results%3D383%26is_custom%3Dfalse","results":"(383)"},{"id":"7855833","name":"Intel","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_7855833_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7855833%26applied_value_name%3DIntel%26applied_value_order%3D86%26applied_value_results%3D356%26is_custom%3Dfalse","results":"(356)"},{"id":"7494","name":"Lenovo","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_7494_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D7494%26applied_value_name%3DLenovo%26applied_value_order%3D102%26applied_value_results%3D255%26is_custom%3Dfalse","results":"(255)"},{"id":"31163","name":"Multilaser","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_31163_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D31163%26applied_value_name%3DMultilaser%26applied_value_order%3D123%26applied_value_results%3D113%26is_custom%3Dfalse","results":"(113)"},{"id":"9705867","name":"Mancer","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_9705867_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D9705867%26applied_value_name%3DMancer%26applied_value_order%3D112%26applied_value_results%3D112%26is_custom%3Dfalse","results":"(112)"},{"id":"12792850","name":"Shock","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_12792850_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D12792850%26applied_value_name%3DShock%26applied_value_order%3D157%26applied_value_results%3D83%26is_custom%3Dfalse","results":"(83)"},{"id":"15788","name":"Logitech","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_15788_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D15788%26applied_value_name%3DLogitech%26applied_value_order%3D108%26applied_value_results%3D70%26is_custom%3Dfalse","results":"(70)"},{"id":"11834","name":"Bematech","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BRAND_11834_NoIndex_True#applied_filter_id%3DBRAND%26applied_filter_name%3DMarca%26applied_filter_order%3D16%26applied_value_id%3D11834%26applied_value_name%3DBematech%26applied_value_order%3D23%26applied_value_results%3D54%26is_custom%3Dfalse","results":"(54)"}],"show_modal":true,"url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fcomputador_FiltersAvailableSidebar?filter=BRAND"},{"id":"SHIPPING_ORIGIN","name":"Origem do frete","type":"STRING","values":[{"id":"10215069","name":"Internacional","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_SHIPPING*ORIGIN_10215069#applied_filter_id%3DSHIPPING_ORIGIN%26applied_filter_name%3DOrigem+do+frete%26applied_filter_order%3D17%26applied_value_id%3D10215069%26applied_value_name%3DInternacional%26applied_value_order%3D1%26applied_value_results%3D1319%26is_custom%3Dfalse","results":"(1.319)"},{"id":"10215068","name":"Local","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_SHIPPING*ORIGIN_10215068#applied_filter_id%3DSHIPPING_ORIGIN%26applied_filter_name%3DOrigem+do+frete%26applied_filter_order%3D17%26applied_value_id%3D10215068%26applied_value_name%3DLocal%26applied_value_order%3D2%26applied_value_results%3D546617%26is_custom%3Dfalse","results":"(546.617)"}],"fragment":"applied_filter_id%3DSHIPPING_ORIGIN%26applied_filter_name%3DOrigem+do+frete%26applied_filter_order%3D17%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D3%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"10215068","name":"Local","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_SHIPPING*ORIGIN_10215068#applied_filter_id%3DSHIPPING_ORIGIN%26applied_filter_name%3DOrigem+do+frete%26applied_filter_order%3D17%26applied_value_id%3D10215068%26applied_value_name%3DLocal%26applied_value_order%3D2%26applied_value_results%3D546617%26is_custom%3Dfalse","results":"(546.617)"},{"id":"10215069","name":"Internacional","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_SHIPPING*ORIGIN_10215069#applied_filter_id%3DSHIPPING_ORIGIN%26applied_filter_name%3DOrigem+do+frete%26applied_filter_order%3D17%26applied_value_id%3D10215069%26applied_value_name%3DInternacional%26applied_value_order%3D1%26applied_value_results%3D1319%26is_custom%3Dfalse","results":"(1.319)"}],"show_modal":false},{"id":"official_store","name":"Lojas oficiais","type":"text","values":[{"id":"all","name":"Somente lojas oficiais","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_Loja_all_NoIndex_True#applied_filter_id%3Dofficial_store%26applied_filter_name%3DLojas+oficiais%26applied_filter_order%3D18%26applied_value_id%3Dall%26applied_value_name%3DSomente+lojas+oficiais%26applied_value_order%3D1%26applied_value_results%3D105189%26is_custom%3Dfalse","results":"(105.189)"}],"fragment":"applied_filter_id%3Dofficial_store%26applied_filter_name%3DLojas+oficiais%26applied_filter_order%3D18%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D2%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"all","name":"Somente lojas oficiais","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_Loja_all_NoIndex_True#applied_filter_id%3Dofficial_store%26applied_filter_name%3DLojas+oficiais%26applied_filter_order%3D18%26applied_value_id%3Dall%26applied_value_name%3DSomente+lojas+oficiais%26applied_value_order%3D1%26applied_value_results%3D105189%26is_custom%3Dfalse","results":"(105.189)"}],"show_modal":false},{"id":"installments","name":"Pagamento","type":"text","values":[{"id":"no_interest","name":"Parcelamento sem juros","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_Installments_NoInterest_NoIndex_True#applied_filter_id%3Dinstallments%26applied_filter_name%3DPagamento%26applied_filter_order%3D19%26applied_value_id%3Dno_interest%26applied_value_name%3DParcelamento+sem+juros%26applied_value_order%3D1%26applied_value_results%3D416449%26is_custom%3Dfalse","results":"(416.449)"}],"fragment":"applied_filter_id%3Dinstallments%26applied_filter_name%3DPagamento%26applied_filter_order%3D19%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D2%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"no_interest","name":"Parcelamento sem juros","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_Installments_NoInterest_NoIndex_True#applied_filter_id%3Dinstallments%26applied_filter_name%3DPagamento%26applied_filter_order%3D19%26applied_value_id%3Dno_interest%26applied_value_name%3DParcelamento+sem+juros%26applied_value_order%3D1%26applied_value_results%3D416449%26is_custom%3Dfalse","results":"(416.449)"}],"show_modal":false},{"id":"discount","name":"Descontos","type":"numeric","values":[{"id":"5-100","name":"Mais de 5% OFF","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_Discount_5-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D5-100%26applied_value_name%3DMais+de+5%25+OFF%26applied_value_order%3D1%26applied_value_results%3D116183%26is_custom%3Dfalse","results":"(116.183)"},{"id":"10-100","name":"Mais de 10% OFF","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_Discount_10-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D10-100%26applied_value_name%3DMais+de+10%25+OFF%26applied_value_order%3D2%26applied_value_results%3D109675%26is_custom%3Dfalse","results":"(109.675)"},{"id":"15-100","name":"Mais de 15% OFF","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_Discount_15-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D15-100%26applied_value_name%3DMais+de+15%25+OFF%26applied_value_order%3D3%26applied_value_results%3D20404%26is_custom%3Dfalse","results":"(20.404)"},{"id":"20-100","name":"Mais de 20% OFF","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_Discount_20-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D20-100%26applied_value_name%3DMais+de+20%25+OFF%26applied_value_order%3D4%26applied_value_results%3D13016%26is_custom%3Dfalse","results":"(13.016)"},{"id":"25-100","name":"Mais de 25% OFF","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_Discount_25-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D25-100%26applied_value_name%3DMais+de+25%25+OFF%26applied_value_order%3D5%26applied_value_results%3D6420%26is_custom%3Dfalse","results":"(6.420)"},{"id":"30-100","name":"Mais de 30% OFF","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_Discount_30-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D30-100%26applied_value_name%3DMais+de+30%25+OFF%26applied_value_order%3D6%26applied_value_results%3D2902%26is_custom%3Dfalse","results":"(2.902)"},{"id":"40-100","name":"Mais de 40% OFF","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_Discount_40-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D40-100%26applied_value_name%3DMais+de+40%25+OFF%26applied_value_order%3D7%26applied_value_results%3D1055%26is_custom%3Dfalse","results":"(1.055)"}],"fragment":"applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D8%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"5-100","name":"Mais de 5% OFF","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_Discount_5-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D5-100%26applied_value_name%3DMais+de+5%25+OFF%26applied_value_order%3D1%26applied_value_results%3D116183%26is_custom%3Dfalse","results":"(116.183)"},{"id":"10-100","name":"Mais de 10% OFF","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_Discount_10-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D10-100%26applied_value_name%3DMais+de+10%25+OFF%26applied_value_order%3D2%26applied_value_results%3D109675%26is_custom%3Dfalse","results":"(109.675)"},{"id":"15-100","name":"Mais de 15% OFF","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_Discount_15-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D15-100%26applied_value_name%3DMais+de+15%25+OFF%26applied_value_order%3D3%26applied_value_results%3D20404%26is_custom%3Dfalse","results":"(20.404)"},{"id":"20-100","name":"Mais de 20% OFF","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_Discount_20-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D20-100%26applied_value_name%3DMais+de+20%25+OFF%26applied_value_order%3D4%26applied_value_results%3D13016%26is_custom%3Dfalse","results":"(13.016)"},{"id":"25-100","name":"Mais de 25% OFF","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_Discount_25-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D25-100%26applied_value_name%3DMais+de+25%25+OFF%26applied_value_order%3D5%26applied_value_results%3D6420%26is_custom%3Dfalse","results":"(6.420)"},{"id":"30-100","name":"Mais de 30% OFF","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_Discount_30-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D30-100%26applied_value_name%3DMais+de+30%25+OFF%26applied_value_order%3D6%26applied_value_results%3D2902%26is_custom%3Dfalse","results":"(2.902)"},{"id":"40-100","name":"Mais de 40% OFF","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_Discount_40-100_NoIndex_True#applied_filter_id%3Ddiscount%26applied_filter_name%3DDescontos%26applied_filter_order%3D20%26applied_value_id%3D40-100%26applied_value_name%3DMais+de+40%25+OFF%26applied_value_order%3D7%26applied_value_results%3D1055%26is_custom%3Dfalse","results":"(1.055)"}],"show_modal":false},{"id":"promotion_type","name":"Tipo de promoção","type":"text","values":[{"id":"deal_of_the_day","name":"Oferta do dia","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_promotion*type_deal*of*the*day#applied_filter_id%3Dpromotion_type%26applied_filter_name%3DTipo+de+promo%C3%A7%C3%A3o%26applied_filter_order%3D21%26applied_value_id%3Ddeal_of_the_day%26applied_value_name%3DOferta+do+dia%26applied_value_order%3D1%26applied_value_results%3D1055%26is_custom%3Dfalse","results":"(1.055)"}],"fragment":"applied_filter_id%3Dpromotion_type%26applied_filter_name%3DTipo+de+promo%C3%A7%C3%A3o%26applied_filter_order%3D21%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D2%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"deal_of_the_day","name":"Oferta do dia","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_NoIndex_True_promotion*type_deal*of*the*day#applied_filter_id%3Dpromotion_type%26applied_filter_name%3DTipo+de+promo%C3%A7%C3%A3o%26applied_filter_order%3D21%26applied_value_id%3Ddeal_of_the_day%26applied_value_name%3DOferta+do+dia%26applied_value_order%3D1%26applied_value_results%3D1055%26is_custom%3Dfalse","results":"(1.055)"}],"show_modal":false},{"id":"group_1","name":"Outras características","type":"group","values":[{"id":"242085","name":"É gamer","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_IS*GAMER_242085_NoIndex_True#applied_filter_id%3DIS_GAMER%26applied_filter_name%3DOutras+caracter%C3%ADsticas%26applied_filter_order%3D21%26applied_value_id%3D242085%26applied_value_name%3D%C3%89+gamer%26applied_value_order%3D0%26applied_value_results%3D160687%26is_custom%3Dfalse","results":"(160.687)"}],"fragment":"applied_filter_id%3Dgroup_1%26applied_filter_name%3DOutras+caracter%C3%ADsticas%26applied_filter_order%3D22%26applied_value_id%3DUNKNOWN_VALUE_ID%26applied_value_name%3DUNKNOWN_APPLIED_VALUE_ID%26applied_value_order%3D2%26applied_value_results%3DUNKNOWN_RESULTS%26is_custom%3Dtrue","expanded_values":[{"id":"242085","name":"É gamer","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_IS*GAMER_242085_NoIndex_True#applied_filter_id%3DIS_GAMER%26applied_filter_name%3DOutras+caracter%C3%ADsticas%26applied_filter_order%3D21%26applied_value_id%3D242085%26applied_value_name%3D%C3%89+gamer%26applied_value_order%3D0%26applied_value_results%3D160687%26is_custom%3Dfalse","results":"(160.687)"}],"show_modal":false},{"id":"publication_details","name":"Detalhes do anúncio","type":"text","values":[{"id":"power_seller_yes","name":"Melhores vendedores","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BestSellers_YES_NoIndex_True#applied_filter_id%3Dpower_seller%26applied_filter_name%3DFiltro+MercadoL%C3%ADderes%26applied_filter_order%3D23%26applied_value_id%3Dyes%26applied_value_name%3DMelhores+vendedores%26applied_value_order%3D1%26applied_value_results%3D458578%26is_custom%3Dfalse","results":"(458.578)"}],"expanded_values":[{"id":"power_seller_yes","name":"Melhores vendedores","url":"https:\u002F\u002Finformatica.mercadolivre.com.br\u002Fcomputador_BestSellers_YES_NoIndex_True#applied_filter_id%3Dpower_seller%26applied_filter_name%3DFiltro+MercadoL%C3%ADderes%26applied_filter_order%3D23%26applied_value_id%3Dyes%26applied_value_name%3DMelhores+vendedores%26applied_value_order%3D1%26applied_value_results%3D458578%26is_custom%3Dfalse","results":"(458.578)"}],"show_modal":false},{"id":"related_searches","name":"Outras pessoas pesquisaram","type":"text","values":[{"id":"related_search_0","name":"i3 9100f","url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fi3-9100f#D[R:computador,P:1,Q:5]"},{"id":"related_search_1","name":"king koil triathlon queen","url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fking-koil-triathlon-queen#D[R:computador,P:2,Q:5]"},{"id":"related_search_2","name":"celular samsung a11","url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fcelular-samsung-a11#D[R:computador,P:3,Q:5]"},{"id":"related_search_3","name":"computador wi fi","url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fcomputador-wi-fi#D[R:computador,P:4,Q:5]"},{"id":"related_search_4","name":"computadores novos","url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fcomputadores-novos#D[R:computador,P:5,Q:5]"}],"expanded_values":[{"id":"related_search_0","name":"i3 9100f","url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fi3-9100f#D[R:computador,P:1,Q:5]"},{"id":"related_search_1","name":"king koil triathlon queen","url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fking-koil-triathlon-queen#D[R:computador,P:2,Q:5]"},{"id":"related_search_2","name":"celular samsung a11","url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fcelular-samsung-a11#D[R:computador,P:3,Q:5]"},{"id":"related_search_3","name":"computador wi fi","url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fcomputador-wi-fi#D[R:computador,P:4,Q:5]"},{"id":"related_search_4","name":"computadores novos","url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fcomputadores-novos#D[R:computador,P:5,Q:5]"}],"show_modal":false}],"labels":{"filter":"Filtrar","filter_by":"Filtrar por","apply":"Aplicar","clean":"Limpar","to":"Até","from":"A partir de","number_separator":".","range_separator":"a","range_title":"Define tu propio rango","minimum":"Mínimo","maximum":"Máximo","range_names":{"only_to":"Até $to","only_from":"A partir de $from"},"continue":"Continuar"}},{"type":"SIDEBAR_SKY_BANNER","slot_id":"Sky","title":"Publicidade","viewport_margin":500,"google_ad":{"unit":"\u002F105773011\u002FMLB1648\u002FMLB430637\u002FMLB1649","size":"fluid","ppid":"","enabled":true},"personal_data_ads_denied":false,"segmentation":{"Posiciones":"Sky","platform":"desktop"},"tracks":{"melidata_track":{"path":"\u002Fsearch\u002Fadvertising\u002F","event_data":{"advertising_id":"sky"}}}},{"id":"SEARCH_SHOPS_ADS","type":"SEARCH_SHOPS_ADS","ads_to_show":4,"request":{"params":{"RECOMMENDED.cnt":25,"item_id":"MLB1983288877","platform":"desktop","q":"computador","category_id":"MLB1648","d2_id":"53fd1b14-787c-48cc-b716-ab5e9a1aa7b5","site_id":"MLB","limit":50,"RECOMMENDED.force_categories":"MLB1648","client":"search-pads-left-shops","min_recomms":4,"page":"SEARCHDESKTOP","position":"SEARCH-SHOPS-LEFT"}}}]},"vertical":"CORE","bottom_ads":{"state":"VISIBLE","ads_to_show":4,"subtitle":{"text":"Anuncie aqui","url":"https:\u002F\u002Fads.mercadolivre.com.br\u002FproductAds"},"request":{"params":{"RECOMMENDED.cnt":4,"productId":"MLB16263913","item_id":"MLB1930876153","platform":"desktop","q":"computador","category_id":"MLB1648","d2_id":"53fd1b14-787c-48cc-b716-ab5e9a1aa7b5","site_id":"MLB","limit":50,"RECOMMENDED.force_categories":"MLB1648","client":"search-pads-btm","min_recomms":4,"page":"SEARCHDESKTOP","position":"BTM","machi_boost":true}}},"top_keywords":{"title":"Buscas relacionadas","keywords":[{"label":"intel core i5 8 geracao","url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fintel-core-i5-8-geraçao#topkeyword"},{"label":"montar pc pichau","url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fmontar-pc-pichau#topkeyword"},{"label":"hackintosh","url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fhackintosh#topkeyword"},{"label":"impressora portatil a4","url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fimpressora-portatil-a4#topkeyword"},{"label":"notebook com impressora","url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fnotebook-com-impressora#topkeyword"},{"label":"tablet windows","url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Ftablet-windows#topkeyword"},{"label":"computador barato","url":"https:\u002F\u002Flista.mercadolivre.com.br\u002Fcomputador-barato#topkeyword"}]},"find_user_location":false,"valuePropositionsDetailsHidden":false,"userConsentCookie":true},"queryParams":{},"domain":"mercadolivre.com.br","csrfToken":"wEDqGcxQ-VGtxRysyOy8sTix6nZ5WB7An_y8","mapApiKey":"AIzaSyBKpigzeKC4SICrIn0Z-3xIR8iQl3yvYUI","hotjar":{"id":952199,"tags":["search_nordic"],"triggers":["search_nordic"]}};
}},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/polyfill.018945a7.js"},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/search.desktop.fb84d67b.js"},{s:function(){
var trackMclics = document.createElement('img');
trackMclics.src = 'https://print1.mercadoclics.com/mclics/v2/prints/external/MLB/count?d=bxNegmX9gRGVHJ3%2FYE09yGspOc5dPiXU8ggWnR2OE38Afdi6Ij7FylH6CHLxeIuj5aoo4hbfqkRKAJNObM7EgxixAfNJ59lH5hjkYJ3Uqhw%2FMYuz%2BVpmbst99wSifx9GmaY3Tfm%2Fv8WIrF%2BAbs6SMuE21NE2tqtyaKoLaBPtAxzPTwv69FBbVT1uTaRDhp2DH6Z4DoHpY6oJmauoFghJasjF7P1othaHFQPYMMD8ZtON27KYWvkpS2M8KivQHuy51EErS%2BquWYcDugczfyveQED2p%2FdZ08zlp8EMPj5MzrAdcTZ7N%2Fu54u4%2FBiV68d3GzGMaK5dCTDVHXfzNcEm1bMwfIrBFED%2Bar623YCNgkdTHu2f%2Bhgf6n9cWMuuHlVCnKWS%2FUl3F6pi7ginfeY6w%2FgyKwYAtK0quRPOoAi28OYzsoNpgwOaHJLfKtvyS%2BO8800RzKYd%2FWW90QX6lju8UKzaE6Davr1p9j2gjHsC%2Bb4oHGYu77Fw8kqGOzJRKsmER56%2F6ijVzCNyxsphmjHCsQPHWN8EdGVwnBAejWRwZ1qYxJHITyQ%3D%3D&rb=x';
}},{s:function(){
var mktconfig = {
'selector' : 'searchResults',
'results': 'MLB1983288877,MLB1930876153,MLB1937079157,MLB1607748387,MLB1983278713',
'categories': 'MLB1649,MLB1652,MLB1649,MLB1649,MLB1649',
'siteId' : 'MLB',
'd2id': '',
'query': 'computador',
'platform' : 'STD'
}
var Search = Search || {};
;(function (Search, win, doc) {
function MarketingTags(options) {
this.platform = options.platform || '';
this.siteId = options.siteId || '';
this.items = options.results || [];
this.categories = options.categories || [];
this.d2id = options.d2id;
this.query = options.query;
if (!this.items || !this.platform || !this.siteId || !this.categories) { throw new Error('MarketingTags: error in incoming params')}
this.init();
return this;
};
MarketingTags.prototype.init = function () {
var data = {}, categoriesIds = [];
if (this.items) {
data.items = this.items;
categoriesIds = this.unique(this.categories);
if(categoriesIds.length == 1){
data.categoryId = categoriesIds
}
if (this.d2id) {
data.d2id = this.d2id
}
if (this.query) {
data.query = this.query;
}
this.start(data);
this.createIframe();
}
};
MarketingTags.prototype.createIframe = function () {
var iframe = doc.createElement("iframe"),
scriptTag = doc.getElementsByTagName('script')[0],
elem = iframe.frameElement || iframe;
elem.style.width = 0;
elem.style.height = 0;
elem.style.border = 0;
elem.style.position = 'absolute';
iframe.src = this.url;
scriptTag.parentNode.insertBefore(iframe, scriptTag);
};
MarketingTags.prototype.start = function (data) {
var millisecondsInMinute = 60000
var minuteInPartition = 60 * 5
var currentMilliseconds = new Date().getTime()
var currentSeconds = parseInt(currentMilliseconds / millisecondsInMinute)
var timeHash = parseInt(currentSeconds/minuteInPartition)*minuteInPartition
this.url = "https://http2.mlstatic.com/storage/tag-manager/" + this.siteId + ".html?timehash="+ timeHash +"&platform=" + this.platform + "#" + JSON.stringify(data);
};
MarketingTags.prototype.unique = function(array){
var tmp = {},
out = [];
for(var i = 0, n = array.length; i < n; ++i){
if(!tmp[array[i]]) { tmp[array[i]] = true; out.push(array[i]); }
}
return out;
}
Search.MarketingTags = MarketingTags;
})(Search, window, document);
new Search.MarketingTags(mktconfig);
}},{s:function(){
(function(h,o,t,j,a,r){
h.hj= h.hj || function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:952199,hjdebug:false,hjsv:5};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'//static.hotjar.com/c/hotjar-','.js?sv=');
hj('tagRecording', ["search_nordic","user_type: normal"]);
hj('trigger', 'search_nordic');
}},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/framework.665793e8.js"},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/lib-428dfce9.4c4298ea.js"},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/lib-47e0d0a8.1fd3bffe.js"},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/8295.562b3103.js"},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/6188.331e9a36.js"},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/9098.c88634f8.js"},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/3436.7e0230fb.js"},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/8887.b518fd91.js"},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/chunk-header-exhibitor.a36d251b.js"},{s:"https://http2.mlstatic.com/frontend-assets/search-nordic/chunk-listing-disclaimer.0220d27a.js"}];
if (doc.readyState === 'complete') {
loadScripts(scripts);
} else {
win.addEventListener('load', function(){ loadScripts(scripts); });
}
})(window, document);</script></body></html>
# //h2[@class='ui-search-item__title ui-search-item__group__element']
titulos = soup.find_all('h2', attrs={'class':'ui-search-item__title ui-search-item__group__element'})
titulos = [i.text for i in titulos]
# //li[@class='ui-search-layout__item']//div[@class='ui-search-result__wrapper']//
# div[@class='ui-search-result__content-wrapper']//
# div[@class='ui-search-item__group ui-search-item__group--price']//
# div[@class='ui-search-item__group__element ui-search-price__part-without-link']//
# div[@class='ui-search-price__second-line']//
# span[@class='price-tag-amount']//span[@class='price-tag-fraction']
path = etree.HTML(str(soup))
precios = path.xpath("//li[@class='ui-search-layout__item']//div[@class='ui-search-result__wrapper']//div[@class='ui-search-result__content-wrapper']//div[@class='ui-search-item__group ui-search-item__group--price']//div[@class='ui-search-item__group__element ui-search-price__part-without-link']//div[@class='ui-search-price__second-line']//span[@class='price-tag-amount']//span[@class='price-tag-fraction']")
precos = [i.text for i in precios]
df = pd.DataFrame(zip(titulos, precos), columns=['Produto','Preço'])
df['Preço'] = df['Preço'].replace({r'[\.]':''}, regex=True).astype(np.int32)
df.head()
| Produto | Preço | |
|---|---|---|
| 0 | Computador Completo Fácil Intel Core I5 08gb D... | 1830 |
| 1 | Notebook Multilaser Legacy Book PC310 preta 14... | 1199 |
| 2 | Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb... | 1231 |
| 3 | Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8... | 1446 |
| 4 | Computador Fácil Intel Core I3 4gb Ssd 120gb | 852 |
# Pegando todas as páginas disponíveis
# //div[@class='ui-search-pagination']//ul//li[contains(@class, '--next')]/a
# path.xpath(" ")[0].get('href')
seguinte = path.xpath("//div[@class='ui-search-pagination']//ul//li[contains(@class, '--next')]/a")[0].get('href')
print(seguinte)
https://informatica.mercadolivre.com.br/computador_Desde_49_NoIndex_True
inicial = soup.find('span',attrs={'class':'andes-pagination__link'}).text
inicial = int(inicial)
print(inicial)
1
ultimo = soup.find('li', attrs={'class': 'andes-pagination__page-count'})
ultimo = int(ultimo.text[-2:])
print(ultimo)
42
import pandas as pd
import numpy as np
import requests
from bs4 import BeautifulSoup
from lxml import etree
seguinte = 'https://lista.mercadolivre.com.br/computador'
lista_titulos = []
lista_precos = []
while True:
r = requests.get(seguinte)
if(r.status_code==200):
soup = BeautifulSoup(r.content,'html.parser')
# Titulos dos produtos
# 'class':'ui-search-item__title ui-search-item__group__element'
titulos = soup.find_all('h2', attrs={'class':'ui-search-item__title ui-search-item__group__element'})
titulos = [i.text for i in titulos]
lista_titulos.extend(titulos)
# Lista preços
path = etree.HTML(str(soup))
# //li[@class='ui-search-layout__item']//
# div[@class='ui-search-result__wrapper']//
# div[@class='ui-search-result__content-wrapper']//
# div[@class='ui-search-item__group ui-search-item__group--price']//
# div[@class='ui-search-item__group__element ui-search-price__part-without-link']//
# div[@class='ui-search-price__second-line']//span[@class='price-tag-amount']//
# span[@class='price-tag-fraction']
precios = path.xpath("//li[@class='ui-search-layout__item']//div[@class='ui-search-result__wrapper']//div[@class='ui-search-result__content-wrapper']//div[@class='ui-search-item__group ui-search-item__group--price']//div[@class='ui-search-item__group__element ui-search-price__part-without-link']//div[@class='ui-search-price__second-line']//span[@class='price-tag-amount']//span[@class='price-tag-fraction']")
precos = [i.text for i in precios]
lista_precos.extend(precos)
# Continua...
# ... Continua
# Validando o número da página
inicial = soup.find('span',attrs={'class':'andes-pagination__link'}).text
inicial = int(inicial)
ultimo = soup.find('li', attrs={'class': 'andes-pagination__page-count'})
ultimo = int(ultimo.text[-2:])
else:
break
print(inicial, ultimo)
if inicial == ultimo:
break
# //div[@class='ui-search-pagination']/ul/li[contains(@class, '--next')]/a"
# path.xpath(" ")[0].get('href')
seguinte = path.xpath("//div[@class='ui-search-pagination']/ul/li[contains(@class, '--next')]/a")[0].get('href')
print(len(lista_titulos))
print(len(lista_precos))
2142 2142
df = pd.DataFrame({'Produto': lista_titulos, 'Preços': lista_precos})
df['Preços'] = df['Preços'].replace({r'[\.]':''}, regex=True).astype(np.int32)
df
| Produto | Preços | |
|---|---|---|
| 0 | Cpu + Monitor Dell Optiplex 3050 Core I5 7ger ... | 4099 |
| 1 | Pc Fácil Intel Pentium G6400 10ª Geração 8gb D... | 1539 |
| 2 | Pc Computador Cpu Core I5 650 + Ssd 240gb, 8gb... | 1231 |
| 3 | Notebook Multilaser Legacy Book PC250 preta 14... | 1281 |
| 4 | Pc Computador Cpu Intel Core I5 + Ssd 240gb, 8... | 1446 |
| ... | ... | ... |
| 2137 | Memória RAM Ballistix color branco 8GB 1 Cruc... | 399 |
| 2138 | Monitor Acer KA242Y LCD 23.8 " preto 100V/240V | 1420 |
| 2139 | Monitor Philips B 242B9T LCD 23.8 " preto 100V... | 2795 |
| 2140 | Teclado gamer Redragon Harpe K503 QWERTY portu... | 183 |
| 2141 | Teclado Computador Hp Com Fio Abnt Ç Slim Usb ... | 50 |
2142 rows × 2 columns
csv, com as informações relativas aos laptops disponíveis no sitewebscraper.io. No arquivo, os usuários devem encontrar as informações referentes ao produto: Nome, descrição, link do produto, avaliações, número de reviews e os preçõs;